Changeset 1742
- Timestamp:
- 09/04/08 17:09:50 (3 months ago)
- Location:
- trunk
- Files:
-
- 28 modified
-
docs/CHANGELOG (modified) (1 diff)
-
lib/class/registration.class.php (modified) (1 diff)
-
locale/base/LANGLIST (modified) (1 diff)
-
locale/base/messages.pot (modified) (9 diffs)
-
locale/ca_ES/LC_MESSAGES/messages.mo (modified) (previous)
-
locale/ca_ES/LC_MESSAGES/messages.po (modified) (11 diffs)
-
locale/de_DE/LC_MESSAGES/messages.mo (modified) (previous)
-
locale/de_DE/LC_MESSAGES/messages.po (modified) (10 diffs)
-
locale/el_GR/LC_MESSAGES/messages.mo (modified) (previous)
-
locale/el_GR/LC_MESSAGES/messages.po (modified) (10 diffs)
-
locale/en_GB/LC_MESSAGES/messages.mo (modified) (previous)
-
locale/en_GB/LC_MESSAGES/messages.po (modified) (12 diffs)
-
locale/es_ES/LC_MESSAGES/messages.mo (modified) (previous)
-
locale/es_ES/LC_MESSAGES/messages.po (modified) (11 diffs)
-
locale/fr_FR/LC_MESSAGES/messages.mo (modified) (previous)
-
locale/fr_FR/LC_MESSAGES/messages.po (modified) (11 diffs)
-
locale/it_IT/LC_MESSAGES/messages.mo (modified) (previous)
-
locale/it_IT/LC_MESSAGES/messages.po (modified) (12 diffs)
-
locale/ja_JP/LC_MESSAGES/messages.mo (modified) (previous)
-
locale/ja_JP/LC_MESSAGES/messages.po (modified) (27 diffs)
-
locale/nl_NL/LC_MESSAGES/messages.mo (modified) (previous)
-
locale/nl_NL/LC_MESSAGES/messages.po (modified) (12 diffs)
-
locale/ru_RU/LC_MESSAGES/messages.mo (modified) (previous)
-
locale/ru_RU/LC_MESSAGES/messages.po (modified) (10 diffs)
-
locale/tr_TR/LC_MESSAGES/messages.mo (modified) (previous)
-
locale/tr_TR/LC_MESSAGES/messages.po (modified) (10 diffs)
-
locale/zh_CN/LC_MESSAGES/messages.mo (modified) (previous)
-
locale/zh_CN/LC_MESSAGES/messages.po (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/CHANGELOG
r1741 r1742 5 5 -------------------------------------------------------------------------- 6 6 v.3.5-Alpha1 7 - Updated registration multi-byte mail. 7 8 - Fixed vainfo.class.php didn't catch exception for first analyze. 8 9 - Fixed iconv() returns an empty strings (Thx abs0) -
trunk/lib/class/registration.class.php
r1448 r1742 42 42 public static function send_confirmation($username,$fullname,$email,$password,$validation) { 43 43 44 $headers = "From: Ampache <" . Config::get('mail_from') . ">"; 45 $subject = "New User Registration at " . Config::get('site_title'); 46 $body = "Thank you for registering\n\n" . 47 "Please keep this e-mail for your records. Your account information is as follows:\n\n" . 48 "----------------------\n" . 49 "Username: $username\n" . 50 "Password: $password\n" . 51 "----------------------\n\n" . 52 "Your account is currently inactive. You cannot use it until you've visited the following link:\n\n" . 53 Config::get('web_path') . "/register.php?action=validate&username=$username&auth=$validation\n\n" . 54 "Thank you for registering\n"; 55 56 // Send the mail! 57 mail($email,$subject,$body,$headers); 44 // Multi-byte Character Mail 45 if(function_exists('mb_language')) { 46 ini_set("mbstring.internal_encoding","UTF-8"); 47 mb_language("uni"); 48 } 49 50 if(function_exists('mb_encode_mimeheader')) { 51 $from = mb_encode_mimeheader(_("From: Ampache ")); 52 } else { 53 $from = _("From: Ampache "); 54 } 55 $subject = sprintf(_("New User Registration at %s"), Config::get('site_title')); 56 57 $additional_header = array(); 58 $additional_header[] = 'X-Ampache-Mailer: 0.0.1'; 59 $additional_header[] = $from . "<" .Config::get('mail_from') . ">"; 60 if(function_exists('mb_send_mail')) { 61 $additional_header[] = 'Content-Type: text/plain; charset=UTF-8'; 62 $additional_header[] = 'Content-Transfer-Encoding: 8bit'; 63 } else { 64 $additional_header[] = 'Content-Type: text/plain; charset=us-ascii'; 65 $additional_header[] = 'Content-Transfer-Encoding: 7bit'; 66 } 67 68 $body = sprintf(_("Thank you for registering\n\n 69 Please keep this e-mail for your records. Your account information is as follows: 70 ---------------------- 71 Username: %s 72 Password: %s 73 ---------------------- 74 75 Your account is currently inactive. You cannot use it until you've visited the following link: 76 77 %s 78 79 Thank you for registering 80 "), $username, $password, Config::get('web_path') . "/register.php?action=validate&username=$username&auth=$validation"); 81 82 if(function_exists('mb_eregi_replace')) { 83 $body = mb_eregi_replace("\r\n", "\n", $body); 84 } 85 // Send the mail! 86 if(function_exists('mb_send_mail')) { 87 mb_send_mail ($email, 88 $subject, 89 $body, 90 implode("\n", $additional_header), 91 '-f'.Config::get('mail_from')); 92 } else { 93 mail($email,$subject,$body,implode("\r\n", $additional_header),'-f'.Config::get('mail_from')); 94 } 58 95 59 96 // Check to see if the admin should be notified 60 97 if (Config::get('admin_notify_reg')) { 61 $body = "A new user has registered\n\n" . 62 "The following values were entered.\n\n" . 63 "Username:$username\nFullname:$fullname\nE-mail:$email\n\n"; 64 mail(Config::get('mail_from'),$subject,$body,$headers); 98 $body = sprintf(_("A new user has registered 99 The following values were entered. 100 101 Username: %s 102 Fullname: %s 103 E-mail: %s 104 105 "), $username, $fullname, $email); 106 107 if(function_exists('mb_send_mail')) { 108 mb_send_mail (Config::get('mail_from'), 109 $subject, 110 $body, 111 implode("\n", $additional_header), 112 '-f'.Config::get('mail_from')); 113 } else { 114 mail(Config::get('mail_from'),$subject,$body,implode("\r\n", $additional_header),'-f'.Config::get('mail_from')); 115 } 65 116 } 66 117 -
trunk/locale/base/LANGLIST
r1735 r1742 1 1 Localization Status Report for Ampache. 2 Generated: 09/0 2/2008 23:14:22 GMT2 Generated: 09/05/2008 23:14:22 GMT 3 3 4 4 LANG Trans Fuzzy Untrans Obsolete 5 ca_ES 497 6 4 2113256 de_DE 646 6 4 62 467 el_GR 636 6 3 73 868 en_GB 250 20 2 320 4249 es_ES 182 15 1 43930810 fr_FR 672 68 32 30411 it_IT 288 18 0 304 37712 ja_JP 7 51 3 18013 nl_NL 343 17 3 256 44114 ru_RU 638 6 4 70 17015 tr_TR 4 65 70 3 10916 zh_CN 1 0 77 105 ca_ES 497 66 213 325 6 de_DE 646 66 64 50 7 el_GR 636 65 75 88 8 en_GB 250 204 322 422 9 es_ES 182 153 441 308 10 fr_FR 672 70 34 358 11 it_IT 288 182 306 375 12 ja_JP 776 0 0 0 13 nl_NL 343 175 258 439 14 ru_RU 638 66 72 172 15 tr_TR 4 65 707 111 16 zh_CN 1 0 775 0 17 17 -
trunk/locale/base/messages.pot
r1735 r1742 9 9 "Project-Id-Version: PACKAGE VERSION\n" 10 10 "Report-Msgid-Bugs-To: translations at ampache.org\n" 11 "POT-Creation-Date: 2008-09-0 3 08:19+0900\n"11 "POT-Creation-Date: 2008-09-05 08:59+0900\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 1554 1554 #: ../../templates/show_local_catalog_info.inc.php:30 1555 1555 #: ../../templates/show_genre.inc.php:35 ../../lib/ui.lib.php:412 1556 #: ../../lib/class/browse.class.php:989 ../../lib/class/album.class.php:25 01556 #: ../../lib/class/browse.class.php:989 ../../lib/class/album.class.php:256 1557 1557 msgid "Artists" 1558 1558 msgstr "" … … 1740 1740 msgstr "" 1741 1741 1742 #: ../../templates/show_random_albums.inc.php:4 71742 #: ../../templates/show_random_albums.inc.php:48 1743 1743 msgid "Play Album" 1744 1744 msgstr "" … … 2526 2526 msgstr "" 2527 2527 2528 #: ../../templates/show_album.inc.php:27 ../../lib/class/album.class.php:2 382528 #: ../../templates/show_album.inc.php:27 ../../lib/class/album.class.php:244 2529 2529 msgid "Disk" 2530 2530 msgstr "" … … 2595 2595 2596 2596 #: ../../templates/show_edit_album_row.inc.php:35 2597 #: ../../lib/class/album.class.php:25 0 ../../lib/class/album.class.php:2512597 #: ../../lib/class/album.class.php:256 ../../lib/class/album.class.php:257 2598 2598 msgid "Various" 2599 2599 msgstr "" … … 3099 3099 msgstr "" 3100 3100 3101 #: ../../lib/class/album.class.php:4 66../../lib/class/catalog.class.php:4153101 #: ../../lib/class/album.class.php:472 ../../lib/class/catalog.class.php:415 3102 3102 #: ../../lib/class/catalog.class.php:756 3103 3103 msgid "Error: Unable to open" … … 3245 3245 msgstr "" 3246 3246 3247 #: ../../lib/class/registration.class.php:51 3248 #: ../../lib/class/registration.class.php:53 3249 msgid "From: Ampache " 3250 msgstr "" 3251 3252 #: ../../lib/class/registration.class.php:55 3253 #, php-format 3254 msgid "New User Registration at %s" 3255 msgstr "" 3256 3257 #: ../../lib/class/registration.class.php:68 3258 #, php-format 3259 msgid "" 3260 "Thank you for registering\n" 3261 "\n" 3262 "\n" 3263 "Please keep this e-mail for your records. Your account information is as " 3264 "follows:\n" 3265 "----------------------\n" 3266 "Username: %s\n" 3267 "Password: %s\n" 3268 "----------------------\n" 3269 "\n" 3270 "Your account is currently inactive. You cannot use it until you've visited " 3271 "the following link:\n" 3272 "\n" 3273 "%s \n" 3274 "\n" 3275 "Thank you for registering\n" 3276 msgstr "" 3277 3278 #: ../../lib/class/registration.class.php:98 3279 #, php-format 3280 msgid "" 3281 "A new user has registered\n" 3282 "The following values were entered.\n" 3283 "\n" 3284 "Username: %s\n" 3285 "Fullname: %s\n" 3286 "E-mail: %s\n" 3287 "\n" 3288 msgstr "" 3289 3247 3290 #: ../../lib/general.lib.php:498 3248 3291 msgid "On" … … 3676 3719 msgstr "" 3677 3720 3678 #: ../../bin/print_tags.inc:6 63721 #: ../../bin/print_tags.inc:68 3679 3722 msgid "" 3680 3723 "[print_tags.php.inc]\n" … … 3685 3728 msgstr "" 3686 3729 3687 #: ../../bin/print_tags.inc:7 23730 #: ../../bin/print_tags.inc:74 3688 3731 msgid "Filename:" 3689 3732 msgstr "" -
trunk/locale/ca_ES/LC_MESSAGES/messages.po
r1735 r1742 18 18 "Project-Id-Version: Ampache 3.5.0\n" 19 19 "Report-Msgid-Bugs-To: translations at ampache.org\n" 20 "POT-Creation-Date: 2008-09-0 3 08:08+0900\n"20 "POT-Creation-Date: 2008-09-05 08:49+0900\n" 21 21 "PO-Revision-Date: 2008-01-04 16:41+0100\n" 22 22 "Last-Translator: Guillem Lluch Moll <glluch@ya.com>\n" … … 1596 1596 #: ../../templates/show_local_catalog_info.inc.php:30 1597 1597 #: ../../templates/show_genre.inc.php:35 ../../lib/ui.lib.php:412 1598 #: ../../lib/class/browse.class.php:989 ../../lib/class/album.class.php:25 01598 #: ../../lib/class/browse.class.php:989 ../../lib/class/album.class.php:256 1599 1599 msgid "Artists" 1600 1600 msgstr "Artistes" … … 1791 1791 msgstr "" 1792 1792 1793 #: ../../templates/show_random_albums.inc.php:4 71793 #: ../../templates/show_random_albums.inc.php:48 1794 1794 msgid "Play Album" 1795 1795 msgstr "Reproduir l'àlbum" … … 2590 2590 msgstr "" 2591 2591 2592 #: ../../templates/show_album.inc.php:27 ../../lib/class/album.class.php:2 382592 #: ../../templates/show_album.inc.php:27 ../../lib/class/album.class.php:244 2593 2593 msgid "Disk" 2594 2594 msgstr "" … … 2659 2659 2660 2660 #: ../../templates/show_edit_album_row.inc.php:35 2661 #: ../../lib/class/album.class.php:25 0 ../../lib/class/album.class.php:2512661 #: ../../lib/class/album.class.php:256 ../../lib/class/album.class.php:257 2662 2662 msgid "Various" 2663 2663 msgstr "Varis" … … 3169 3169 msgstr "Errada no hi poden faltar les contrasenyes" 3170 3170 3171 #: ../../lib/class/album.class.php:4 66../../lib/class/catalog.class.php:4153171 #: ../../lib/class/album.class.php:472 ../../lib/class/catalog.class.php:415 3172 3172 #: ../../lib/class/catalog.class.php:756 3173 3173 msgid "Error: Unable to open" … … 3319 3319 msgstr "" 3320 3320 3321 #: ../../lib/class/registration.class.php:51 3322 #: ../../lib/class/registration.class.php:53 3323 #, fuzzy 3324 msgid "From: Ampache " 3325 msgstr "Cerca Ampache" 3326 3327 #: ../../lib/class/registration.class.php:55 3328 #, fuzzy, php-format 3329 msgid "New User Registration at %s" 3330 msgstr "Registre d'un nou usuari a l'Ampache" 3331 3332 #: ../../lib/class/registration.class.php:68 3333 #, php-format 3334 msgid "" 3335 "Thank you for registering\n" 3336 "\n" 3337 "\n" 3338 "Please keep this e-mail for your records. Your account information is as " 3339 "follows:\n" 3340 "----------------------\n" 3341 "Username: %s\n" 3342 "Password: %s\n" 3343 "----------------------\n" 3344 "\n" 3345 "Your account is currently inactive. You cannot use it until you've visited " 3346 "the following link:\n" 3347 "\n" 3348 "%s \n" 3349 "\n" 3350 "Thank you for registering\n" 3351 msgstr "" 3352 3353 #: ../../lib/class/registration.class.php:98 3354 #, php-format 3355 msgid "" 3356 "A new user has registered\n" 3357 "The following values were entered.\n" 3358 "\n" 3359 "Username: %s\n" 3360 "Fullname: %s\n" 3361 "E-mail: %s\n" 3362 "\n" 3363 msgstr "" 3364 3321 3365 #: ../../lib/general.lib.php:498 3322 3366 msgid "On" … … 3761 3805 msgstr "Finalitzat la cerca de portades" 3762 3806 3763 #: ../../bin/print_tags.inc:6 63807 #: ../../bin/print_tags.inc:68 3764 3808 msgid "" 3765 3809 "[print_tags.php.inc]\n" … … 3775 3819 " \n" 3776 3820 3777 #: ../../bin/print_tags.inc:7 23821 #: ../../bin/print_tags.inc:74 3778 3822 msgid "Filename:" 3779 3823 msgstr "Nom de l'arxiu:" … … 3902 3946 msgid "System" 3903 3947 msgstr "Ítem" 3948 3949 #, fuzzy 3950 #~ msgid "Catalog Debug Tools" 3951 #~ msgstr "Catàleg borrat" 3904 3952 3905 3953 #, fuzzy … … 4177 4225 #~ msgid "Results Per Page" 4178 4226 #~ msgstr "Resultats per pàgina" 4179 4180 #~ msgid "Ampache New User Registration"4181 #~ msgstr "Registre d'un nou usuari a l'Ampache"4182 4227 4183 4228 #~ msgid "Clear Info" -
trunk/locale/de_DE/LC_MESSAGES/messages.po
r1735 r1742 11 11 "Project-Id-Version: messages\n" 12 12 "Report-Msgid-Bugs-To: translations at ampache.org\n" 13 "POT-Creation-Date: 2008-09-0 3 08:08+0900\n"13 "POT-Creation-Date: 2008-09-05 08:49+0900\n" 14 14 "PO-Revision-Date: 2008-08-24 09:26+0200\n" 15 15 "Last-Translator: Nikolai Försterling <devel@fosternet.de>\n" … … 1602 1602 #: ../../templates/show_local_catalog_info.inc.php:30 1603 1603 #: ../../templates/show_genre.inc.php:35 ../../lib/ui.lib.php:412 1604 #: ../../lib/class/browse.class.php:989 ../../lib/class/album.class.php:25 01604 #: ../../lib/class/browse.class.php:989 ../../lib/class/album.class.php:256 1605 1605 msgid "Artists" 1606 1606 msgstr "Interpreten" … … 1797 1797 msgstr "Aktualisieren" 1798 1798 1799 #: ../../templates/show_random_albums.inc.php:4 71799 #: ../../templates/show_random_albums.inc.php:48 1800 1800 msgid "Play Album" 1801 1801 msgstr "Album abspielen" … … 2597 2597 msgstr "" 2598 2598 2599 #: ../../templates/show_album.inc.php:27 ../../lib/class/album.class.php:2 382599 #: ../../templates/show_album.inc.php:27 ../../lib/class/album.class.php:244 2600 2600 msgid "Disk" 2601 2601 msgstr "" … … 2666 2666 2667 2667 #: ../../templates/show_edit_album_row.inc.php:35 2668 #: ../../lib/class/album.class.php:25 0 ../../lib/class/album.class.php:2512668 #: ../../lib/class/album.class.php:256 ../../lib/class/album.class.php:257 2669 2669 msgid "Various" 2670 2670 msgstr "Verschiedene" … … 3179 3179 msgstr "Fehler: Falsches Passwort" 3180 3180 3181 #: ../../lib/class/album.class.php:4 66../../lib/class/catalog.class.php:4153181 #: ../../lib/class/album.class.php:472 ../../lib/class/catalog.class.php:415 3182 3182 #: ../../lib/class/catalog.class.php:756 3183 3183 msgid "Error: Unable to open" … … 3328 3328 msgstr "" 3329 3329 3330 #: ../../lib/class/registration.class.php:51 3331 #: ../../lib/class/registration.class.php:53 3332 #, fuzzy 3333 msgid "From: Ampache " 3334 msgstr "In Ampache suchen" 3335 3336 #: ../../lib/class/registration.class.php:55 3337 #, fuzzy, php-format 3338 msgid "New User Registration at %s" 3339 msgstr "Registrierungsdatum " 3340 3341 #: ../../lib/class/registration.class.php:68 3342 #, php-format 3343 msgid "" 3344 "Thank you for registering\n" 3345 "\n" 3346 "\n" 3347 "Please keep this e-mail for your records. Your account information is as " 3348 "follows:\n" 3349 "----------------------\n" 3350 "Username: %s\n" 3351 "Password: %s\n" 3352 "----------------------\n" 3353 "\n" 3354 "Your account is currently inactive. You cannot use it until you've visited " 3355 "the following link:\n" 3356 "\n" 3357 "%s \n" 3358 "\n" 3359 "Thank you for registering\n" 3360 msgstr "" 3361 3362 #: ../../lib/class/registration.class.php:98 3363 #, php-format 3364 msgid "" 3365 "A new user has registered\n" 3366 "The following values were entered.\n" 3367 "\n" 3368 "Username: %s\n" 3369 "Fullname: %s\n" 3370 "E-mail: %s\n" 3371 "\n" 3372 msgstr "" 3373 3330 3374 #: ../../lib/general.lib.php:498 3331 3375 msgid "On" … … 3777 3821 msgstr "Album Cover-Suche beendet" 3778 3822 3779 #: ../../bin/print_tags.inc:6 63823 #: ../../bin/print_tags.inc:68 3780 3824 msgid "" 3781 3825 "[print_tags.php.inc]\n" … … 3791 3835 " \n" 3792 3836 3793 #: ../../bin/print_tags.inc:7 23837 #: ../../bin/print_tags.inc:74 3794 3838 msgid "Filename:" 3795 3839 msgstr "Dateiname:" … … 3920 3964 3921 3965 #, fuzzy 3966 #~ msgid "Catalog Debug Tools" 3967 #~ msgstr "Debug Werkzeuge" 3968 3969 #, fuzzy 3970 #~ msgid "Debug" 3971 #~ msgstr "Debug Werkzeuge" 3972 3973 #, fuzzy 3922 3974 #~ msgid "GetText Support" 3923 3975 #~ msgstr "Gettext Unterstützung" -
trunk/locale/el_GR/LC_MESSAGES/messages.po
r1735 r1742 8 8 "Project-Id-Version: Ampache 3.5.0\n" 9 9 "Report-Msgid-Bugs-To: translations at ampache.org\n" 10 "POT-Creation-Date: 2008-09-0 3 08:08+0900\n"10 "POT-Creation-Date: 2008-09-05 08:49+0900\n" 11 11 "PO-Revision-Date: 2008-08-25 08:43+0900\n" 12 12 "Last-Translator: Ampache <translations at ampache.org>\n" … … 1579 1579 #: ../../templates/show_local_catalog_info.inc.php:30 1580 1580 #: ../../templates/show_genre.inc.php:35 ../../lib/ui.lib.php:412 1581 #: ../../lib/class/browse.class.php:989 ../../lib/class/album.class.php:25 01581 #: ../../lib/class/browse.class.php:989 ../../lib/class/album.class.php:256 1582 1582 msgid "Artists" 1583 1583 msgstr "Καλλιτέχνες" … … 1774 1774 msgstr "" 1775 1775 1776 #: ../../templates/show_random_albums.inc.php:4 71776 #: ../../templates/show_random_albums.inc.php:48 1777 1777 msgid "Play Album" 1778 1778 msgstr "Αναπαραγωγή άλμπουμ" … … 2573 2573 msgstr "" 2574 2574 2575 #: ../../templates/show_album.inc.php:27 ../../lib/class/album.class.php:2 382575 #: ../../templates/show_album.inc.php:27 ../../lib/class/album.class.php:244 2576 2576 msgid "Disk" 2577 2577 msgstr "Δίσκος" … … 2642 2642 2643 2643 #: ../../templates/show_edit_album_row.inc.php:35 2644 #: ../../lib/class/album.class.php:25 0 ../../lib/class/album.class.php:2512644 #: ../../lib/class/album.class.php:256 ../../lib/class/album.class.php:257 2645 2645 msgid "Various" 2646 2646 msgstr "Ποικίλα" … … 3151 3151 msgstr "Σφάλμα: Οι κωδικοί δεν ταιριάζουν" 3152 3152 3153 #: ../../lib/class/album.class.php:4 66../../lib/class/catalog.class.php:4153153 #: ../../lib/class/album.class.php:472 ../../lib/class/catalog.class.php:415 3154 3154 #: ../../lib/class/catalog.class.php:756 3155 3155 msgid "Error: Unable to open" … … 3301 3301 msgstr "" 3302 3302 3303 #: ../../lib/class/registration.class.php:51 3304 #: ../../lib/class/registration.class.php:53 3305 #, fuzzy 3306 msgid "From: Ampache " 3307 msgstr "Αναζήτηση στον Ampache" 3308 3309 #: ../../lib/class/registration.class.php:55 3310 #, fuzzy, php-format 3311 msgid "New User Registration at %s" 3312 msgstr "Ημερομηνία Εγγραφής" 3313 3314 #: ../../lib/class/registration.class.php:68 3315 #, php-format 3316 msgid "" 3317 "Thank you for registering\n" 3318 "\n" 3319 "\n" 3320 "Please keep this e-mail for your records. Your account information is as " 3321 "follows:\n" 3322 "----------------------\n" 3323 "Username: %s\n" 3324 "Password: %s\n" 3325 "----------------------\n" 3326 "\n" 3327 "Your account is currently inactive. You cannot use it until you've visited " 3328 "the following link:\n" 3329 "\n" 3330 "%s \n" 3331 "\n" 3332 "Thank you for registering\n" 3333 msgstr "" 3334 3335 #: ../../lib/class/registration.class.php:98 3336 #, php-format 3337 msgid "" 3338 "A new user has registered\n" 3339 "The following values were entered.\n" 3340 "\n" 3341 "Username: %s\n" 3342 "Fullname: %s\n" 3343 "E-mail: %s\n" 3344 "\n" 3345 msgstr "" 3346 3303 3347 #: ../../lib/general.lib.php:498 3304 3348 msgid "On" … … 3742 3786 msgstr "Ολοκληρώθηκε η αναζήτηση εξωφύλλων" 3743 3787 3744 #: ../../bin/print_tags.inc:6 63788 #: ../../bin/print_tags.inc:68 3745 3789 msgid "" 3746 3790 "[print_tags.php.inc]\n" …
