Skip to content

Commit 9cf70e1

Browse files
l10n: Improved and fixed grammar (#78)
* l10n: Fixed grammar Reported at Transifex. Signed-off-by: rakekniven <[email protected]> * l10n: Fixed grammar Reported at Transifex. Signed-off-by: rakekniven <[email protected]> * Update strings in initial data array --------- Signed-off-by: rakekniven <[email protected]> Co-authored-by: Andrey Borysenko <[email protected]>
1 parent b02f4fa commit 9cf70e1

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

appinfo/info.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88
<![CDATA[
99
Nextcloud Python API Framework
1010
11-
| **Currently in development, all is in a design state**
11+
| **Currently in development, all is under design**
1212
13-
### Provides Convenient Functions for Python
13+
### Provides convenient functions for Python
1414
15-
- Read & Write File System objects
16-
- Working with Database
15+
- Read & write file system objects
16+
- Working with database
1717
- Wrapper around `OCC` calls
18-
- Calling your python function from php part of app and return a result
18+
- Calling your python function from php part of your app and return a result
1919
20-
### Used by apps
20+
### Used by the following apps
2121
2222
- [MediaDC](https://apps.nextcloud.com/apps/mediadc) - Nextcloud Media Duplicate Collector app
2323
@@ -26,8 +26,8 @@ Nextcloud Python API Framework
2626
You can support us in several ways:
2727
2828
- ⭐ Star our work (it really motivates)
29-
- ❗ Create an Issue or feature request (bring to us an excellent idea)
30-
- 💁 Resolve some Issue or create a Pull Request (contribute to this project)
29+
- ❗ Create an issue or feature request (bring to us an excellent idea)
30+
- 💁 Resolve some issues or create a pull request (contribute to this project)
3131
- 🪙 Donate with any amount with one of the links below (fund this project)
3232
3333
[![PayPal](https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif)](https://www.paypal.com/donate?hosted_button_id=H5PLJJMWLDNJQ)

lib/Migration/data/AppInitialData.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class AppInitialData {
5050
"value" => 536870912,
5151
"displayName" => "Remote/Encrypted file size limit to process",
5252
"title" => "",
53-
"description" => "Maximum file size (in GBytes) for requesting from php core. Used when file hosts on remote NC instance or have encrypted flag. Must be less then total available RAM size.",
53+
"description" => "Maximum file size (in GBytes) for requesting from php core. Used when file is hosted on remote NC instance or have encrypted flag. Must be less than total available RAM size.",
5454
"helpUrl" => "https://cloud-py-api.readthedocs.io/{todo-url:/settings/setting_name}"
5555
],
5656
[
@@ -72,8 +72,8 @@ class AppInitialData {
7272
[
7373
"name" => "cpa_loglevel",
7474
"value" => "WARNING",
75-
"displayName" => "Framework loglevel",
76-
"description" => "Used by apps, that using this Framework",
75+
"displayName" => "Framework log level",
76+
"description" => "Used by apps, that are using this framework",
7777
"title" => "",
7878
"helpUrl" => "https://cloud-py-api.readthedocs.io/{todo-url:/settings/setting_name}"
7979
],
@@ -89,14 +89,14 @@ private function _stringsForL10N(): void {
8989
$this->l10n->t("Full path to python interpreter");
9090
$this->l10n->t("Absolute path to the python runnable (e.g. \"/usr/bin/python3\"). Can be obtained by `which python3` command. Used when pre-compiled binaries option is not selected.");
9191
$this->l10n->t("Remote/Encrypted file size limit to process");
92-
$this->l10n->t("Maximum file size (in GBytes) for requesting from php core. Used when file hosts on remote NC instance or have encrypted flag. Must be less then total available RAM size.");
92+
$this->l10n->t("Maximum file size (in GBytes) for requesting from php core. Used when file is hosted on remote NC instance or have encrypted flag. Must be less than total available RAM size.");
9393
$this->l10n->t("Use path to PHP interpreter for Python from settings");
9494
$this->l10n->t("Determine whether to use path from settings or detect it automatically (may not work with some unusual PHP install locations). Used in Python part.");
9595
$this->l10n->t("Full path to PHP interpreter for Python");
9696
$this->l10n->t("Absolute path to the PHP executable (e.g. \"/usr/bin/php7.4\"). Can be obtained by `which php` or `which php7.4` command");
9797
$this->l10n->t("Use pre-compiled Python binaries");
9898
$this->l10n->t("Use Python part in binary format (located in the appdata folder)");
99-
$this->l10n->t("Framework loglevel");
100-
$this->l10n->t("Used by apps, that using this Framework");
99+
$this->l10n->t("Framework log level");
100+
$this->l10n->t("Used by apps, that are using this framework");
101101
}
102102
}

0 commit comments

Comments
 (0)