User forums > Using Code::Blocks

Code::Blocks IDE translation to German language

<< < (3/4) > >>

gd_on:
Here it is ...
I have also updated the template on launchpad, updated the french translation.
I had globally approved your own work on spanish language before my update, so there will be probably also some new work for you Miguel. ;D
Nevertheless, the effect of my updates are not immediately applied on launchpad. Need some time (1 hour or 1 day, it depends ...)

gd_on

Miguel Gimenez:
Thank you for the file.

I do not have experience with Launchpad. The way I am doing the translation is:
  - downloaded the spanish PO
  - update it with your POT from r13000
  - translate
  - upload the PO to Launchpad
  - update my local PO with the r13003 POT
10:
  - translate
  - upload
  goto 10

Is this OK?

gd_on:
It should be.
Normally, after my own update of the template on launchpad, there are two ways to work :

* you can directly translate on launchpad ;
* you can download the .po from launchpad. It contains normally all the chains from the last updated template (here 13003). Then you work on it locally, with poedit for example. When it's OK, you upload the modified .po file on launchpad. You can then approve your own work (I think) or wait for me to approve it.I prefer the second solution, because working directly on launchpad is quite tedious (but it works well !), especially if you have a lot of translations to update.
Sometimes, on launchpad, you have to review one by one your own translations, particularly when some conflicts are detected by launchpad or some double translations (if somebody else has worked on the translation). Then you have to review them and choose the best one. Of course, such a job must be done by someone who knows well the translation language, not me. :-[

gd_on

Miguel Gimenez:
Do your batch files extract translatable strings from scripts (like wizard.script)?

If yes, would they accept something like this?

--- Code: ---local intro_msg = _("Welcome to the wxWidgets project wizard!\n\n" +
                               "This wizard will guide you to create a new project using\n" +
                               "the wxWidgets cross-platform GUI library.\n\n" +
                               "When you 're ready to proceed, please click \"Next\"...");

--- End code ---
(note the plus sign).

gd_on:
It does not work like that, if the string is split in several parts (with +). But it works if the whole string is on one line like that :

--- Code: ---local intro_msg = _("Welcome to the wxWidgets project wizard!\n\nThis wizard will guide you to create a new project using\nthe wxWidgets cross-platform GUI library.\n\nWhen you 're ready to proceed, please click \"Next\"...");

--- End code ---
You can also split into 2 full sentences (or 3) :

--- Code: ---local intro_msg1 = _("Welcome to the wxWidgets project wizard!\n\nThis wizard will guide you to create a new project using\nthe wxWidgets cross-platform GUI library.\n\n");
local intro_msg2 = _("When you 're ready to proceed, please click \"Next\"...");

--- End code ---

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version