1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329
|
========== af.po ==========
# Afrikaans translation of gnome-session.
# Copyright (C) 2004 Zuza Software Foundation
# This file is distributed under the same license as the gnome-session package.
#
# Zuza Software Foundation <info@translate.org.za>, 2004
#
========== am.po ==========
# Translations into the Amharic Language.
# Copyright (C) 2002 Free Software Foundation, Inc.
# This file is distributed under the same license as the gnome-session package.
# Ge'ez Frontier Foundation <locales@geez.org>, 2002.
#
#
========== ar.po ==========
# translation of gnome-session.HEAD.po to Arabic
# This file is distributed under the same license as the PACKAGE package.
# Copyright (C) 2004 THE PACKAGE'S COPYRIGHT HOLDER
# Sayed Jaffer Al-Mosawi <mosawi@arabeyes.org>, 2002.
# Djihed Afifi <djihed@gmail.com>, 2006.
# Anas Husseini <linux.anas@gmail.com>, 2007.
# Anas Afif Emad <anas.e87@gmail.com>, 2008.
# Khaled Hosny <khaledhosny@eglug.org>, 2006, 2007, 2008, 2009, 2010.
========== as.po ==========
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Amitakhya Phukan <aphukan@fedoraproject.org>, 2009, 2010.
========== ast.po ==========
# translation of gnome-session-2.0.po to Asturian
# Asturian translation for gnome-session
# Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007
# This file is distributed under the same license as the gnome-session package.
#
# FIRST AUTHOR <EMAIL@ADDRESS>, 2007.
# Xose S. Puente <xspuente@gmail.com>, 2007.
========== az.po ==========
# Translation of gnome-session.HEAD.az.po file to Azerbaijani Turkish
# Copyright (C) 200 Free Software Foundation, Inc.
# Vasif Ismailoglu MD <azerb_linux@hotmail.com>, 2000, 2001, 2002.
# Mətin Əmirov <metin@karegen.com>, 2002, 2003, 2004
#
========== be.po ==========
# translation of gnome-session.gnome-2-2.be.po to belarusian
# Copyright (C) 2003 Free Software Foundation, Inc.
# Vital Khilko <dojlid@mova.org>, 2003.
# Ihar Hrachyshka <ihar.hrachyshka@gmail.com>, 2006.
# Alexander Nyakhaychyk <nyakhaychyk@gmail.com>, 2006, 2008, 2009.
========== be@latin.po ==========
# Biełaruski pierakład gnome-session
# Vital Khilko <dojlid@mova.org>, 2003.
# Ales Nyakhaichyk <nab@mail.by>, 2006.
# Ihar Hrachyshka <ihar.hrachyshka@gmail.com>, 2006, 2007.
#
========== bg.po ==========
# Bulgarian translation of gnome-session po-file.
# Copyright (C) 2001, 2002, 2004, 2005, 2006 Free Software Foundation, Inc.
# Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
# Pavel Cholakov <pavel@linux.zonebg.com>, 2001.
# Yanko Kaneti <yaneti@declera.com>, 2002.
# Alexander Shopov <ash@kambanaria.org>, 2002, 2005, 2006, 2007, 2009, 2010.
# Vladimir "Kaladan" Petkov <kaladan@gmail.com>, 2004, 2005.
# Peter Slavov <pslavov@i-space.org>, 2004
# Yavor Doganov <yavor@gnu.org>, 2008.
# Damyan Ivanov <dam+gnome@ktnx.net>, 2010.
#
========== bn.po ==========
# Bengali translation of gnome-session.
# Copyright (C) 2003, 2006, 2008, 2009 Free Software Foundation, Inc.
# This file is distributed under the same license as the gnome-session package.
#
# Taneem Ahmed <taneem@bengalinux.org>, 2003.
# Khandakar Mujahidul Islam <suzan229@yahoo.com>, 2003-2005.
# Runa Bhattacharjee <runab@fedoraproject.org>, 2008.
# Runa Bhattacharjee <runab@redhat.com>, 2008, 2009.
# Loba Yeasmeen <loba@ankur.org.bd>, 2009.
# Israt Jahan <israt@ankur.org.bd>, 2010.
#
========== bn_IN.po ==========
# translation of bn_IN.po to Bengali INDIA
# Taneem Ahmed <taneem@bengalinux.org>, 2003.
# Khandakar Mujahidul Islam <suzan229@yahoo.com>, 2003-2005.
# Runa Bhattacharjee <runab@fedoraproject.org>, 2008.
# Runa Bhattacharjee <runab@redhat.com>, 2008, 2009, 2010.
# Bengali India translation of gnome-session.
# Copyright (C) 2003, 2006, 2008, 2009, 2010 Free Software Foundation, Inc.
# This file is distributed under the same license as the gnome-session package.
========== br.po ==========
# Breton translation for gnome-session
# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006
# This file is distributed under the same license as the gnome-session package.
# Giulia <EMAIL@ADDRESS>, 2006.
# Jeremy <EMAIL@ADDRESS>, 2006
# Jamy <jamybzh@free.fr>, 2009
#
#
#
========== bs.po ==========
# translation of gnome-session.HEAD.bs.po to Bosnian
# Bosnian translation of gnome-session.
# Copyright (C) 2002
# This file is distributed under the same license as the gnome-session package.
# Samir Marić <samir@lugbih.org>, 2002.
# Kemal Sanjta <gomez@lugzdk.ba>, 2004.
#
========== ca.po ==========
# gnome-session translation to Catalan.
# Copyright © 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
# Ivan Vilata i Balaguer <ivan@selidor.net>, 2000.
# Softcatalà <info@softcatala.org>, 2000.
# Jordi Mallach <jordi@sindominio.net>, 2002, 2003, 2004, 2005, 2006, 2007.
# Josep Puigdemont <josep.puigdemont@gmail.com>, 2007.
# David Planella <david.planella@gmail.com>, 2008, 2009, 2010.
#
========== ca@valencia.po ==========
# gnome-session translation to Catalan.
# Copyright © 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
# Ivan Vilata i Balaguer <ivan@selidor.net>, 2000.
# Softcatalà <info@softcatala.org>, 2000.
# Jordi Mallach <jordi@sindominio.net>, 2002, 2003, 2004, 2005, 2006, 2007.
# Josep Puigdemont <josep.puigdemont@gmail.com>, 2007.
# David Planella <david.planella@gmail.com>, 2008, 2009.
#
========== crh.po ==========
# Qırımtatarca translation of gnome-session.
# This file is distributed under the same license as the gnome-session package.
#
# Reşat SABIQ <tilde.birlik@gmail.com>, 2009.
========== cs.po ==========
# Translation of gnome-session to Czech.
# Copyright (C) 1999, 2003, 2007, 2008, 2009, 2010 the author(s) of gnome-session.
# Copyright (C) 2004, 2005, 2006 Miloslav Trmac <mitr@volny.cz>.
# This file is distributed under the same license as the gnome-session package.
# GIS <gis@academy.cas.cz>, 1999.
# David Šauer <davids@penguin.cz>, 1999.
# George Lebl <jirka@5z.com>, 2000, 2001.
# Stanislav Brabec <utx@penguin.cz>, 2000, 2001.
# Michal Bukovjan <bukm@centrum.cz>, 2002, 2003.
# Miloslav Trmac <mitr@volny.cz>, 2004, 2005, 2006.
# Petr Tomeš <ptomes@gmail.com>, 2006.
# Petr Kovar <pknbe@volny.cz>, 2007, 2008, 2009, 2010.
========== cy.po ==========
# gnome-session yn Gymraeg.
# Copyright (C) 2003 Free Software Foundation, Inc.
# www.gyfieithu.co.uk <kyfieithu@dotmon.com>, 2003.
# and contributors
#
========== da.po ==========
# translation of gnome-session.HEAD.po to Dansk
# Danish translation of gnome-session.
# Copyright (C) 1998-2009 Free Software Foundation, Inc.
# This file is distributed under the same license as the gnome-session package.
#
# Konventioner:
#
# dialog -> vindue
# hints -> tip
# splash screen -> velkomstvindue
# start up -> starter
# tasklist -> procesliste
# URL -> adresse
#
# Kenneth Christiansen <kenneth@ripen.dk>, 1998-2000.
# Birger Langkjer <birger.langkjer@image.dk>, 1999.
# Keld Simonsen <keld@dkuug.dk>, 2000-2001.
# Ole Laursen <olau@hardworking.dk>, 2001, 02, 03.
# Martin Willemoes Hansen <mwh@sysrq.dk>, 2004, 05.
# Lasse Bang Mikkelsen <lbm@fatalerror.dk>, 2007.
# Peter Bach <bach.peter@gmail.com>, 2007.
# Ask Hjorth Larsen <asklarsen@gmail.com>, 2007.
# Kenneth Nielsen <k.nielsen81@gmail.com>, 2008-2009.
# M.P. Rommedahl <Lhademmor@gmail.com>, 2008.
#
========== de.po ==========
# German translation file for gnome-session.
# Copyright (C) 1998-2002, 2007 Free Software Foundation, Inc.
# Carsten Schaar <nhadcasc@fs-maphy.uni-hannover.de>, 1998.
# Matthias Warkus <mawa@iname.com>, 1999-2001.
# Karl Eichwalder <ke@suse.de>, 2000, 2001.
# Christian Meyer <chrisime@gnome.org>, 2000, 2001.
# Benedikt Roth <Benedikt.Roth@gmx.net>, 2000, 2001.
# Jörgen Scheibengruber <mfcn@gmx.de>, 2002.
# Christian Neumair <chris@gnome-de.org>, 2002, 2003, 2004.
# Hendrik Richter <hendrikr@gnome.org>, 2005, 2006, 2007, 2008.
# Jochen Skulj <jochen@jochenskulj.de>, 2006.
# Andre Klapper <ak-47@gmx.net>, 2007.
# Mario Blättermann <mariobl@gnome.org>, 2008, 2010.
# Wolfgang Stöggl <c72578@yahoo.de>, 2009.
# Christian Kirbach <Christian.Kirbach@googlemail.com>, 2009, 2010.
#
========== dz.po ==========
# Dzongkha translation of gnome-session
# Copyright @ 2006 Free Software Foundation, Inc.
# Mindu Dorji
#
========== el.po ==========
# Greek translation of gnome-session
# Copyright (C) 1999 ~ 2009 Free Software Foundation, Inc.
#
# Comment: Most of the work done by Spiros (around 600 messages).
# Comment: Simos/Sarantis did 12%.
# Comment: Simos/Sarantis did review.
# Comment: Simos did 10 new/unfuzzy 30.
# Comment: Simos did 3 new/unfuzzy 1.
# Comment: Simos did 2 new/unfuzzy 8.
# Comment: Simos did 6 new/unfuzzy 8.
# Comment: Simos did 2 new/unfuzzy 5.
# Split from gnome-core as gnome-session.
# kostas: 10Dec2002, updated translation for Mate 2.1x
# kostas: 26Jan2003, one more update.
# kostas:03Aug2003, updated translation for Mate2.4
# nikos: 06Sep2003, review
# kostas:12Nov2003.fixes
#
# simos: 874 messages, 18Feb2001, (sgpbea).
# simos: 897 messages, 01Mar2001, (regmtsgpbea).
# simos: 959 messages, 04Jun2001, (micumple).
# simos: 959 messages, 06Jun2001, (fixed minor typo).
# simos: 897 messages, 28Nov2001, (feeling good to translate HEAD).
# simos: 112 messages, 20Apr2002, complete translation.
# simos: 96 messages, 19Aug2992, compelte translation.
# Spiros Papadimitriou <spapadim+@cs.cmu.edu>, 1999.
# Simos Xenitellis <simos@hellug.gr>, 1999, 2000, 2001, 2002,.
# Sarantis Paskalis <paskalis@di.uoa.gr>, 2000.
# Kostas Papadimas <pkst@gmx.net>, 2003.
# Nikos Charonitakis <frolix68@yahoo.gr>, 2003.
# Kostas Papadimas <pkst@gnome.org>, 2003, 2005, 2006, 2008.
# Jennie Petoumenou <epetoumenou@gmail.com>, 2009.
========== en@shaw.po ==========
# Shavian translation for gnome-session.
# Copyright (C) 2009 The GNOME Foundation.
# Thomas Thurman <tthurman@gnome.org>, 2009.
========== en_CA.po ==========
# Canadian English translation of gnome-session
# Copyright (C) 2004-2006 Adam Weinberger and the GNOME Foundation
# This file is distributed under the same licence as the gnome-session package.
# Adam Weinberger <adamw@gnome.org>, 2004, 2005, 2006.
#
#
========== en_GB.po ==========
# English (British) translation of gnome-session
# Copyright (C) 1999-2000 Free Software Foundation, Inc.
# Robert Brady <robert@susu.org.uk>, 1999-2000.
# Philip Withnall <philip@tecnocode.co.uk>, 2009, 2010.
#
========== eo.po ==========
# Esperanto translation of gnome-session
# Copyright (C) 2003 Free Software Foundation, Inc.
# This file is distributed under the same license as the gnome-session package.
#
# Joël BRICH <joel.brich@laposte.net>, 2003.
# Guillaume SAVATON <llumeao@tuxfamily.org>, 2006
# Dominique PELLÉ <dominique.pelle@free.fr>, 2006
# Joop EGGEN <joop_eggen@yahoo.de>, 2008.
# Chris PAVLINA <Pavlina.Chris@gmail.com>, 2008.
# Michael MORONI, <haikara90@gmail.com >, 2009.
# Donald ROGERS, <dero2648@clear.net.nz>, 2009.
# Benno SCHULENBERG <bensberg@justemail.net>, 2010
# Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>, 2009, 2010.
#
========== es.po ==========
# translation of gnome-session.master.po to Español
# gnome-session Spanish translation.
# Copyright © 1998-2003, 2006, 2007, 2008 the Free Software Foundation, Inc.
# Pablo Saratxaga <srtxg@chanae.alphanet.ch> 1999-2000
# Javier Gómez <jgomsi@apolo.umh.es> 2000
# Juanjo Alvarez 2000
# Ismael Olea <olea@hispafuentes.com> 2000
# Manuel de Vega Barreiro <barreiro@arrakis.es> 2000
# Juan Manuel García Molina <juanma_gm@wanadoo.es> 2001-2002.
#
# Miguel de Icaza,computo,622-4680 <miguel@metropolis.nuclecu.unam.mx> 1998.
# Francisco Javier F. Serrador <serrador@arrakis.es>, 2003.
# Francisco Javier F. Serrador <serrador@cvs.gnome.org>, 2005, 2006.
# Jorge González <jorgegonz@svn.gnome.org>, 2007, 2009, 2010.
#
========== et.po ==========
# GNOME seansi eesti keele tõlge.
# Estonian translation of gnome-session.
#
# Copyright (C) 1999, 2001, 2002, 2004-2006 Free Software Foundation, Inc.
# Copyright (C) 2006–2010 The GNOME Project.
#
# Lauris Kaplinski <lauris@ariman.ee>, 1999.
# Ilmar Kerm <ikerm@hot.ee>, 2001, 2002.
# Tõivo Leedjärv <toivo@linux.ee>, 2002.
# Priit Laes <amd@store20.com>, 2004-2006.
# Ivar Smolin <okul@linux.ee>, 2005–2010.
#
========== eu.po ==========
# translation of eu.po to Basque
# Copyright (C) 1999, 2004, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
#
# Joseba Bidaurrazaga van Dierdonck <gcpbivaj@lg.ehu.es>, 2000.
# Hizkuntza Politikarako Sailburuordetza <hizpol@ej-gv.es>, 2004.
# Iñaki Larrañaga Murgoitio <dooteo@euskalgnu.org>, 2005, 2006, 2007, 2008, 2009, 2010.
# Iñaki Larrañaga Murgoitio <dooteo@zundan.com>, 2007.
========== fa.po ==========
# Persian translation of gnome-session.
# Copyright (C) 2002, 2003, 2005, 2006 Sharif FarsiWeb, Inc.
# This file is distributed under the same license as gnome-session package.
# Roozbeh Pournader <roozbeh@farsiweb.info>, 2002, 2003.
# Elnaz Sarbar <elnaz@farsiweb.info>, 2005, 2006.
# Meelad Zakaria <meelad@farsiweb.info>, 2006.
#
========== fi.po ==========
# gnome-session Finnish translation
# Copyright (C) 2002-2009 Free Software Foundation, Inc.
# Ville Hautamäki <villeh@cs.joensuu.fi>, 1998, 2000
# Mikko Rauhala <mjr@iki.fi>, 1999
# Pauli Virtanen <pauli.virtanen@hut.fi>, 2000-2005
# Ilkka Tuohela <hile@iki.fi>, 2005-2009
# Mikko Piippo (https://launchpad.net/~piippo-cc), 2008
# Timo Jyrinki <timo.jyrinki@iki.fi>, 2008-2010
#
========== fr.po ==========
# French translation of gnome-session.
# Copyright (C) 1998-2010 Free Software Foundation, Inc.
#
# Vincent Renardias <vincent@ldsol.com>, 1998-2000.
# Joaquim Fellmann <joaquim@hrnet.fr>, 2000.
# Christophe Merlet <redfox@redfoxcenter.org>, 2000-2006.
# Sun G11n <gnome_int_l10n@ireland.sun.com>, 2002.
# Laurent Richard <laurent.richard@ael.be>, 2006.
# Damien Durand <splinux@fedoraproject.org>, 2006.
# Robert-André Mauchin <zebob.m@pengzone.org>, 2006-2008.
# Claude Paroz <claude@2xlibre.net>, 2007-2010.
# Jonathan Ernst <jonathan@ernstfamily.ch>, 2007.
# Stéphane Raimbault <stephane.raimbault@gmail.com>, 2008.
# Frédéric Péters <fpeters@0d.be>, 2008.
# Bruno Brouard <annoa.b@gmail.com>, 2009
#
========== fur.po ==========
# Friulian traslation for gnome-session
# Copyright (C) 2007 Free Software Foundation, Inc.
# Massimo Furlani <massimo.furlani@libero.it>, 2007.
#
========== fy.po ==========
# Frisian translation for gnome-session
#
# This file is distributed under the same license as the gnome-session package.
# Sietse <>, 2009.
# Sense Hofstede <sense@ubuntu.com>, 2010.
#
========== ga.po ==========
# Irish translations for gnome-session package.
# Copyright (C) 2000-2009 Free Software Foundation, Inc.
# This file is distributed under the same license as the gnome-session package.
# Seán Ó Ceallaigh <s_oceallaigh@yahoo.com>, 2000.
# Paul Duffy <dubhthach@frink.nuigalway.ie>, 2003.
# Seán de Búrca <leftmostcat@gmail.com>, 2007-2009.
#
========== gl.po ==========
# translation of gnome-session.master.po to Galician
# Galician translation of gnome-session.
# Copyright (C) 1999-2004 Jesús Bravo Álvarez
#
# Proxecto Trasno - Adaptación do software libre á lingua galega: Se desexas
# colaborar connosco, podes atopar máis información en http://www.trasno.net
#
# First Version: 2002-04-06 14:23+0200
#
#
# Jesús Bravo Álvarez <suso@trasno.net>, 1999-2004.
# Ignacio Casal Quinteiro <nacho.resa@gmail.com>, 2005, 2006.
# Ignacio Casal Quinteiro <icq@cvs.gnome.org>, 2007.
# Ignacio Casal Quinteiro <icq@svn.gnome.org>, 2008.
# Mancomún - Centro de Referencia e Servizos de Software Libre <g11n@mancomun.org>, 2009.
# Antón Méixome <meixome@mancomun.org>, 2009.
# Fran Diéguez <frandieguez@ubuntu.com>, 2010.
# Fran Dieguez <frandieguez@ubuntu.com>, 2009, 2010.
#
========== gu.po ==========
# translation of gnome-session.master.gu.po to Gujarati
# MagNet <magnet@magnet-i.com>, 2004.
# Ankit Patel <ankit@redhat.com>, 2004, 2005, 2007, 2009.
# Ankit Patel <ankit644@yahoo.com>, 2006.
# Sweta Kothari <swkothar@redhat.com>, 2009, 2010.
# Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010 Free Software Foundation, Inc.
========== ha.po ==========
========== he.po ==========
# translation of gnome-session.HEAD.he.po to Hebrew
# translation of gnome-session.gnome-2-0.po to Hebrew
# This file is distributed under the same license as the PACKAGE package.
# Copyright (C) 2006 THE PACKAGE'S COPYRIGHT HOLDER.
# Gil Osher <dolfin@rpg.org.il>, 2002, 2005.
# Gil 'Dolfin' Osher <dolfin@rpg.org.il>, 2002,2003.
#
========== hi.po ==========
# translation of gnome-session.master.po to Hindi
# This file is distributed under the same license as the PACKAGE package.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
#
#
# Rajesh Ranjan <rranjan@redhat.com>, 2005, 2006, 2009.
# Rajesh Ranjan <rajesh672@gmail.com>, 2009.
========== hr.po ==========
# Translation of gnome-session to Croatiann
# Copyright (C) Croatiann team
# Translators: Automatski Prijevod <>,Denis Lackovic <delacko@fly.srk.fer.hr>,Robert Sedak <robert.sedak@sk.tel.hr>,
========== hu.po ==========
# Hungarian translation of gnome-session.
# Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
# This file is distributed under the same license as the gnome-session package.
#
# Szabolcs Ban <shooby at gnome dot hu>, 1998, 1999, 2000, 2001, 2002.
# Emese Kovacs <emese at gnome dot hu>, 2000, 2001, 2002.
# Andras Timar <timar at gnome dot hu>, 2001, 2002, 2003.
# Laszlo Dvornik <dvornik at gnome dot hu>, 2004.
# Gabor Kelemen <kelemeng at gnome dot hu>, 2004, 2005, 2006, 2007, 2008, 2009, 2010.
# Mate ORY <orygnome at gmail d0t com>, 2006, 2008.
========== hy.po ==========
# translation of gnome-session.HEAD.hy.po to armenian
# This file is distributed under the same license as the PACKAGE package.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER, 2005.
#
========== id.po ==========
# Indonesia translation of gnome-session.
# Copyright (C) 2005 THE gnome-session'S COPYRIGHT HOLDER
# This file is distributed under the same license as the gnome-session package.
#
# Mohammad DAMT <mdamt@bisnisweb.com>, 2005.
# Dirgita <dirgitadevina@yahoo.co.id>, 2010.
# Dirgita <dirgitadevina@gmail.com>, 2010.
# Andika Triwidada <andika@gmail.com>, 2010.
========== ig.po ==========
========== is.po ==========
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
# Samúel Jón Gunnarsson <sammi@techattack.nu>, 2003.
# Richard Allen <ra@ra.is>, 2003
========== it.po ==========
# Italian translation for gnome-session
# This file is distributed under the same license as gnome-session package
# Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
# Christopher R. Gabriel <cgabriel@pluto.linux.it>, 1997, 1998, 1999, 2000, 2001, 2002.
#
# Luca Ferretti <elle.uca@libero.it>, 2004, 2005, 2006, 2007, 2008, 2009, 2010.
========== ja.po ==========
# gnome-session ja.po.
# Copyright (C) 1998-2010 Free Software Foundation, Inc.
# Yukihiro Nakai <Nakai@abricot.co.jp>, 1998.
# Yasuyuki Furukawa <yasu@on.cs.keio.ac.jp>, 1999.
# Eiichiro ITANI <emu@ceres.dti.ne.jp>, 1999.
# Takayuki KUSANO <AE5T-KSN@asahi-net.or.jp>, 1999-2002, 2009-2010.
# Yuusuke Tahara <tahara@gnome.gr.jp>, 2000.
# Shingo Akagaki <dora@kondara.org>, 2000.
# Akira TAGOH <tagoh@gnome.gr.jp>, 2001.
# Ryoichi INAGAKI <ryo1@bc.wakwak.com>, 2002.
# Satoru SATOH <ss@gnome.gr.jp>, 2006.
# Takeshi AIHANA <takeshi.aihana@gmail.com>, 2003-2009.
#
========== ka.po ==========
# translation of gnome-sessions.po to Georgian
# Vladimer Sichinava ვლადიმერ სიჭინავა <vsichi@gnome.org>, 2007.
# Georgian translation for Mate Session.
# Copyright © 2006 Ubuntu Georgian Translators.
# Vladimer Sichinava ვლადიმერ სიჭინავა <vsichi@gnome.org>, 2008.
========== kn.po ==========
# translation of gnome-session.master.kn.po to Kannada
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Shankar Prasad <svenkate@redhat.com>, 2008, 2009, 2010.
========== ko.po ==========
# gnome-session Korean message translation
# This file is distributed under the same license as the gnome-session package.
#
# Updated by Sung-Hyun Nam <namsh@kldp.org>, 2000
# Updated by Young-Ho Cha <ganadist@chollian.net>, 2000,2001,2006,2007
# Changwoo Ryu <cwryu@debian.org>, 1998, 2002-2006, 2007, 2008, 2009, 2010.
#
========== ku.po ==========
# translation of gnome-session.HEAD.po to Kurdish
# This file is distributed under the same license as the PACKAGE package.
# Copyright (C) 2008 THE PACKAGE'S COPYRIGHT HOLDER.
# Erdal Ronahi <erdal.ronahi@gmail.com, pckurd@hotmail.com>, 2005.
#
========== lt.po ==========
# translation of gnome-session.HEAD.po to Lithuanian
# Lithuanian translation of gnome-session
# Copyright (C) 2000-2006, 2007, 2008 Free Software Foundation, Inc.
#
#
# Gediminas Paulauskas <menesis@delfi.lt>, 2000-2003.
# Žygimantas Beručka <zygis@gnome.org>, 2003-2007.
# Justina Klingaitė <justina.klingaite@gmail.com>, 2005.
# Gintautas Miliauskas <gintas@akl.lt>, 2006, 2007, 2008.
========== lv.po ==========
# translation of lv.po to Latvian
# Latvian translation for Mate Session.
# Copyright © 2006 Mate i18n Project for Latvian.
#
# P�eris Krij�is <peterisk@apollo.lv>, 2000.
# Artis Trops <hornet@navigators.lv>, 2000.
# Raivis Dejus <orvils@gmail.com>, 2006, 2009.
# Rūdolfs Mazurs <rudolfs.mazurs@gmail.com>, 2010.
========== mai.po ==========
# translation of gnome-session.master.po to Maithili
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Sangeeta Kumari <sangeeta09@gmail.com>, 2009.
========== mg.po ==========
# MALAGASY TRANSLATION OF GNOME-SESSION.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# Thierry Randrianiriana <randrianiriana@gmail.com>, 2006.
========== mi.po ==========
# Māori translation of gnome-session.
# Copyright (C) 2004 Free Software Foundation
# This file is distributed under the same license as the gnome-session package.
# John C Barstow <jbowtie@amathaine.com>, 2004.
#
#
========== mk.po ==========
# translation of gnome-session.HEAD.mk.po to Macedonian
# Copyright (C) 2002, 2006, 2007, 2008 Free Software Foundation, Inc.
#
# Ivan Stojmirov<stojmir@linux.net.mk>, 2002.
# Arangel Angov <ufo@linux.net.mk>, 2006, 2008.
# Jovan Naumovski <jovan@lugola.net>, 2006, 2007, 2008.
# Arangel Angov <arangel@linux.net.mk>, 2007.
========== ml.po ==========
# translation of gnome-session.master.ml.po to
# This file is distributed under the same license as the gnome-session package.
# Copyright (C) 2003-2008 gnome-session'S COPYRIGHT HOLDER.
#
# FSF-India <locale@gnu.org.in>, 2003.
# Ani Peter <apeter@redhat.com>, 2006.
# Hari Vishnu <harivishnu@gmail.com>, 2008.
# Praveen Arimbrathodiyil <pravi.a@gmail.com>, 2008.
========== mn.po ==========
# translation of gnome-session.gnome-2-4.po to Mongolian
# translation of gnome-session.HEAD.po to Mongolian
# translation of mn.po to Mongolian
# translation of gnome-session.HEAD.mn.po to Mongolian
# This file is distributed under the same license as the PACKAGE package.
# SukhOchir <sukhochir@csms.edu.mn>,
# Bayarsaihan <bijinhenemongol@yahoo.com>
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
# Sanlig Badral <badral@chinggis.com>, 2003.
# Sanlig Badral <Badral@openmn.org>, 2003.
# Sanlig Badral <badral@openmn.org>, 2003.
#
========== mr.po ==========
# translation of mr.po to Marathi
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# THIRD AUTHOR: Rahul Bhalerao <b.rahul.pm@gmail.com>, 2006.
# FOURTH AUTHOR: Sandeep Shedmake <sandeep.shedmake@gmail.com>, 2008, 2009.
# Sandeep Shedmake <sshedmak@redhat.com>, 2009, 2010.
# FIRST AUTHOR: Swapnil Hajare <dreamil1000a@yahoo.com>
# SECOND AUTHOR: Pradeep Deshpande
========== ms.po ==========
# gnome-session Bahasa Melayu (ms)
# Melihat Sistem kehakiman masa kini, Saya tak hairan
# kalau saya disabitkan dengan kesalahan mendera isteri
# ketika saya masih BUJANG
#
# Hasbullah Bin Pit (sebol) <sebol@ikhlas.com>, 2001-2003
#
========== nb.po ==========
# Norwegian translation of gnome-session (bokmål dialect).
# Copyright (C) 1998-2004 Free Software Foundation, Inc.
# Kjartan Maraas <kmaraas@gnome.org>, 1998-2010.
#
========== nds.po ==========
# Low German translation for gnome-session.
# Copyright (C) 2009 gnome-session's COPYRIGHT HOLDER
# This file is distributed under the same license as the gnome-session package.
# Nils-Christoph Fiedler <fiedler@medienkompanie.de>, 2009.
#
========== ne.po ==========
# translation of gnome-session.HEAD.ne.po to Nepali
# Nepali translation of gnome-session
# This file is distributed under the same license as the gnome-session package.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
#
# Pawan Chitrakar <pawan@nplinux.org>, 2004.
# Shiva Prasad Pokharel <pokharelshiva@hotmail.com>, 2005.
# Nabin Gautam <nabin@mpp.org.np>, 2007.
========== nl.po ==========
# Dutch translation for gnome-session
#
# This file is distributed under the same license as the gnome-session package.
#
# Copyright (C) 1998 Free Software Foundation, Inc.
# Dirk-Jan C. Binnema <djcb@dds.nl>, 1998, 1999
# Dennis Smit <synap@area101.penguin.nl>, 2000
# Almer S. Tigelaar <almer1@dds.nl>, 2000
# Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>, 2001
# Huib Kleinhout <huib@stack.nl>, 2002
# Ronald Hummelink <ronald@hummelink.xs4all.nl>, 2002
# Jeroen van der Vegt <A.J.vanderVegt@its.tudelft.nl>, 2002
# Reinout van Schouwen <reinout@cs.vu.nl>, 2003
# Tino Meinen <a.t.meinen@chello.nl> 2005, 2006, 2008
# Wouter Bolsterlee <wbolster@gnome.org>, 2007–2009
#
========== nn.po ==========
# translation of nn.po to Norwegian Nynorsk
# Norwegian (nynorsk) translation of gnome-core.
# Copyright (C) 1998-2000, 2003, 2006, 2008 Free Software Foundation, Inc.
#
# Christian Fredrik Kalager Schaller <Uraeus@linuxrising.org>, 2000-2001.
# Kjartan Maraas <kmaraas@gnome.org>, 2001.
# Roy-Magne Mo <rmo@sunnmore.net>, 2001-2002.
# Monica Gausen <monica@gausen.net>, 2001.
# Åsmund Skjæveland <aasmunds@fys.uio.no>, 2003, 2006.
# Eskild Hustvedt <eskildh@gnome.org>, 2008.
# Torstein Adolf Winterseth <kvikende@yahoo.no>, 2010.
========== nso.po ==========
# Northern Sotho translation of gnome-session.
# Copyright (C) 2004 Zuza Software Foundation
# This file is distributed under the same license as the gnome-session package.
#
# Zuza Software Foundation <info@translate.org.za>, 2004
#
========== oc.po ==========
# Translation of oc.po to Occitan
# Occitan translation of gnome-session.
# Copyright (C) 2007 Free Software Foundation, Inc.
# This file is released under the same license as the gnome-session package.
#
# Yannig Marchegay (Kokoyaya) <yannig@marchegay.org>, 2007.
========== or.po ==========
# translation of gnome-session.master.or.po to Oriya
# This file is distributed under the same license as the PACKAGE package.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
#
# Subhransu Behera <arya_subhransu@yahoo.co.in>, 2006.
# Manoj Kumar Giri <mgiri@redhat.com>, 2009, 2010.
========== pa.po ==========
# translation of gnome-session.HEAD.po to Punjabi
# Copyright (C) 2004 THE gnome-session'S COPYRIGHT HOLDER
#
#
# Amanpreet Singh Alam <amanliunx@netscapet.net>, 2004.
# Amanpreet Singh Alam <aalam@users.sf.net>, 2005, 2007, 2008.
# A S Alam <aalam@users.sf.net>, 2009, 2010.
========== pl.po ==========
# Polish translation for gnome-session.
# Copyright © 1998-2010 the gnome-session authors.
# This file is distributed under the same license as the gnome-session package.
# Zbigniew Chyla <chyla@alice.ci.pwr.wroc.pl>, 1998-2003.
# Kuba Winnicki <bw@idc.com.pl>, 1999.
# Artur Flinta <aflinta@at.kernel.pl>, 2003-2007.
# Wadim Dziedzic <wdziedzic@aviary.pl>, 2007.
# Tomasz Dominikowski <dominikowski@gmail.com>, 2007-2009.
# Piotr Drąg <piotrdrag@gmail.com>, 2010.
# Aviary.pl <gnomepl@aviary.pl>, 2007-2010.
#
========== ps.po ==========
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the gnome-session package.
# Zabeeh Khan <zabeehkhan@gmail.com>, 2008.
#
========== pt.po ==========
# gnome-session's Portuguese translation
# Copyright © 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 gnome-session
# Distributed under the same licence as the gnome-session package
# Nuno Ferreira <nmrf@rnl.ist.utl.pt>, 1999
# Duarte Loreto <happyguy_pt@hotmail.com>, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010.
#
========== pt_BR.po ==========
# Brazilian Portuguese translation of gnome-session.
# Copyright (C) 1999-2007 Free Software Foundation, Inc.
# This file is distributed under the same license as the gnome-session package.
# Elvis Pfützenreuter <epx@netville.com.br>
# Sandro Nunes Henrique <sandro@conectiva.com.br>
# Rodrigo Stulzer Lopes <rodrigo@conectiva.com.br>
# Ricardo Soares Guimarães <ricardo@conectiva.com.br>
# Gustavo Maciel Dias Vieira <gustavo@sagui.org>, 2000-2001.
# Evandro Fernandes Giovanini <evandrofg@ig.com.br>, 2002-2005.
# Og Maciel <ogmaciel@ubuntu.com>, 2007-2009.
# Vladimir Melo <vmelo@gnome.org>, 2008.
# Leonardo Ferreira Fontenelle <leonardof@gnome.org>, 2008.
# Djavan Fagundes <dnoway@gmail.com>, 2008.
# André Gondim <andregondim@ubuntu.com>, 2009.
#
========== ro.po ==========
# Sebastian Ivan <sebastian.ivan@ubuntu.ro>, 2006.
# Eddy Petrișor <eddy.petrisor@gmail.com>, 2006.
# Adi Roiban https://launchpad.net/~adiroiban, 2008, 2009
# Lucian Adrian Grijincu <lucian.grijincu@gmail.com>, 2009
========== ru.po ==========
# translation of gnome-session to Russian
# Copyright (C) 1998-2002, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
#
# Max Valianskiy <maxcom@vinchi.ru>, 1998-1999.
# Sergey Panov <sipan@mit.edu>, 1999.
# Valek Filippov <frob@df.ru>, 2000-2002.
# Dmitry G. Mastrukov <dmitry@taurussoft.org>, 2002-2003.
# Leonid Kanter <leon@asplinux.ru>, 2004, 2005, 2006, 2007, 2008.
# Anisimov Victor <vicanis@gmail.com>, 2009.
========== rw.po ==========
# translation of gnome-session to Kinyarwanda.
# Copyright (C) 2005 Free Software Foundation, Inc.
# This file is distributed under the same license as the gnome-session package.
# Steve Murphy <murf@e-tools.com>, 2005
# Steve performed initial rough translation from compendium built from translations provided by the following translators:
# Philibert Ndandali <ndandali@yahoo.fr>, 2005.
# Viateur MUGENZI <muvia1@yahoo.fr>, 2005.
# Noëlla Mupole <s24211045@tuks.co.za>, 2005.
# Carole Karema <karemacarole@hotmail.com>, 2005.
# JEAN BAPTISTE NGENDAHAYO <ngenda_denis@yahoo.co.uk>, 2005.
# Augustin KIBERWA <akiberwa@yahoo.co.uk>, 2005.
# Donatien NSENGIYUMVA <ndonatienuk@yahoo.co.uk>, 2005..
#
========== si.po ==========
# translation of gnome-session.si.po to Sinhala
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Danishka Navin <snavin@redhat.com>, 2007.
========== sk.po ==========
# Slovak translation for gnome-session.
# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
# This file is distributed under the same license as the gnome-session package.
# Stanislav Višňovský <visnovsky@nenya.ms.mff.cuni.cz>, 2002, 2003.
# Stanislav Visnovsky <visnovsky@kde.org>, 2003.
# Peter Tuharsky <tuharsky@misbb.sk>, 2007.
# Marcel Telka <marcel@telka.sk>, 2005, 2006, 2008.
# Pavol Šimo <palo.simo@gmail.com>, 2009, 2010.
#
========== sl.po ==========
# Slovenian translation of gnome-session.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the gnome-session package.
#
# Andraž Tori <andraz.tori1@guest.arnes.si> 2000.
# Matej Urbančič <gnomeju@svn.gnome.org>, 2007 - 2010.
#
========== sq.po ==========
# Përkthimi i mesazheve të gnome-session në shqip
# Copyright (C) 2006 Free Software Foundation, Inc.
# Deep_Dark <epidamus@netscape.net>, 2002.
# Laurent Dhima <laurenti@alblinux.net>, 2003, 2004, 2005, 2006.
# Elian Myftiu <elian@alblinux.net>, 2007
#
#
========== sr.po ==========
# Serbian translation of gnome-session
# Courtesy of Prevod.org team (http://prevod.org/) -- 2003 - 2009
#
# This file is distributed under the same license as the gnome-session package.
#
# Maintainer: Данило Шеган <danilo@gnome.org>
# Reviewed on 2005-07-10 by Данило Шеган <danilo@gnome.org>
# Translated on 2006-01-30 by: Слободан Д. Средојевић <slobo@akrep.be>
# Милош Поповић <gpopac@gmail.com>, 2010.
#
========== sr@latin.po ==========
# Serbian translation of gnome-session
# Courtesy of Prevod.org team (http://prevod.org/) -- 2003 - 2009
#
# This file is distributed under the same license as the gnome-session package.
#
# Maintainer: Danilo Šegan <danilo@gnome.org>
# Reviewed on 2005-07-10 by Danilo Šegan <danilo@gnome.org>
# Translated on 2006-01-30 by: Slobodan D. Sredojević <slobo@akrep.be>
# Miloš Popović <gpopac@gmail.com>, 2010.
#
========== sv.po ==========
# Swedish messages for gnome-session.
# Copyright (C) 1998-2010 Free Software Foundation, Inc.
# Martin Wahlen <mva@sbbs.se>, 1998.
# Anders Carlsson <anders.carlsson@tordata.se>, 1999.
# Andreas Hyden <a.hyden@cyberpoint.se>, 2000.
# Martin Norbäck <d95mback@dtek.chalmers.se>, 2000, 2001.
# Christian Rose <menthos@menthos.com>, 2000, 2001, 2002, 2003, 2004, 2005.
# Daniel Nylander <po@danielnylander.se>, 2006, 2007, 2008, 2009, 2010.
#
========== ta.po ==========
# translation of gnome-session.HEAD.ta.po to Tamil
# translation of ta.po to
# Tamil translation of Mate-Session messages.
# Copyright (C) 2001, 2004, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
#
# Dinesh Nadarajah <dinesh_list@sbcglobal.net>, 2004.
# Jayaradha N <jaya@pune.redhat.com>, 2004.
# Felix <ifelix@redhat.com>, 2006.
# Dr.T.Vasudevan <agnihot3@gmail.com>, 2007, 2008, 2009, 2010.
# I. Felix <ifelix@redhat.com>, 2008, 2009.
========== te.po ==========
# translation of gnome-session.master.te.po to Telugu
# Telugu translation of gnome-session.
# Copyright (C) 2007 Swecha Telugu Localisation team <localisation@swecha.org>
# This file is distributed under the same license as the gnome-session package.
#
# Pavan Kumar <pavanpreetam@gmail.com>, 2007.
# Y.Kiran Chandra <kiran@swecha.net>, 2007.
# J.Bharat Kumar <jonnalagaddabharat@gmail.com>, 2007.
# Krishna Babu K <kkrothap@redhat.com>, 2009.
========== th.po ==========
# Thai translation for gnome-session.
# Copyright (C) 2003-2009 Free Software Foundation, Inc.
# This file is distributed under the same license as the gnome-session package.
#
# Ranee Somchaimit <tuktik_friend@hotmail.com>, 2003
# Paisa Seeluangsawat <paisa@users.sf.net>, 2004
# Theppitak Karoonboonyanan <thep@linux.thai.net>, 2005-2009
#
========== tk.po ==========
# Turkmen translation of gnome-session
# Copyright (C) 2004 Free Software Foundation
# Copyright (C) 2004 Kakilik Project <kakilik.sourceforge.net>
# This file is distributed under the terms of GNU General Public License (GPL)
# Gurban Mühemmet Tewekgeli <gmtavakkoli@yahoo.com>, 2004.
#
========== tr.po ==========
# Turkish translation of gnome-session.
# Copyright (C) 2001-2003, 2004, 2008 Free Software Foundation, Inc.
#
# Sinan İmamoğlu <sinan@myrealbox.com>, 2002-2003.
# Ömer Fadıl USTA <omer_fad@hotmail.com>, 2002.
# Fatih Demir <kabalak@kabalak.net>, 2000.
# Görkem Cetin <gorkem@gelecek.com.tr>, 2001.
# Arman Aksoy <armish@linux-sevenler.de>, 2003.
# Baris Cicek <baris@teamforce.name.tr>, 2004, 2008, 2009.
========== ug.po ==========
# Uighur translation for gnome-session
# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006
# This file is distributed under the same license as the gnome-session package.
# Gheyret T.Kenji <gheyret@yahoo.com>, 2010.
#
========== uk.po ==========
# Ukrainian translation of gnome-core module
# Copyright (C) 1999-2002 Free Software Foundation, Inc.
# Yuri Syrota <rasta@renome.rovno.ua>, 1999-2002.
# Maxim Dziumanenko <dziumanenko@gmail.com>, 2002-2008
#
========== uz.po ==========
# translation of gnome-session-2.0 to Uzbek
# Copyright (C) 2007 Free Software Foundation, Inc.
# This file is distributed under the same license as the gnome-session package.
#
# Nurali Abdurahmonov <mavnur@gmail.com>, 2009.
========== uz@cyrillic.po ==========
# translation of gnome-session-2.0 to Uzbek
# Copyright (C) 2007 Free Software Foundation, Inc.
# This file is distributed under the same license as the gnome-session package.
#
# Nurali Abdurahmonov <mavnur@gmail.com>, 2009.
========== vi.po ==========
# Vietnamese Translation for GNOME Session.
# Copyright © 2008 GNOME i18n Project for Vietnamese.
# Nguyễn Thái Ngọc Duy <pclouds@gmail.com>, 2002-2004,2007-2008.
# Clytie Siddall <clytie@riverland.net.au>, 2005-2009.
#
========== wa.po ==========
# Traduction into the walloon language.
#
# Si vos voloz donner on côp di spale pol ratournaedje di Mate (ou des
# ôtes libes programes) sicrijhoz-mu a l' adresse emile
# <srtxg@chanae.alphanet.ch>; nos avons co bråmint di l' ovraedje a fé.
#
# Copyright (C) 1999,2002 Free Software Foundation, Inc.
# Pablo Saratxaga <srtxg@chanae.alphanet.ch> 1999-2002
# Lucyin Mahin, 2000
# Lorint Hendschel <LorintHendschel@skynet.be>, 1999-2000.
# Pablo Saratxaga <pablo@walon.org>, 2005.
#
========== xh.po ==========
# Xhosa translation of gnome-session
# Copyright (C) 2005 Canonical Ltd.
# This file is distributed under the same license as the gnome-session package.
# Translation by Canonical Ltd <translations@canonical.com> with thanks to
# Translation World CC in South Africa, 2005.
#
========== yo.po ==========
========== zh_CN.po ==========
# Chinese (China) translation of gnome-session.
# Copyright (C) 2009, 2010 Free Software Foundation, Inc.
# This file is distributed under the same license as the gnome-session package.
# Dillion Chen <dillon.chen@turbolinux.com.cn>
# Updated and QA by Wang Jian <lark@linux.net.cn>
# Updated and QA by Jiang Xiong <jxiong@gwu.edu>
# Updated and QA by Zipeco <zipeco@btamail.net.cn>
# Updated by Funda Wang <fundawang@linux.net.cn>, 2003
# Yang Zhang <zyangmath@gmail.com>, 2009.
# Tao Wei <weitao1979@gmail.com>, 2009.
# Aron Xu <aronxu@gnome.org>, 2010.
========== zh_HK.po ==========
# Chinese (Hong Kong) translation of gnome-session.
# Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
# gnome-core:
# Yuan-Chung Cheng <platin@linux.org.tw>, 1999.
# Jing-Jong Shyue <shyue@sonoma.com.tw>, 2000.
# Chih-Wei Huang <cwhuang@linux.org.tw>, 2000.
# Abel Cheung <abel@oaka.org>, 2001-2002.
# gnome-session:
# Abel Cheung <abel@oaka.org>, 2002-2003.
# Woodman Tuen <wmtuen@gmail.coim>, 2005-006.
# Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>, 2008.
#
#
========== zh_TW.po ==========
# Chinese (Taiwan) translation of gnome-session.
# Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
# gnome-core:
# Yuan-Chung Cheng <platin@linux.org.tw>, 1999.
# Jing-Jong Shyue <shyue@sonoma.com.tw>, 2000.
# Chih-Wei Huang <cwhuang@linux.org.tw>, 2000.
# Abel Cheung <abel@oaka.org>, 2001-2002.
# gnome-session:
# Abel Cheung <abel@oaka.org>, 2002-2003.
# Woodman Tuen <wmtuen@gmail.coim>, 2005-006.
# Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>, 2008.
#
#
========== zu.po ==========
# Zulu translation of gnome-session.
# Copyright (C) 2004 Zuza Software Foundation (Translate.org.za)
# This file is distributed under the same license as the gnome-session package.
#
# Zuza Software Foundation <info@translate.org.za>, 2004
#
|