ChangeLog.old 39 KB

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