Page 1 of 1

Armenian translation

Posted: Wed May 13, 2020 12:29 pm
by Artashes
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.

Re: Armenian translation

Posted: Wed May 13, 2020 1:40 pm
by kev1n
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?

Re: Armenian translation

Posted: Thu May 14, 2020 8:08 pm
by Artashes
kev1n wrote:Could you complete the translations and upload it again?
Hi,

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.

Re: Armenian translation

Posted: Fri May 15, 2020 7:25 am
by kev1n
I crossed out a few rows. These were either duplicates or misspelled.
You can delete those rows.

Re: Armenian translation

Posted: Sun May 17, 2020 11:26 am
by Artashes
kev1n wrote:You can delete those rows.
Thank you, I deleted the extra lines. When will the changes get into GitHub?

Re: Armenian translation

Posted: Sun May 17, 2020 12:59 pm
by kev1n
Attached is the sql file that you can import into your nuBuilder database:

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%'

Re: Armenian translation

Posted: Tue May 19, 2020 2:11 am
by admin
kev1n,

I have now added these three.

Please test it.


Steven

Re: Armenian translation

Posted: Tue May 19, 2020 6:07 am
by kev1n
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?

Code: Select all

UPDATE `zzzzsys_translate` SET `zzzzsys_translate_id` = CONCAT('nu', `zzzzsys_translate_id`) WHERE `trl_language` = 'Czech'

Re: Armenian translation

Posted: Wed May 20, 2020 10:47 pm
by admin
kev1n,

translations should be fixed now.


Steven