ChangeLog 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794
  1. 2008-11-18 Guillem Jover <guillem@debian.org>
  2. * es.po: Merged with dpkg.pot.
  3. * fr.po: Likewise.
  4. * sv.po: Likewise.
  5. 2008-11-18 Guillem Jover <guillem@debian.org>
  6. * es.po: Change charset to UTF-8 to match reality.
  7. 2008-11-18 Miguel Figueiredo <elmig@debianpt.org>
  8. * pt.po: Updated to 986t.
  9. 2008-11-18 Ivan Masár <helix84@centrum.sk>
  10. * sk.po: Updated to 986t.
  11. 2008-11-17 Miroslav Kure <kurem@debian.cz>
  12. * cs.po: Updated to 986t.
  13. 2008-11-17 Felipe Augusto van de Wiel <faw@debian.org>
  14. * pt_BR.po: Updated to 986t.
  15. 2008-11-17 Hans Fredrik Nordhaug <hans@nordhaug.priv.no>
  16. * nb.po: Updated to 986t.
  17. 2008-11-16 Javier Fernández-Sanguino Peña <jfs@computer.org>
  18. * es.po: Updated to 986t.
  19. 2008-11-16 Yuri Kozlov <kozlov.y@gmail.com>
  20. * ru.po: Updated to 986t.
  21. 2008-11-16 Eddy Petrișor <eddy.petrisor@gmail.com>
  22. * ro.po: Updated to 986t.
  23. 2008-11-15 Peter Krefting <peterk@debian.org>
  24. * sv.po: Updated to 986t.
  25. 2008-11-15 Wiktor Wandachowicz <siryes@gmail.com>
  26. * pl.po: Updated to 986t.
  27. 2008-11-15 Changwoo Ryu <cwryu@debian.org>
  28. * ko.po: Updated to 986t.
  29. 2008-11-15 Yuri Kozlov <kozlov.y@gmail.com>
  30. * ru.po: Updated to 985t1f.
  31. 2008-11-14 Christian Perrier <bubulle@debian.org>
  32. * fr.po: Updated to 986t.
  33. 2008-11-14 Sven Joachim <svenjoac@gmx.de>
  34. * de.po: Updated to 986t.
  35. 2008-11-14 Guillem Jover <guillem@debian.org>
  36. * dpkg.pot: Regenerated. Formerly complete translations
  37. become 985t1u.
  38. * *.po: Merged with dpkg.pot.
  39. 2008-11-11 Jordi Mallach <jordi@debian.org>
  40. * ca.po: Updated to 981t2f2u.
  41. 2008-09-16 Wiktor Wandachowicz <siryes@gmail.com>
  42. * pl.po: Updated to 985t.
  43. 2008-09-13 Yuri Kozlov <kozlov.y@gmail.com>
  44. * ru.po: Updated to 985t.
  45. 2008-09-13 Miguel Figueiredo <elmig@debianpt.org>
  46. * pt.po: Updated to 985t.
  47. 2008-09-12 Emmanuel Galatoulas <galaxico@quad-nrg.net>
  48. * el.po: Updated to 985t.
  49. 2008-09-05 Clytie Siddall <clytie@riverland.net.au>
  50. * vi.po: Updated to 985t.
  51. 2008-09-05 Hans Fredrik Nordhaug <hans@nordhaug.priv.no>
  52. * nb.po: Updated to 985t.
  53. 2008-09-05 Piarres Beobide <pi+debian@beobide.net>
  54. * eu.po: Updated to 985t.
  55. 2008-08-29 Jacobo Tarrio <jtarrio@debian.org>
  56. * gl.po: Updated to 985t.
  57. 2008-08-29 Daniel Nylander <po@danielnylander.se>
  58. * sv.po: Updated to 985t.
  59. 2008-08-26 Felipe Augusto van de Wiel <faw@debian.org>
  60. * pt_BR.po: Updated to 985t.
  61. 2008-08-26 Deng Xiyue <manphiz-guest@users.alioth.debian.org>
  62. * zh_CN.po: Updated to 985t.
  63. 2008-08-24 Miroslav Kure <kurem@debian.cz>
  64. * cs.po: Updated to 985t.
  65. 2008-08-20 Eddy Petrișor <eddy.petrisor@gmail.com>
  66. * ro.po: Updated to 985t.
  67. 2008-08-18 Sven Joachim <svenjoac@gmx.de>
  68. * de.po: Updated to 985t.
  69. 2008-08-18 Christian Perrier <bubulle@debian.org>
  70. * fr.po: Updated to 985t.
  71. 2008-08-18 Ivan Masár <helix84@centrum.sk>
  72. * sk.po: Updated to 985t.
  73. 2008-08-17 Guillem Jover <guillem@debian.org>
  74. * dpkg.pot: Regenerated.
  75. * *.po: Merged with dpkg.pot.
  76. 2008-08-17 Guillem Jover <guillem@debian.org>
  77. * LINGUAS: Add Lithuanian.
  78. 2008-08-02 Gintautas Miliauskas <gintas@akl.lt>
  79. * lt.po: Added as 626t54f304u.
  80. 2008-07-29 Eddy Petrișor <eddy.petrisor@gmail.com>
  81. * ro.po: Updated to 984t (port from lenny branch).
  82. 2008-07-26 Christian Perrier <bubulle@debian.org>
  83. * fr.po: Replace "déclenchement" by "action différée".
  84. 2008-07-22 Piarres Beobide <pi+debian@beobide.net>
  85. * eu.po: Updated to 984t.
  86. 2008-07-19 Changwoo Ryu <cwryu@debian.org>
  87. * ko.po: Updated to 984t.
  88. 2008-07-02 Ivan Masár <helix84@centrum.sk>
  89. * sk.po: Updated to 984t.
  90. 2008-07-01 Yuri Kozlov <kozlov.y@gmail.com>
  91. * ru.po: Updated to 984t.
  92. 2008-06-28 Eddy Petrișor <eddy.petrisor@gmail.com>
  93. * ro.po: Updated to 984t.
  94. 2008-06-26 Theppitak Karoonboonyanan <thep@linux.thai.net>
  95. * th.po: Updated to 984t.
  96. 2008-06-09 Felipe Augusto van de Wiel <faw@debian.org>
  97. * pt_BR.po: Updated to 984t.
  98. 2008-06-06 Wiktor Wandachowicz <siryes@gmail.com>
  99. * pl.po: Updated to 984t.
  100. 2008-06-06 Jordi Mallach <jordi@debian.org>
  101. * ca.po: Updated to 887t71f26u.
  102. 2008-05-31 Deng Xiyue <manphiz-guest@users.alioth.debian.org>
  103. * zh_CN.po: Updated to 984t.
  104. 2008-05-31 Piarres Beobide <pi+debian@beobide.net>
  105. * eu.po: Updated to 984t.
  106. 2008-05-31 Hans Fredrik Nordhaug <hans@nordhaug.priv.no>
  107. * nb.po: Updated to 984t.
  108. 2008-05-28 Jacobo Tarrio <jtarrio@debian.org>
  109. * gl.po: Updated to 984t
  110. 2008-05-18 Miroslav Kure <kurem@debian.cz>
  111. * cs.po: Updated to 984t
  112. 2008-05-17 Clytie Siddall <clytie@riverland.net.au>
  113. * vi.po: Updated to 984t
  114. 2008-05-13 Christian Perrier <bubulle@debian.org>
  115. * fr.po: Updated to 984t.
  116. 2008-05-13 Sven Joachim <svenjoac@gmx.de>
  117. * de.po: Updated to 984t.
  118. 2008-05-13 Peter Karlsson <peterk@debian.org>
  119. * sv.po: Updated to 984t.
  120. 2008-05-13 Guillem Jover <guillem@debian.org>
  121. * dpkg.pot: Regenerated.
  122. * *.po: Merged with dpkg.pot.
  123. 2008-05-13 Piarres Beobide <pi+debian@beobide.net>
  124. * eu.po: Updated to 984t.
  125. 2008-05-12 Guillem Jover <guillem@debian.org>
  126. * dpkg.pot: Regenerated.
  127. * *.po: Merged with dpkg.pot.
  128. 2008-05-11 Felipe Augusto van de Wiel <faw@debian.org>
  129. * pt_BR.po: Updated to 984t.
  130. 2008-05-09 Sven Joachim <svenjoac@gmx.de>
  131. * de.po: Adjust translation of "breaks".
  132. 2008-05-08 Florent USSEIL <swiip81@free.fr>
  133. * fr.po: Updated to 984t.
  134. 2008-05-02 Miguel Figueiredo <elmig@debianpt.org>
  135. * pt.po: Updated to 984t.
  136. 2008-04-20 Robert Luberda <robert@debian.org>
  137. * pl.po: Fix one missing space.
  138. 2008-05-06 Sven Joachim <svenjoac@gmx.de>
  139. * de.po: Minor fixes.
  140. 2008-05-05 Wiktor Wandachowicz <siryes@gmail.com>
  141. * pl.po: Minor fixes.
  142. 2008-05-04 Ivan Masár <helix84@centrum.sk>
  143. * sk.po: Update to 984t.
  144. 2008-05-03 Ivan Masár <helix84@centrum.sk>
  145. * sk.po: Update to 981t3f.
  146. 2008-05-03 Yuri Kozlov <kozlov.y@gmail.com>
  147. * ru.po: Updated to 984t.
  148. 2008-05-02 SZERVÁC Attila <sas@321.hu>
  149. * hu.po: Updated to 818t.
  150. 2008-04-30 Wiktor Wandachowicz <siryes@gmail.com>
  151. * pl.po: Updated to 984t.
  152. 2008-04-29 Guillem Jover <guillem@debian.org>
  153. * dpkg.pot: Regenerated.
  154. * *.po: Merged with dpkg.pot.
  155. 2008-04-28 Sven Joachim <svenjoac@gmx.de>
  156. * sv.po: Add missing format specifier.
  157. 2008-04-25 Peter Karlsson <peterk@debian.org>
  158. * sv.po: Updated to 984t.
  159. 2008-04-20 Robert Luberda <robert@debian.org>
  160. * pl.po: Updated to 945t26f13u.
  161. 2008-04-16 Miguel Figueiredo <elmig@debianpt.org>
  162. * pt.po: Updated to 951t
  163. 2008-04-13 Jacobo Tarrio <jtarrio@debian.org>
  164. * gl.po: Really updated to 984t (had 1 fuzzy string).
  165. 2008-04-11 Jacobo Tarrio <jtarrio@debian.org>
  166. * gl.po: Updated to 984t.
  167. 2008-04-10 Sven Joachim <svenjoac@gmx.de>
  168. * dpkg.pot: Regenerated.
  169. * *.po: Merged with dpkg.pot.
  170. * de.po: Fix alignment of 'dpkg-trigger --help'.
  171. 2008-04-09 Sven Joachim <svenjoac@gmx.de>
  172. * de.po: Updated to 984t.
  173. 2008-04-08 Guillem Jover <guillem@debian.org>
  174. * pt.po, sv.po: Merged with dpkg.pot.
  175. 2008-04-08 Guillem Jover <guillem@debian.org>
  176. * sv.po: Mark two non-matching strings as fuzzy.
  177. 2008-04-03 Peter Karlsson <peterk@debian.org>
  178. * sv.po: Updated to 984t.
  179. 2008-04-02 Miguel Figueiredo <elmig@debianpt.org>
  180. * pt.po: Updated to 951t
  181. 2008-04-02 Sven Joachim <svenjoac@gmx.de>
  182. * dpkg.pot: Regenerated.
  183. * *.po: Merged with dpkg.pot.
  184. 2008-04-01 Clytie Siddall <clytie@riverland.net.au>
  185. * vi.po: Updated to 984t
  186. 2008-04-01 Miguel Figueiredo <elmig@debianpt.org>
  187. * pt.po: Updated to 933t
  188. 2008-04-01 Guillem Jover <guillem@debian.org>
  189. * dpkg.pot: Regenerated.
  190. * *.po: Merged with dpkg.pot.
  191. 2008-04-01 Guillem Jover <guillem@debian.org>
  192. * POTFILES.in: Rename 'lib/trigdeferred.c' to 'lib/trigdeferred.l'.
  193. 2008-03-31 Deng Xiyue <manphiz-guest@users.alioth.debian.org>
  194. * zh_CN.po: Updated to 984t
  195. 2008-03-30 Guillem Jover <guillem@debian.org>
  196. * dpkg.pot: Regenerated.
  197. * *.po: Merged with dpkg.pot.
  198. 2008-03-20 Ivan Masár <helix84@centrum.sk>
  199. * sk.po: Updated to 927t
  200. 2008-03-09 Robert Luberda <robert@debian.org>
  201. * pl.po: Apply some fixes suggested by Wiktor Wandachowicz.
  202. * pl.po: Consistently use Polish quotation marks in translations.
  203. 2008-03-03 Theppitak Karoonboonyanan <thep@linux.thai.net>
  204. * th.po: Updated to 921t.
  205. 2008-02-26 Peter Karlsson <peterk@debian.org>
  206. * sv.po: Updated to 921t.
  207. 2008-02-24 Robert Luberda <robert@debian.org>
  208. * pl.po: Recoded to UTF-8
  209. * pl.po: Updated to 921t.
  210. 2008-02-09 Eddy Petrişor <eddy.petrisor@gmail.com>
  211. * ro.po: Update to 927t.
  212. 2008-02-04 Changwoo Ryu <cwryu@debian.org>
  213. * ko.po: Update to 927t.
  214. 2008-01-21 Guillem Jover <guillem@debian.org>
  215. * de.po, eu.po, fr.po, gl.po, nb.po, ru.po, sv.po: Update to 928t.
  216. * vi.po, zh_CN.po: Likewise.
  217. 2008-01-21 Guillem Jover <guillem@debian.org>
  218. * dpkg.pot: Regenerated.
  219. * *.po: Merged with dpkg.pot.
  220. 2008-01-19 Frank Lichtenheld <djpig@debian.org>
  221. * POTFILES.in: Remove utils/enoent.c
  222. since it doesn't exist anymore.
  223. 2008-01-14 Yuri Kozlov <kozlov.y@gmail.com>
  224. * ru.po: Updated to 928t.
  225. 2008-01-12 Jacobo Tarrio <jtarrio@debian.org>
  226. * gl.po: Updated to 928t.
  227. 2008-01-07 Christian Perrier <bubulle@debian.org>
  228. * de.po, eu.po, fr.po, nb.po, sv.po, vi.po: Updated to 928t.
  229. * zh_CN.po: Likewise.
  230. 2008-01-07 Piarres Beobide <pi@beobide.net>
  231. * eu.po: Updated to 927t1f.
  232. 2008-01-07 Guillem Jover <guillem@debian.org>
  233. * dpkg.pot: Regenerated.
  234. * *.po: Merged with dpkg.pot.
  235. 2008-01-05 Sven Joachim <svenjoac@gmx.de>
  236. * de.po: Updated to 928t.
  237. 2008-01-04 Peter Karlsson <peterk@debian.org>
  238. * sv.po: Updated to 928t.
  239. 2008-01-04 Christian Perrier <bubulle@debian.org>
  240. * zh_CN.po: Updated to 928t.
  241. 2008-01-04 Christian Perrier <bubulle@debian.org>
  242. * fr.po: Updated to 928t.
  243. 2008-01-04 Clytie Siddall <clytie@riverland.net.au>
  244. * vi.po: Updated to 928t.
  245. 2008-01-02 Hans Fredrik Nordhaug <hans@nordhaug.priv.no>
  246. * nb.po: Updated to 928t.
  247. 2007-12-29 Guillem Jover <guillem@debian.org>
  248. * dpkg.pot: Regenerated.
  249. * *.po: Merged with dpkg.pot. Formerly complete translations
  250. become 926t2f.
  251. 2007-12-29 Guillem Jover <guillem@debian.org>
  252. * he.po: Remove obsolete translation.
  253. * LINGUAS: Remove disabled Hebrew entry.
  254. 2007-12-29 Hans Fredrik Nordhaug <hans@nordhaug.priv.no>
  255. * nb.po: Updated to 930t.
  256. 2007-12-22 Christian Perrier <bubulle@debian.org>
  257. * fr.po: Updated to 930t.
  258. 2007-12-20 Raphael Hertzog <hertzog@debian.org>
  259. * sv.po: Fix some groff that lead to a build failure.
  260. 2007-12-20 Kenshi Muto <kmuto@debian.org>
  261. * ja.po: Updated to 930t.
  262. 2007-12-19 Javier Fernández-Sanguino Peña <jfs@computer.org>
  263. * es.po: Updated to 930t.
  264. 2007-12-19 Peter Karlsson <peterk@debian.org>
  265. * dpkg.pot: Regenerated.
  266. * *.po: Merged with dpkg.pot.
  267. * sv.po: Updated to 930t.
  268. 2007-12-13 Kenshi Muto <kmuto@debian.org>
  269. * ja.po: Updated 929t.
  270. 2007-11-29 Guillem Jover <guillem@debian.org>
  271. * dpkg.pot: Regenerated.
  272. * *.po: Merged with dpkg.pot.
  273. 2007-11-19 Guillem Jover <guillem@debian.org>
  274. * dpkg.pot: Regenerated.
  275. * *.po: Merged with dpkg.pot.
  276. 2007-11-09 Miroslav Kure <kurem@debian.cz>
  277. * cs.po: Updated to 929t.
  278. 2007-11-06 Christian Perrier <bubulle@debian.org>
  279. * fr.po: Enter the 21st century and switched to UTF-8.
  280. 2007-10-14 Jacobo Tarrio <jtarrio@trasno.net>
  281. * gl.po: Updated to 929t.
  282. 2007-10-13 Theppitak Karoonboonyanan <thep@linux.thai.net>
  283. * th.po: Updated to 929t.
  284. 2007-10-12 Yuri Kozlov <kozlov.y@gmail.com>
  285. * ru.po: Updated to 929t.
  286. 2007-10-08 Robert Luberda <robert@debian.org>
  287. * pl.po: Updated to 929t.
  288. 2007-09-19 Sunjae Park <darehanl@gmail.com>
  289. * ko.po: Updated to 929t.
  290. 2007-09-07 Claus Hindsgaul <claus.hindsgaul@gmail.com>
  291. * da.po: Updated to 929t.
  292. 2007-09-06 Miguel Figueiredo <elmig@debianpt.org>
  293. * pt.po: Updated to 929t.
  294. 2007-09-05 Piarres Beobide <pi@beobide.net>
  295. * eu.po: Updated to 929t.
  296. 2007-09-04 Frédéric Bothamy <frederic.bothamy@free.fr>
  297. * fr.po: Updated to 929t.
  298. 2007-09-02 Sven Joachim <svenjoac@gmx.de>
  299. * de.po: Updated to 929t.
  300. 2007-09-02 Clytie Siddall <clytie@riverland.net.au>
  301. * vi.po: Updated to 929t.
  302. 2007-08-26 Shiva Prasad Pokharel <pokharelshiv@gmail.com>
  303. * ne.po: Updated to 903t23f3u.
  304. 2007-08-25 Peter Karlsson <peterk@debian.org>
  305. * sv.po: Updated to 929t.
  306. 2007-08-18 Guillem Jover <guillem@debian.org>
  307. * dpkg.pot: Regenerated.
  308. * *.po: Merged with dpkg.pot.
  309. 2007-08-14 Robert Luberda <robert@debian.org>
  310. * pl.po: Updated to 921t.
  311. 2007-08-06 Yuri Kozlov <kozlov.y@gmail.com>
  312. * ru.po: Updated to 921t.
  313. 2007-07-31 Shiva Prasad Pokharel <pokharelshiv@gmail.com>
  314. * ne.po: Updated to 921t.
  315. 2007-07-24 Peter Karlsson <peterk@debian.org>
  316. * sv.po: Updated to 921t.
  317. 2007-07-13 Ivar Smolin <okul@linux.ee>
  318. * et.po: Updated to 505t416u.
  319. 2007-06-28 Tshewang Norbu <bumthap2006@hotmail.com>
  320. * dz.po: Updated to 921t.
  321. 2007-06-21 Javier Fernandez-Sanguino <jfs@debian.org>
  322. * es.po: Updated to 921t.
  323. 2007-06-18 Ivar Smolin <okul@linux.ee>
  324. * et.po: Updated to 463t458u.
  325. 2007-06-05 Ivar Smolin <okul@linux.ee>
  326. * et.po: Updated to 441t480u.
  327. 2007-06-01 Clytie Siddall <clytie@riverland.net.au>
  328. * vi.po: Updated Vietnamese translation.
  329. 2007-05-24 Miguel Figueiredo <elmig@debianpt.org>
  330. * pt.po: Updated to 921t.
  331. 2007-05-24 Guillem Jover <guillem@debian.org>
  332. * dpkg.pot: Regenerated.
  333. * *.po: Merged with dpkg.pot.
  334. 2007-05-24 Jacobo Tarrío <jtarrio@debian.org>
  335. * gl.po: Updated to 921t.
  336. 2007-05-24 Piarres Beobide <pi@beobide.net>
  337. * eu.po: Updated to 921t.
  338. 2007-05-21 Frédéric Bothamy <frederic.bothamy@free.fr>
  339. * fr.po: Updated to 921t.
  340. 2007-05-15 Guillem Jover <guillem@debian.org>
  341. * dpkg.pot: Regenerated.
  342. * *.po: Merged with dpkg.pot. Formerly completed translations
  343. become 919t1f1u.
  344. 2007-05-11 Christian Perrier <bubulle@debian.org>
  345. * fr.po: Updated to 921t.
  346. 2007-05-11 Sven Joachim <svenjoac@gmx.de>
  347. * de.po: Updated to 921t.
  348. 2007-05-10 Bart Cornelis <cobaco@skolelinux.no>
  349. * nl.po: Updated.
  350. 2007-05-08 Guillem Jover <guillem@debian.org>
  351. * dpkg.pot: Regenerated.
  352. * *.po: Merged with dpkg.pot.
  353. 2007-05-08 Guillem Jover <guillem@debian.org>
  354. * LINGUAS: Estonian is 'et' not 'es'.
  355. 2007-05-04 Ivar Smolin <okul@linux.ee>
  356. * et.po: Added with 304t8f608u.
  357. 2007-05-04 Robert Luberda <robert@debian.org>
  358. * pl.po: Updated to 920t.
  359. 2007-05-04 Frédéric Bothamy <frederic.bothamy@free.fr>
  360. * fr.po: Updated to 920t.
  361. 2007-04-07 Erdal Ronahi <erdal.ronahi@gmail.com>
  362. * ku.po: Added translation.
  363. 2007-04-01 Priti Patil <prithisd@gmail.com>
  364. * mr.po: Added translation.
  365. 2007-03-28 Bart Cornelis <cobaco@skolelinux.no>
  366. * nl.po: Updated translation.
  367. 2007-03-21 Guillem Jover <guillem@debian.org>
  368. * dpkg.pot: Regenerated.
  369. * *.po: Merged with dpkg.pot. Formerly completed translations
  370. become 907t11f2u.
  371. 2007-03-18 Robert Luberda <robert@debian.org>
  372. * pl.po: Updated to 920t.
  373. 2007-03-18 Anthony Wong <me@ypwong.org>
  374. * zh_CN.po: Updated to 918t2f.
  375. 2007-03-17 Anthony Wong <me@ypwong.org>
  376. * zh_TW.po: Update for one string.
  377. 2007-01-11 Eddy Petrişor <eddy.petrisor@gmail.com>
  378. * ro.po: Typo correction in dpkg-divert.
  379. 2007-01-01 Guillem Jover <guillem@debian.org>
  380. * ko.po: Mark again 1 string as fuzzy, as it was not matching the
  381. format characters.
  382. 2006-12-31 Sunjae Park <darehanl@gmail.com>
  383. * ko.po: Updated to 920t.
  384. 2006-12-25 A S Alam <apbrar@gmail.com>
  385. * pa.po: New Punjabi translation (201t up to now).
  386. 2006-12-22 Eddy Petrişor <eddy.petrisor@gmail.com>
  387. * ro.po: some improvements in wording and wrote my name with the right
  388. diacritics (still 920t).
  389. 2006-11-06 Clytie Siddall <clytie@riverland.net.au>
  390. * vi.po: Various fixes.
  391. 2006-11-17 Guillem Jover <guillem@debian.org>
  392. * ca.po: Correct s/gzip/bzip2/ in 2 strings. Add missing '%s' in
  393. format strings.
  394. * ko.po: Mark 3 strings as fuzzy, as they were not matching the
  395. original ones.
  396. 2006-11-06 Paras pradhan <pradhanparas@gmail.com>
  397. * ne.po: Updated to 920t by Shiva Prasad Pokharel.
  398. 2006-11-01 Peter Karlsson <peterk@debian.org>
  399. * sv.po: Some minor tweaks to the translation.
  400. 2006-10-22 Jordi Mallach <jordi@debian.org>
  401. * ca.po: Updated to 920t by Jordà Polo.
  402. 2006-10-21 SZERVÁC Attila <sas@321.hu>
  403. * hu.po: Updated to 815t.
  404. 2006-10-21 Asho Yeh <asho@debian.org.tw>
  405. * zh_TW.po: Updated to 920t.
  406. 2006-10-20 Sunjae Park <darehanl@gmail.com>
  407. * ko.po: Updated to 920t (but a few formats are incorrect).
  408. 2006-10-18 Eddy Petrişor <eddy.petrisor@gmail.com>
  409. * ro.po: use Romanian quotes instead of other types of quotes
  410. and small wording improvement (still 920t).
  411. 2006-10-18 Hans Fredrik Nordhaug <hans@nordhaug.priv.no>
  412. * nb.po: Updated to 920t.
  413. 2006-10-12 Shiva Prasad Pokharel <pokharelshiva@hotmail.com>
  414. * ne.po: Updated to 919t1f.
  415. 2006-10-08 Sven Joachim <svenjoac@gmx.de>
  416. * de.po: Updated to 920t.
  417. 2006-10-08 Andre Luis Lopes <andrelop@debian.org>
  418. * pt_BR.po: Updated to 920t.
  419. 2006-10-07 Yuri Kozlov <kozlov.y@gmail.com>
  420. * ru.po: Updated to 920t.
  421. 2006-10-06 Claus Hindsgaul <claus.hindsgaul@gmail.com>
  422. * da.po: Updated to 920t.
  423. 2006-10-06 Jordi Mallach <jordi@debian.org>
  424. * ca.po: Updated to 749t74f97u.
  425. 2006-10-06 Claus Hindsgaul <claus.hindsgaul@gmail.com>
  426. * da.po: Updated to 916t3f1u.
  427. 2006-10-05 SZERVÁC Attila <sas@321.hu>
  428. * hu.po: Updated to 734t14f172u.
  429. 2006-10-05 Khoem Sokhem <khoemsokhem@khmeros.info>
  430. * km.po: Updated to 920t.
  431. 2006-09-27 Piarres Beobide <pi@beobide.net>
  432. * eu.po: Updated to 920t.
  433. 2006-09-19 Tenzin Dendup <tdendup@dit.gov.bt>
  434. * LINGUAS: Change the Dzongkha translation maintainer to
  435. norbu <nor_den@hotmail.com>.
  436. 2006-09-19 Tenzin Dendup <tdendup@dit.gov.bt>
  437. * dz.po: Updated to 920t.
  438. 2006-09-17 Davide Viti <zinosat@tiscali.it>
  439. * it.po: Fix typo.
  440. 2006-09-16 Frédéric Bothamy <frederic.bothamy@free.fr>
  441. * fr.po: Updated to 920t.
  442. 2006-09-14 Javier Fernandez-Sanguino <jfs@debian.org>
  443. * es.po: Updated to 920t.
  444. 2006-09-13 Stefano Canepa <sc@linux.it>
  445. * it.po: Updated to 920t.
  446. 2006-09-13 Kenshi Muto <kmuto@debian.org>
  447. * ja.po: Fix typos.
  448. 2006-09-13 Peter Mann <Peter.Mann@tuke.sk>
  449. * sk.po: Updated to 920t.
  450. 2006-09-11 Kenshi Muto <kmuto@debian.org>
  451. * ja.po: Updated to 920t.
  452. 2006-08-30 Miguel Figueiredo <elmig@debianpt.org>
  453. * pt.po: Fixed extra space.
  454. 2006-08-29 Bart Cornelis <cobaco@skolelinux.no>
  455. * nl.po: Updated translation.
  456. 2006-08-29 Sven Joachim <svenjoac@gmx.de>
  457. * LINGUAS: New German translation maintainer.
  458. 2006-08-27 Miguel Figueiredo <elmig@debianpt.org>
  459. * pt.po: Updated to 920t.
  460. 2006-08-19 Daniel Nylander <yeager@lidkoping.net>
  461. * sv.po: Updated to 920t.
  462. 2006-08-18 Miroslav Kure <kurem@debian.cz>
  463. * cs.po: Updated to 920t.
  464. 2006-08-18 Clytie Siddall <clytie@riverland.net.au>
  465. * vi.po: Updated to 920t.
  466. 2006-08-18 Jacobo Tarrio <jtarrio@debian.org>
  467. * gl.po: Updated to 920t.
  468. 2006-08-18 Robert Millan <rmh@aybabtu.com>
  469. * ca.po: Fixed spelling errors.
  470. 2006-08-18 Eddy Petrişor <eddy.petrisor@gmail.com>
  471. * ro.po: Updated to 920t.
  472. 2006-08-17 Nicolas Francois <nicolas.francois@centraliens.net>
  473. * dpkg.pot: Regenerated.
  474. * *.po: Merged with dpkg.pot. Formerly complete translations
  475. become 916t3f1u.
  476. 2006-08-07 Sven Joachim <svenjoac@gmx.de>
  477. * de.po: Fix typos.
  478. 2006-08-05 Sven Joachim <svenjoac@gmx.de>
  479. * de.po: Updated to 916t.
  480. 2006-07-28 Eddy Petrişor <eddy.petrisor@gmail.com>
  481. * ro.po: Wording improvements.
  482. 2006-07-26 Christian Perrier <bubulle@debian.org>
  483. * fr.po: Typo correction "ceoendant".
  484. 2006-07-11 Miguel Figueiredo <elmig@debianpt.org>
  485. Rui Branco <ruipb@debianpt.org>
  486. * pt.po: Updated to 916t.
  487. 2006-07-07 Miguel Figueiredo <elmig@debianpt.org>
  488. * pt.po: Updated to 800t.
  489. 2006-07-05 Yuri Kozlov <kozlov.y@gmail.com>
  490. * ru.po: Updated to 916t.
  491. 2006-07-01 Kinley Tshering <gasepkuenden2k3@hotmail.com>
  492. * dz.po: Added with 916t.
  493. * LINGUAS: New language: Dzongkha.
  494. 2006-06-24 Miroslav Kure <kurem@debian.cz>
  495. * cs.po: Updated to 916t.
  496. 2006-06-24 Khoem Sokhem <khoemsokhem@khmeros.info>
  497. * km.po: Updated to 916t.
  498. 2006-06-23 Piarres Beobide <pi@beobide.net>
  499. * eu.po: Updated to 916t.
  500. 2006-06-23 Khoem Sokhem <khoemsokhem@khmeros.info>
  501. * LINGUAS: New language: Khmer.
  502. * km.po: New translation: 894t22f.
  503. 2006-06-23 Claus Hindsgaul <claus.hindsgaul@gmail.com>
  504. * da.po: Updated to 916t.
  505. 2006-06-23 Clytie Siddall <clytie@riverland.net.au>
  506. * vi.po: Updated to 916t.
  507. 2006-06-22 Frédéric Bothamy <frederic.bothamy@free.fr>
  508. * fr.po: Updated to 916t.
  509. 2006-06-22 Eddy Petrişor <eddy.petrisor@gmail.com>
  510. * ro.po: Updated to 916t.
  511. 2006-06-22 SZERVÁC Attila <sas@321.hu>
  512. * hu.po: Updated to 716t.
  513. 2006-06-22 Bart Cornelis <cobaco@skolelinux.no>
  514. * nl.po: Updated translation.
  515. 2006-06-21 Jacobo Tarrio <jtarrio@debian.org>
  516. * gl.po: Updated to 916t.
  517. 2006-06-21 Guillem Jover <guillem@debian.org>
  518. * dpkg.pot: Regenerated.
  519. * *.po: Merged with dpkg.pot. Formerly complete translations
  520. become 895t21f.
  521. 2006-06-19 Robert Luberda <robert@debian.org>
  522. * pl.po: Updated to 936t.
  523. 2006-06-19 Guillem Jover <guillem@debian.org>
  524. * ca.po: Updated to 728t74f136u.
  525. 2006-06-18 Robert Luberda <robert@debian.org>
  526. * pl.po: Updated to 906t11f21u.
  527. 2006-06-17 Guillem Jover <guillem@debian.org>
  528. * pl.po: Add a missing '%s' in a string.
  529. 2006-06-17 Christian Perrier <bubulle@debian.org>
  530. * *.po: Preventive unfuzzy for "alternativse" being corrected
  531. in update-alternatives
  532. 2006-06-17 Eddy Petrişor <eddy.petrisor@gmail.com>
  533. * ro.po: Updated to 938t;
  534. A couple typo fixes;
  535. Anticipated an update on the help for the alternatives;
  536. 2006-06-16 Robert Luberda <robert@debian.org>
  537. * pl.po: Updated to 848t18f42u.
  538. 2006-06-16 Guillem Jover <guillem@debian.org>
  539. * LINGUAS: Add ne.
  540. 2006-06-16 Paras Pradhan <pradhanparas@gmail.com>
  541. * ne.po: New file 737t80f121u.
  542. 2006-06-16 Guillem Jover <guillem@debian.org>
  543. * sv.po: Add a missing '%s' in a string.
  544. * ro.po: Add a missing 's' in a format string.
  545. 2006-06-16 Piarres Beobide <pi@beobide.net>
  546. * eu.po: Updated to 937t1u.
  547. 2006-06-09 Peter Karlsson <peterk@debian.org>
  548. * sv.po: Updated to 939t.
  549. 2006-06-08 Christian Perrier <bubulle@debian.org>
  550. * fr.po: Updated to 938t (thanks Fred Bothamy).
  551. 2006-06-06 Jacobo Tarrio <jtarrio@debian.org>
  552. * gl.po: Updated to 938t.
  553. 2006-06-05 Eddy Petrişor <eddy.petrisor@gmail.com>
  554. * ro.po: Now consistent with aptitude translation;
  555. Updated to 936t2u.
  556. 2006-06-02 Miroslav Kure <kurem@upcase.inf.upol.cz>
  557. * cs.po: Updated to 938t.
  558. 2006-06-02 Clytie Siddall <clytie@riverland.net.au>
  559. * vi.po: Updated Vietnamese translation.
  560. 2006-05-02 Guillem Jover <guillem@debian.org>
  561. * dpkg.pot: Regenerated.
  562. * *.po: Merged with dpkg.pot. Formerly complete translations
  563. become 937t1f.
  564. 2006-05-31 Guillem Jover <guillem@debian.org>
  565. * dpkg.pot: Regenerated.
  566. * *.po: Merged with dpkg.pot. Formerly complete translations
  567. become 937t1f.
  568. 2006-05-31 Piarres Beobide <pi@beobide.net>
  569. * eu.po: Updated to 740t77f121u.
  570. 2006-05-30 Peter Mann <Peter.Mann@tuke.sk>
  571. * sk.po: Updated to 848t0f91u.
  572. 2006-05-29 Miroslav Kure <kurem@upcase.inf.upol.cz>
  573. * cs.po: Updated to 939t.
  574. 2006-05-27 SZERVÁC Attila <sas@321.hu>
  575. * hu.po: Updated to 669t.
  576. 2006-05-27 Jacobo Tarrio <jtarrio@debian.org>
  577. * gl.po: Updated to 939t.
  578. 2006-05-24 Clytie Siddall <clytie@riverland.net.au>
  579. * vi.po: Updated Vietnamese translation.
  580. 2006-05-23 Guillem Jover <guillem@debian.org>
  581. * dpkg.pot: Regenerated.
  582. * *.po: Merged with dpkg.pot. Formerly complete translations
  583. become 742t76f121u.
  584. 2006-05-15 Eddy Petrişor <eddy.petrisor@gmail.com>
  585. * ro.po: Fixed some consitency issues;
  586. "conffiles" is no longer translated;
  587. doublechecked for existance of writings without diacritics;
  588. translation still at 742t.
  589. 2006-05-15 Peter Karlsson <peterk@debian.org>
  590. * sv.po: Updated to 742t.
  591. 2006-05-13 Kov Tchai <tchaikov@sjtu.edu.cn>
  592. * zh_CN.po: Updated to 738t4f.
  593. 2006-05-08 Miroslav Kure <kurem@debian.cz>
  594. * cs.po: Updated to 742t.
  595. 2006-05-08 Yuri Kozlov <kozlov.y@gmail.com>
  596. * ru.po: Updated to 742t.
  597. 2006-05-07 Miguel Figueiredo <elmig@debianpt.org>
  598. * pt.po: Updated to 742t.
  599. 2006-05-06 Eddy Petrişor <eddy.petrisor@gmail.com>
  600. * ro.po: Unified quotation marks; using Romanian quotes
  601. even more than before; removed (hopefuly) the rest of
  602. first person messages (now dpkg message should be
  603. impersonal). Improved consistency of translation of
  604. "failed"/"unable"/"couldn't"; minor spelling corrections.
  605. Updated to 742t.
  606. 2006-05-05 Clytie Siddall <clytie@riverland.net.au>
  607. * vi.po: Updated Vietnamese translation.
  608. 2006-05-04 SZERVÁC Attila <sas@321.hu>
  609. * hu.po: Updated to 578t.
  610. 2006-05-04 Robert Luberda <robert@debian.org>
  611. * pl.po: Updated to 742t.
  612. 2006-05-04 Bart Cornelis <cobaco@linux.be>
  613. * nl.po: Updated translation.
  614. 2006-05-04 Christian Perrier <bubulle@debian.org>
  615. * fr.po: First review received.
  616. 2006-05-03 Christian Perrier <bubulle@debian.org>
  617. * fr.po: Updated to 742t. Proofreading still pending.
  618. 2006-05-03 Jacobo Tarrio <jtarrio@debian.org>
  619. * gl.po: Updated to 742t.
  620. 2006-05-03 Guillem Jover <guillem@debian.org>
  621. * dpkg.pot: Regenerated.
  622. * *.po: Merged with dpkg.pot. Formerly complete translations
  623. become 703t22f17u.
  624. 2006-04-29 Kenshi Muto <kmuto@debian.org>
  625. * ja.po: Updated to 731t.
  626. 2006-04-21 Piarres Beobide <pi@beobide.net>
  627. * eu.po: Updated to 731t.
  628. 2006-04-21 Javier Fernández-Sanguino Peña <jfs@computer.org>
  629. * es.po: Updated to 729t.
  630. 2006-04-18 Clytie Siddall <clytie@riverland.net.au>
  631. * vi.po: Updated to 731t.
  632. 2006-04-17 Miroslav Kure <kurem@debian.cz>
  633. * cs.po: Updated to 731t.
  634. 2006-04-16 Claus Hindsgaul <claus.hindsgaul@gmail.com>
  635. * da.po: Updated to 731t.
  636. 2006-04-13 Bart Cornelis <cobaco@linux.be>
  637. * nl.po: Updated to 731t.
  638. 2006-04-13 Peter Karlsson <peterk@debian.org>
  639. * sv.po: Updated to 730t1f.
  640. 2006-04-11 Frank Lichtenheld <djpig@debian.org>
  641. * pt.po: Mark a broken string as fuzzy and give
  642. the translator a hint where it is broken.
  643. 2006-04-11 Eddy Petrişor <eddy.petrisor@gmail.com>
  644. * ro.po: Unified quotation marks; using Romanian quotes.
  645. Updated to 731t.
  646. 2006-04-10 Miguel Figueiredo <elmig@debianpt.org>
  647. * pt.po: Updated to 731t.
  648. 2006-04-10 Christian Perrier <bubulle@debian.org>
  649. * fr.po: Updated to 731t.
  650. 2006-04-10 Guillem Jover <guillem@debian.org>
  651. * dpkg.pot: Regenerated.
  652. * *.po: Merged with dpkg.pot. Formerly complete translations
  653. become 727t4f.
  654. 2006-04-04 Bart Cornelis <cobaco@linux.be>
  655. * nl.po: Fixed small error reported bij Mark van den Borre.
  656. 2006-03-22 Robert Luberda <robert@debian.org>
  657. * pl.po: Updated to 729t.
  658. 2006-03-21 Claus Hindsgaul <claus.hindsgaul@gmail.com>
  659. * da.po: Updated to 729t.
  660. 2006-03-21 Sorin Batariuc <sorin@bonbon.net>
  661. * ro.po: Updated to 729t.
  662. 2006-03-19 Yuri Kozlov <kozlov.y@gmail.com>
  663. * ru.po: Updated to 729t.
  664. 2006-03-07 Szervác Attila <sas@321.hu>
  665. * hu.po: Updated to 468t.
  666. 2006-03-07 Lele Gaifax <lele@nautilus.homeip.net>
  667. * it.po: Updated to 729t.
  668. 2006-03-05 Miroslav Kure <kurem@debian.cz>
  669. * cs.po: Updated to 279t.
  670. 2006-02-21 Szervác Attila <sas@321.hu>
  671. * hu.po: 2 small bugfixes & little improvements.
  672. 2006-02-21 Miguel Figueiredo <elmig@debianpt.org>
  673. * pt.po: Updated to 723t.
  674. 2006-02-19 Bart Cornelis <cobaco@linux.be>
  675. * nl.po: Updated to 729t.
  676. 2006-02-19 Miguel Figueiredo <elmig@debianpt.org>
  677. * pt.po: Updated to 720t.
  678. 2006-02-19 Carlos Z.F. Liu <carlosliu@users.sourceforge.net>
  679. * zh_CN.po: Updated to 729t. (finished)
  680. 2006-02-17 Guillem Jover <guillem@debian.org>
  681. * POTFILES.in: Remove dselect source files.
  682. * dpkg.pot: Regenerate.
  683. * *.po: Merged with dpkg.pot. Removed obsolete strings.
  684. 2006-02-17 Guillem Jover <guillem@debian.org>
  685. * dpkg.pot: Regenerated.
  686. * *.po: Merged with dpkg.pot. Add missing closing parenthesis to
  687. non-fuzzy strings.
  688. 2006-02-15 Frank Lichtenheld <djpig@debian.org>
  689. * LINGUAS: Add hu.
  690. * pt.po: Fixed some errors that caused build
  691. failures.
  692. 2006-02-14 Miguel Figueiredo <elmig@debianpt.org>
  693. * pt.po: Updated to 979t.
  694. 2006-02-14 Szervác Attila <sas@321.hu>
  695. * hu.po: Added.
  696. 2006-02-13 Daniel Nylander <info@danielnylander.se>
  697. * sv.po: Updated to 1011t.
  698. 2006-02-13 Jacobo Tarrio <jtarrio@trasno.net>
  699. * gl.po: Updated to 1011t.
  700. 2006-02-13 Andre Luis Lopes <andrelop@debian.org>
  701. * pt_BR.po: Updated to 1011t.
  702. 2006-02-13 Jordi Mallach <jordi@debian.org>
  703. * ca.po: Updated to 1011t.
  704. 2006-02-11 Christian Perrier <bubulle@debian.org>
  705. * fr.po: Updated to 1011t.
  706. 2006-02-11 Peter Mann <Peter.Mann@tuke.sk>
  707. * sk.po: Updated to 1011t.
  708. 2006-02-11 Clytie Siddall <clytie@riverland.net.au>
  709. * vi.po: Updated to 1011t.
  710. 2006-02-11 Frank Lichtenheld <djpig@debian.org>
  711. * *.po: Merge with dpkg.pot.
  712. 2006-02-09 Peter Mann <Peter.Mann@tuke.sk>
  713. * sk.po: Updated to 1002t.
  714. 2006-02-08 Piarres Beobide Egana <pi@beobide.net>
  715. * eu.po: Updated to 1002t.
  716. 2006-02-07 Jacobo Tarrio <jtarrio@trasno.net>
  717. * gl.po: Updated to 1002t.
  718. 2006-02-07 Christian Perrier <bubulle@debian.org>
  719. * LINGUAS: Added Vietnamese.
  720. * vi.po: Merge with dpkg.pot.
  721. 2006-02-06 Christian Perrier <bubulle@debian.org>
  722. * fr.po: Updated to 1002t.
  723. 2006-02-06 Guillem Jover <guillem@debian.org>
  724. * *.po: Merged with dpkg.pot again.
  725. 2006-02-06 Guillem Jover <guillem@debian.org>
  726. * *.po: Merged with dpkg.pot.
  727. 2006-02-06 Jordi Mallach <jordi@debian.org>
  728. * ca.po: Updated to 1000t.
  729. 2006-01-24 Kenshi Muto <kmuto@debian.org>
  730. * ja.po: Updated to 1000t.
  731. 2006-01-22 Clytie Siddall <clytie@riverland.net.au>
  732. * vi.po: Updated to 1000t.
  733. 2006-01-21 Yuri Kozlov <kozlov.y@gmail.com>
  734. * ru.po: Updated to 1000t. Closes: #349151
  735. 2006-01-18 Claus Hindsgaul <claus_h@image.dk>
  736. * da.po: Updated to 1000t. Closes: #348575
  737. 2006-01-12 Jacobo Tarrio <jtarrio@trasno.net>
  738. * gl.po: Completed to 1000t. Closes: #338904
  739. 2006-01-09 Stefano Melchior <stefano.melchior@openlabs.it>
  740. * it.po: Minor correction.
  741. 2005-12-31 Miroslav Kure <kurem@upcase.inf.upol.cz>
  742. * cs.po: Updated to 1000t.
  743. 2005-12-25 Stefano Canepa <sc@linux.it>
  744. * it.po: Updated to 1000t.
  745. 2005-12-25 Emmanuel Galatoulas
  746. * el.po: Updated to 1000t.
  747. 2005-12-23 Parlin Imanuel <pt@samip-online.com>
  748. * id.po: Updated to 1000t.
  749. 2005-12-23 Clytie Siddall <clytie@riverland.net.au>
  750. * vi.po: Updated to 992t8f.
  751. 2005-12-22 Eddy Petrisor <eddy.petrisor@gmail.com>
  752. * ro.po: Updated to 998t2f.
  753. 2005-12-22 Jacobo Tarrio <jtarrio@trasno.net>
  754. * gl.po: Updated to 718t79f203u (no translation for dselect).
  755. 2005-12-22 Kov Tchai <tchaikov@sjtu.edu.cn>
  756. * zh_CN.po: Updated to 999t1f.
  757. 2005-12-22 eric pareja <xenos@upm.edu.ph>
  758. * tl.po: Updated to 1000t.
  759. 2005-12-22 pi <pi@beobide.net>
  760. * eu.po: Updated to 1000t.
  761. 2005-12-22 Jordi Mallach <jordi@debian.org>
  762. * ca.po: Updated to 998t2f.
  763. 2005-12-22 Stefano Canepa <sc@linux.it>
  764. * it.po: Updated to 998t2f.
  765. 2005-12-22 Michael Piefel <piefel@debian.org>
  766. * de.po: Updated to 998t2f.
  767. 2005-12-22 Bart Cornelis <cobaco@linux.be>
  768. * nl.po: Updated to 998t2f.
  769. 2005-12-22 Claus Hindsgaul <claus_h@image.dk>
  770. * da.po: Updated to 1000t.
  771. 2005-12-22 Javier Fernández-Sanguino Peña <jfs@computer.org>
  772. * es.po: Updated to 998t2f.
  773. 2005-12-22 Håvard Korsvoll <korsvoll@skulelinux.no>
  774. * nn.po: Updated to 999t1f.
  775. 2005-12-22 Miguel Figueiredo <elmig@debianpt.org>
  776. * pt.po: Updated to 974t24f2u.
  777. 2005-12-22 Peter Karlsson <peterk@debian.org>
  778. * sv.po: Updated to 1000t.
  779. 2005-10-22 Christian Perrier <bubulle@debian.org>
  780. * *.po: Merged with dpkg.pot.
  781. 2005-10-22 Yuri Kozlov <kozlov.y@gmail.com>
  782. * ru.po: Completed.
  783. 2005-10-22 Christian Perrier <bubulle@debian.org>
  784. * fr.po: Completed.
  785. 2005-10-22 Christian Perrier <bubulle@debian.org>
  786. * dpkg.pot: Re-generated from sources.
  787. 2005-10-11 Christian Perrier <bubulle@debian.org>
  788. * fr.po: Completed.
  789. 2005-10-11 Christian Perrier <bubulle@debian.org>
  790. * *.po: Updated from sources.
  791. 2005-09-01 James Troup <james@nocrew.org>
  792. * pt_BR.po: Obvious error corrected thanks to James deep knowledge
  793. of Portuguese.
  794. 2005-09-01 Christian Perrier <bubulle@debian.org>
  795. * *.po: Project-Id-Version forced to "dpkg 1.13".
  796. 2005-08-26 Andre Luis Lopes <andrelop@debian.org>
  797. * pt_BR.po: Updated (999t).
  798. 2005-08-22 Kenshi Muto <kmuto@debian.org>
  799. * ja.po: Updated (999t).
  800. 2005-08-22 Yuri Kozlov <yuray@id.ru>
  801. * ru.po: Updated (999t).
  802. 2005-08-22 Miroslav Kure <kurem@upcase.inf.upol.cz>
  803. * cs.po: Updated (999t).
  804. 2005-08-22 Hans Fredrik Nordhaug <hans@nordhaug.priv.no>
  805. * nb.po: Updated (999t).
  806. 2005-08-22 Bartosz Fenski <fenio@debian.org>
  807. * pl.po: Updated (999t).
  808. 2005-08-19 Christian Perrier <bubulle@debian.org>
  809. * fr.po: Completed (999t).
  810. 2005-08-17 Christian Perrier <bubulle@debian.org>
  811. * *.po: Updated with the dpkg.pot file.
  812. 2005-07-06 Parlin Imanuel <parlin_i@yahoo.com>
  813. * id.po: Updated.
  814. 2005-06-19 Claus Hindsgaul <claus_h@image.dk>
  815. * da.po: Completed.
  816. 2005-06-19 Greek translation team <debian-l10n-greek@lists.debian.org>
  817. * el.po: Completed (one fuzzy left).
  818. 2005-06-14 Miroslav Kure <kurem@upcase.inf.upol.cz>
  819. * cs.po: Completed.
  820. 2005-06-15 Jens Seidel <jensseidel@users.sf.net>
  821. * de.po: automatically spellchecked.
  822. 2005-06-14 Christian Perrier <bubulle@debian.org>
  823. * LINGUAS: De-activate Hebrew.
  824. 2005-06-14 Lele Gaifax <lele@nautilus.homeip.net>
  825. * it.po: Completed.
  826. 2005-06-14 Yuri Kozlov <yuray@id.ru>
  827. * ru.po: Completed.
  828. 2005-06-14 Piarres Beobide Egana <pi@beobide.net>
  829. * eu.po: Completed.
  830. 2005-06-14 Kenshi Muto <kmuto@debian.org>
  831. * ja.po: Completed.
  832. 2005-06-14 Jordi Mallach <jordi@debian.org>
  833. * ca.po: Completed.
  834. 2005-06-13 Christian Perrier <bubulle@debian.org>
  835. * fr.po: Completed.
  836. 2005-05-25 Eddy Petri?or <eddy.petrisor@gmail.com>
  837. * ro.po: Nearly complete translation. :-)
  838. 2005-05-22 Eddy Petri?or <eddy.petrisor@gmail.com>
  839. * ro.po: Better translation.
  840. 2005-05-19 Eddy Petri?or <eddy.petrisor@gmail.com>
  841. * ro.po: Add translation.
  842. * LINGUAS: Add Romanian to the language list.
  843. 2005-03-30 Eric Pareja <xenos@upm.edu.ph>
  844. * tl.po: Add translation.
  845. * LINGUAS: Add Tagalog to the language list.
  846. 2005-03-30 Christian Perrier <bubulle@debian.org>
  847. * dpkg.pot: Regenerated
  848. * *.po: Updated.
  849. * fr.po: Complete translation.
  850. 2005-03-18 Christian Perrier <bubulle@debian.org>
  851. * fr.po: Completed.
  852. 2005-03-18 Christian Perrier <bubulle@debian.org>
  853. * dpkg.pot: Regenerated.
  854. * *.po: Updated.
  855. 2005-03-18 Arief S Fitrianto <arief@gurame.fisika.ui.ac.id>
  856. * id.po: Completed from 1.10 branch (2nd try).
  857. 2005-03-18 Scott James Remnant <scott@netsplit.com>
  858. * POTFILES.in: Removed utils/md5sum.c now it no longer exists.
  859. 2005-03-08 Christian Perrier <bubulle@debian.org>
  860. * fr.po: Missing space added.
  861. 2005-03-03 Arief S Fitrianto <arief@gurame.fisika.ui.ac.id>
  862. * id.po: First version.
  863. 2005-02-20 Konstantinos Margaritis <markos@debian.org>
  864. * el.po: Updated again (complete).
  865. 2005-02-19 Konstantinos Margaritis <markos@debian.org>
  866. * el.po: Updated.
  867. 2005-02-06 Carlos Liu <carlos_liu@yahoo.com>
  868. * zh_CN.po: Updated.
  869. 2005-02-05 Jacobo Tarrio <jtarrio@trasno.net>
  870. * gl.po: Updated.
  871. 2005-02-05 Asho Yeh <asho@ms44.url.com.tw>
  872. * zh_TW.po: Updated.
  873. 2005-01-28 Seo Sanghyeon <tinuviel@sparcs.kaist.ac.kr>
  874. * ko.po: Completed.
  875. 2005-01-25 Christian Perrier <bubulle@debian.org>
  876. * fr.po: Updated.
  877. 2005-01-25 Bjorn Steensrud <bjornst@powertech.no>
  878. * nb.po: Add new Norwegian Bokmal translation.
  879. 2005-01-11 Scott James Remnant <scott@netsplit.com>
  880. * LINGUAS: Rather than just listing the language codes on one
  881. line, put each on its own line with a preceeding comment giving
  882. the English name for the language, the current translator's
  883. name in their preferred form and a contact e-mail address.
  884. 2005-01-11 Safir Šećerović <sapphire@linux.org.ba>
  885. * bs.po: Add new Bosnian translation.
  886. 2005-01-11 Jordi Mallach <jordi@debian.org>
  887. * ca.po: Updated.
  888. 2005-01-11 Miroslav Kure <kurem@debian.cz>
  889. * cs.po: Updated.
  890. 2005-01-11 Claus Hindsgaul <claus_h@image.dk>
  891. * da.po: Updated.
  892. 2005-01-11 Michael Piefel <piefel@debian.org>
  893. * de.po: Updated.
  894. 2005-01-11 George Papamichelakis <george@step.gr>
  895. * el.po: Updated.
  896. 2005-01-11 Javier Fernández-Sanguino Peña <jfs@debian.org>
  897. * es.po: Updated.
  898. 2005-01-11 Piarres Beobide <pi@beobide.net>
  899. * eu.po: Updated.
  900. 2005-01-11 Christian Perrier <bubulle@debian.org>
  901. * fr.po: Updated.
  902. 2005-01-11 Héctor Fernández López <trorrr@yahoo.es>
  903. * gl.po: Updated.
  904. 2005-01-11 Lior Kaplan <webmaster@guides.co.il>
  905. * he.po: Updated.
  906. 2005-01-11 Stefano Canepa <sc@linux.it>
  907. * it.po: Updated.
  908. 2005-01-11 Kenshi Muto <kmuto@debian.org>
  909. * ja.po: Updated.
  910. 2005-01-11 Changwoo Ryu <cwryu@debian.org>
  911. * ko.po: Updated.
  912. 2005-01-11 Bart Cornelis <cobaco@linux.be>
  913. * nl.po: Updated.
  914. 2005-01-11 Håvard Korsvoll <korsvoll@skulelinux.no>
  915. * nn.po: Updated.
  916. 2005-01-11 Bartosz Feñski <fenio@debian.org>
  917. * pl.po: Updated.
  918. 2005-01-11 Miguel Figueiredo <elmig@debianpt.org>
  919. * pt.po: Updated.
  920. 2005-01-11 André Luís Lopes <andrelop@debian.org>
  921. * pt_BR.po: Updated.
  922. 2005-01-11 Yuri Kozlov <yuray@id.ru>
  923. * ru.po: Updated.
  924. 2005-01-11 Roman Benko <benco@acid.sk>
  925. * sk.po: Add new Slovakian translation.
  926. 2005-01-11 Peter Karlsson <peterk@debian.org>
  927. * sv.po: Updated.
  928. 2005-01-11 Tchaikov <chaisave@263.com>
  929. * zh_CN.po: Updated.
  930. 2005-01-11 Asho Yeh <asho@debian.org.tw>
  931. * zh_TW.po: Add new Traditional Chinese translation.
  932. 2005-01-10 Scott James Remnant <scott@netsplit.com>
  933. * POTFILES.in: Update with new file paths.
  934. * dpkg.pot: Remove from version control, it will be automatically
  935. generated through gettext and automake.
  936. * en.po: Remove needless english translation, the default strings
  937. are in english.
  938. * update.sh: Remove update script, files will be automatically
  939. updated through gettext and automake.
  940. * LINGUAS: Store list of available translations in this file, which
  941. is far easier to maintain than having to edit configure.in's
  942. ALL_LINGUAS variable each time.
  943. * Makevars: Updated against current gettext template, with copyright
  944. changed to SPI and bugs address retained from previous version.
  945. Older changes are documented in the top-level ChangeLog