Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

i18n: Rename .po files to match Launchpad conventions

Changeset b012c6819dd0

Parent 0b7eadeb40e7

by Peer Sommerlund

Changes to 16 files · Browse files at b012c6819dd0 Showing diff from parent 0b7eadeb40e7 Diff from another changeset...

Show Entire File i18n/​tortoisehg/​ca.po Stacked
renamed from i18n/tortoisehg-ca.po
(No changes)
Show Entire File i18n/​tortoisehg/​cs.po Stacked
renamed from i18n/tortoisehg-cs.po
(No changes)
Show Entire File i18n/​tortoisehg/​da.po Stacked
renamed from i18n/tortoisehg-da.po
(No changes)
Show Entire File i18n/​tortoisehg/​de.po Stacked
renamed from i18n/tortoisehg-de.po
(No changes)
Show Entire File i18n/​tortoisehg/​es.po Stacked
renamed from i18n/tortoisehg-es.po
(No changes)
Show Entire File i18n/​tortoisehg/​fr.po Stacked
renamed from i18n/tortoisehg-fr.po
(No changes)
Show Entire File i18n/​tortoisehg/​it.po Stacked
renamed from i18n/tortoisehg-it.po
(No changes)
Show Entire File i18n/​tortoisehg/​ja.po Stacked
renamed from i18n/tortoisehg-ja.po
(No changes)
Show Entire File i18n/​tortoisehg/​nl.po Stacked
renamed from i18n/tortoisehg-nl.po
(No changes)
Show Entire File i18n/​tortoisehg/​pl.po Stacked
renamed from i18n/tortoisehg-pl.po
(No changes)
Show Entire File i18n/​tortoisehg/​pt.po Stacked
renamed from i18n/tortoisehg-pt.po
(No changes)
Show Entire File i18n/​tortoisehg/​pt_BR.po Stacked
renamed from i18n/tortoisehg-pt_BR.po
(No changes)
Show Entire File i18n/​tortoisehg/​ru.po Stacked
renamed from i18n/tortoisehg-ru.po
(No changes)
Show Entire File i18n/​tortoisehg/​zh_CN.po Stacked
renamed from i18n/tortoisehg-zh_CN.po
(No changes)
Show Entire File i18n/​tortoisehg/​zh_TW.po Stacked
renamed from i18n/tortoisehg-zh_TW.po
(No changes)
Change 1 of 2 Show Entire File setup.py Stacked
 
25
26
27
28
 
29
30
31
 
34
35
36
37
38
39
40
41
 
42
43
44
 
25
26
27
 
28
29
30
31
 
34
35
36
 
 
 
37
 
38
39
40
41
@@ -25,7 +25,7 @@
  "will be built")   return   - podir = 'i18n' + podir = 'i18n/tortoisehg'   if not os.path.isdir(podir):   self.warn("could not find %s/ directory" % podir)   return @@ -34,11 +34,8 @@
  for po in os.listdir(podir):   if not po.endswith('.po'):   continue - if not (po.find('tortoisehg-') == 0): - self.warn("Found file '%s' that was not tortoisehg .po" % po) - continue   pofile = join(podir, po) - modir = join('locale', po[11:-3], 'LC_MESSAGES') + modir = join('locale', po[:-3], 'LC_MESSAGES')   mofile = join(modir, 'tortoisehg.mo')   cmd = ['msgfmt', '-v', '-o', mofile, pofile]   if sys.platform != 'sunos5':