added a translator comment explaining how to handle ordinal numbers if the

2009-03-09  Cosimo Cecchi  <cosimoc@pluto>

	* libnautilus-private/nautilus-file-operations.c: added a translator
	comment explaining how to handle ordinal numbers if the language
	doesn't distinguish plural forms like 1st, 2nd, 3rd, xth (#325284).

svn path=/trunk/; revision=15071
This commit is contained in:
Cosimo Cecchi 2009-03-09 10:32:56 +00:00 committed by Cosimo Cecchi
parent 72a49ea8cc
commit d6c674f9e7
2 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2009-03-09 Cosimo Cecchi <cosimoc@pluto>
* libnautilus-private/nautilus-file-operations.c: added a translator
comment explaining how to handle ordinal numbers if the language
doesn't distinguish plural forms like 1st, 2nd, 3rd, xth (#325284).
2009-03-08 Sven Herzberg <herzi@lanedo.com>
Bug 574546 Document nautilus_property_page_provider_get_pages()

View file

@ -485,6 +485,11 @@ static const char untranslated_x12th_copy_duplicate_format[] = N_("%s (%'dth cop
/* localizers: appended to x13th file copy */
static const char untranslated_x13th_copy_duplicate_format[] = N_("%s (%'dth copy)%s");
/* localizers: if in your language there's no difference between 1st, 2nd, 3rd and nth
* plurals, you can leave the st, nd, rd suffixes out and just make all the translated
* strings look like "%s (copy %'d)%s".
*/
/* localizers: appended to x1st file copy */
static const char untranslated_st_copy_duplicate_format[] = N_("%s (%'dst copy)%s");
/* localizers: appended to x2nd file copy */