Dear colleagues,
I have prepared the Armenian translation in the form of the excel spreadsheet, but I have doubts about its completeness, because different languages have different number of words translated.
I would kindly ask you to send me the full list of English words to prepare a full version of the Armenian translation and upgrade of the Russian translation.
The current version of the translation is attached to the message.
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
Armenian translation
-
- Posts: 3
- Joined: Thu Apr 30, 2020 9:34 am
- Location: Armenia, Yerevan
Armenian translation
You do not have the required permissions to view the files attached to this post.
Artashes
-
- nuBuilder Team
- Posts: 4307
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 448 times
- Contact:
Re: Armenian translation
Hi,
Thanks for your translation. It's pretty much complete. I added a few missing ones. Could you complete the translations and upload it again?
Thanks for your translation. It's pretty much complete. I added a few missing ones. Could you complete the translations and upload it again?
You do not have the required permissions to view the files attached to this post.
-
- Posts: 3
- Joined: Thu Apr 30, 2020 9:34 am
- Location: Armenia, Yerevan
Re: Armenian translation
Hi,kev1n wrote:Could you complete the translations and upload it again?
I have completed the translation. Rows with repeated terms are colored by "light red".
This is not a final version. Final version of translation will be done after making changes in the nuBuilder initial database.
You do not have the required permissions to view the files attached to this post.
Artashes
-
- nuBuilder Team
- Posts: 4307
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 448 times
- Contact:
Re: Armenian translation
I crossed out a few rows. These were either duplicates or misspelled.
You can delete those rows.
You can delete those rows.
You do not have the required permissions to view the files attached to this post.
-
- Posts: 3
- Joined: Thu Apr 30, 2020 9:34 am
- Location: Armenia, Yerevan
Re: Armenian translation
Thank you, I deleted the extra lines. When will the changes get into GitHub?kev1n wrote:You can delete those rows.
You do not have the required permissions to view the files attached to this post.
Artashes
-
- nuBuilder Team
- Posts: 4307
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 448 times
- Contact:
Re: Armenian translation
Attached is the sql file that you can import into your nuBuilder database:
Run this DELETE statement first to remove the existing translations:
If you added custom translations, you can use this DELETE statement. This will not delete your own translations:
Run this DELETE statement first to remove the existing translations:
Code: Select all
DELETE FROM `zzzzsys_translate` WHERE `trl_language` in ('German','Russian','Armenian');
If you added custom translations, you can use this DELETE statement. This will not delete your own translations:
Code: Select all
DELETE FROM `zzzzsys_translate` WHERE `trl_language` in ('German','Russian','Armenian') AND `zzzzsys_translate_id` like 'nu%'
You do not have the required permissions to view the files attached to this post.
-
- nuBuilder Team
- Posts: 4307
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 448 times
- Contact:
Re: Armenian translation
Thanks Steven! However, there are now duplicates. The previous translations must be removed prior to adding the new ones (see above)
And the Czech language is missing the nu-prefix:
https://github.com/steven-copley/nubuil ... .sql#L3452
Could you add it?
And the Czech language is missing the nu-prefix:
https://github.com/steven-copley/nubuil ... .sql#L3452
Could you add it?
Code: Select all
UPDATE `zzzzsys_translate` SET `zzzzsys_translate_id` = CONCAT('nu', `zzzzsys_translate_id`) WHERE `trl_language` = 'Czech'