ChangeLog 38 KB

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