You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
(39) |
Apr
(6) |
May
|
Jun
(2) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2007 |
Jan
(2) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Josh <jel...@us...> - 2007-08-05 19:24:07
|
Update of /cvsroot/cmsforme/CMSformE/l10n/en_US In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv4883/l10n/en_US Modified Files: common.php Log Message: That wasn't too bad. - Fix tagging Index: common.php =================================================================== RCS file: /cvsroot/cmsforme/CMSformE/l10n/en_US/common.php,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- common.php 3 Jan 2007 16:16:06 -0000 1.3 +++ common.php 5 Aug 2007 19:23:52 -0000 1.4 @@ -63,6 +63,7 @@ 'april' => 'April', 'archives' => 'Archives', 'august' => 'August', + 'authors' => 'Authors', 'december' => 'December', 'february' => 'February', 'january' => 'January', @@ -74,7 +75,8 @@ 'october' => 'October', 'registered_user' => 'There is <strong>1</strong> registered user on this CMSform<sup>E</sup> system.', 'registered_users' => 'There are <strong>%d</strong> registered users on this CMSform<sup>E</sup> system.', - 'september' => 'September' + 'september' => 'September', + 'types' => 'Tags' ) ); // News @@ -229,4 +231,4 @@ 'comment_notify_subject' => 'New Comment Notification :: %s', ) ); -?> \ No newline at end of file +?> |
|
From: Josh <jel...@us...> - 2007-02-12 23:51:26
|
Update of /cvsroot/cmsforme/CMSformE/l10n/en_US In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv29963/l10n/en_US Modified Files: admin.php Log Message: - New News types system - *TAG*, you're it. Index: admin.php =================================================================== RCS file: /cvsroot/cmsforme/CMSformE/l10n/en_US/admin.php,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- admin.php 11 Jan 2007 04:39:16 -0000 1.4 +++ admin.php 12 Feb 2007 23:51:19 -0000 1.5 @@ -60,6 +60,26 @@ 'version' => 'Version' ) ); +$L10n->put_langs( array( + 'administrator' => 'Administrator', + 'approve_user' => 'Approve User', + 'bio' => 'Biography', + 'biography_here' => 'Write your life\'s story here.', + 'chief' => 'Editor-in-Chief', + 'deny_user' => 'Deny User', + 'editor' => 'Editor', + 'manage_staff' => 'Manage Staff Members', + 'moderator' => 'Moderator', + 'no_staff' => 'No Staff', + 'no_staff_explain' => 'Your query returned no staff members.', + 'remove_staff' => 'Remove Staff Member', + 'role' => 'Role', + 'staff' => 'Staff', + 'staff_added' => 'This user was added to the roster of staff.', + 'staff_denied' => 'This user\'s application for staff has been denied.', + 'staff_pending' => 'You are now a pending staff member.' +) ); + // Warnings $L10n->put_langs( array( 'install_dir' => 'Install Directory', |
|
From: Gordon P. H. <gph...@us...> - 2007-01-11 04:39:20
|
Update of /cvsroot/cmsforme/CMSformE/l10n/en_US In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv13432/l10n/en_US Modified Files: admin.php Log Message: Fixed problems with adding and removing staff members. Added (temporary) language variables for the StaffCP. Index: admin.php =================================================================== RCS file: /cvsroot/cmsforme/CMSformE/l10n/en_US/admin.php,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- admin.php 3 Jan 2007 16:16:06 -0000 1.3 +++ admin.php 11 Jan 2007 04:39:16 -0000 1.4 @@ -2,7 +2,7 @@ /******************************************************************* * Filename: languages/english/admin.php - * Copyright: © 2003-2005 CMSformE + * Copyright: (C) 2003-2007 CMSformE * $Id$ ******************************************************************* * This program is free software; you can redistribute it and/or modify @@ -106,7 +106,7 @@ ) ); // FAQ Categories -// STANDARDIZE +// TODO: Standardize $L10n->put_langs( array( 'category_name' => 'Category Name', 'category_removed_success' => 'You have successfully removed a category.', @@ -172,4 +172,16 @@ 'success_update_ecode' => 'Successfully updated ecodes' ) ); +// Staff management +// TODO: Update/fix these. +$L10n->put_langs( array( + 'remove_staff' => 'Remove staff member?', + 'role' => 'Role', + 'bio' => 'Biography', + 'staff_role' => 'Staff Role', + 'add_user' => 'Add User', + 'staff_added' => 'The user <strong>%s</strong> was added to the staff successfully.', + 'staff_removed' => 'The user <strong>%s</strong> was removed from the staff successfully.' +) ); + ?> \ No newline at end of file |
|
From: Josh <jel...@us...> - 2007-01-03 16:16:17
|
Update of /cvsroot/cmsforme/CMSformE/l10n/en_US In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv25808/l10n/en_US Modified Files: admin.php common.php Log Message: - Remove staffcp (replacement will go into ACP soon-ish - no, really GPH) - Fix quote and code eCodes - Security fix in modules.php - Document the functions in l10n.php (this file could use some fxn merging, IMO) The Doughnut is back in business! Index: admin.php =================================================================== RCS file: /cvsroot/cmsforme/CMSformE/l10n/en_US/admin.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- admin.php 23 Apr 2005 18:55:32 -0000 1.2 +++ admin.php 3 Jan 2007 16:16:06 -0000 1.3 @@ -92,7 +92,6 @@ // Configuration $L10n->put_langs( array( - 'apply_staff' => 'Allow users to apply to staff?', 'config_updated' => 'Configuration Updated', 'config_updated_explain' => 'The config has been updated.', 'default_date' => 'Default Date/Time Format', Index: common.php =================================================================== RCS file: /cvsroot/cmsforme/CMSformE/l10n/en_US/common.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- common.php 23 Apr 2005 18:55:32 -0000 1.2 +++ common.php 3 Jan 2007 16:16:06 -0000 1.3 @@ -145,30 +145,6 @@ 'faq_empty_explain' => 'Sorry, there are no FAQ entries for your language.' ) ); -// Staff -$L10n->put_langs( array( - 'administrator' => 'Administrator', - 'apply_staff' => 'Apply to Staff', - 'approve_user' => 'Approve User', - 'bio' => 'Biography', - 'biography_here' => 'Write your life\'s story here.', - 'chief' => 'Editor-in-Chief', - 'deny_user' => 'Deny User', - 'editor' => 'Editor', - 'manage_staff' => 'Manage Staff Members', - 'moderator' => 'Moderator', - 'no_apply_staff' => 'Application to Staff has been disabled by an Administrator.', - 'no_staff' => 'No Staff', - 'no_staff_explain' => 'Your query returned no staff members.', - 'no_staff_inactive' => 'There are no inactive staff members to approve.', - 'remove_staff' => 'Remove Staff Member', - 'role' => 'Role', - 'staff' => 'Staff', - 'staff_added' => 'This user was added to the roster of staff.', - 'staff_denied' => 'This user\'s application for staff has been denied.', - 'staff_pending' => 'You are now a pending staff member.' -) ); - // Login $L10n->put_langs( array( 'already_logged_in' => 'Already Logged In', @@ -240,7 +216,6 @@ 'copyright' => 'Copyright © 2003-2005 CMSform<sup>E</sup> Development Crew', 'generation_time' => 'Generation Time', 'powered_by' => 'Powered By CMSform<sup>E</sup>', - 'staff_panel' => 'Staff Control Panel' ) ); // General Errors |
|
From: Gordon P. H. <gph...@us...> - 2006-07-04 06:35:16
|
Update of /cvsroot/cmsforme/CMSformE/l10n/en_US In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv14069/l10n/en_US Modified Files: install.php Log Message: In honor of CMSformE's third birthday, I decided to dig around in the code. And, wouldn't you know it? I found some bugs. Made the installer more accessible, which finally fixes bug 17. It needed a couple of new language variables for the access keys, too. Upped our requirements to PHP 4.3.3, in line with phpBB. (We needed at least 4.3.0, anyway.) Finally gave the installing user a salt. Fixed various SID-related bugs. Added salt-regeneration to the login. (I added a function so that we don't duplicate the saltshaker... er, salt-maker.) Fixed auto-login (hopefully). So, happy birthday to the United States of America and to CMSformE. I hope you like my developer humor. Index: install.php =================================================================== RCS file: /cvsroot/cmsforme/CMSformE/l10n/en_US/install.php,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- install.php 4 Mar 2005 23:27:12 -0000 1.1 +++ install.php 4 Jul 2006 06:35:13 -0000 1.2 @@ -26,7 +26,9 @@ $lang += array( 'title' => 'CMSform<sup>E</sup> Installation', 'back' => 'Back', + 'back_akey' => 'B', // Access key for Back button 'next' => 'Next', + 'next_akey' => 'N', // Access key for Next button 'step' => 'Step', 'language' => 'Language', 'percent_complete' => 'Percent Complete' |
|
From: AlleyKat <dk_...@us...> - 2005-07-15 23:41:24
|
Update of /cvsroot/cmsforme/l10n/da In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv743 Modified Files: admin.php common.php install.php Log Message: error correction Index: admin.php =================================================================== RCS file: /cvsroot/cmsforme/l10n/da/admin.php,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- admin.php 27 Jun 2005 01:39:35 -0000 1.4 +++ admin.php 15 Jul 2005 23:41:01 -0000 1.5 @@ -3,7 +3,7 @@ /******************************************************************* * Filename: l10n/da/admin.php * Copyright: © 2003-2005 CMSformE - * $Id: admin.php,v 1.2.1 2005/06/26 01:23:46 + * $Id$ * DK translation / Dansk oversættelse: AlleyKat (Finn Sørensen) <cms...@ph...> ******************************************************************* * This program is free software; you can redistribute it and/or modify @@ -34,7 +34,7 @@ // Categories $L10n->put_langs( array( 'authorization' => 'Autorisation', - 'general' => 'Generel' + 'general' => 'Generel', 'users' => 'Brugere' ) ); Index: install.php =================================================================== RCS file: /cvsroot/cmsforme/l10n/da/install.php,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- install.php 27 Jun 2005 01:39:35 -0000 1.4 +++ install.php 15 Jul 2005 23:41:09 -0000 1.5 @@ -3,7 +3,7 @@ /******************************************************************* * Filename: l10n/da/install.php * Copyright: © 2003-2005 CMSformE -* $Id: install.php,v 1.2.1 2005/06/26 01:23:46 +* $Id$ ******************************************************************* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by Index: common.php =================================================================== RCS file: /cvsroot/cmsforme/l10n/da/common.php,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- common.php 27 Jun 2005 01:39:35 -0000 1.4 +++ common.php 15 Jul 2005 23:41:09 -0000 1.5 @@ -3,7 +3,7 @@ /******************************************************************* * Filename: l10n/da/common.php * Copyright: © 2003-2005 CMSformE - * $Id: common.php,v 1.2.1 2005/06/26 01:23:46 + * $Id$ * DK translation / Dansk oversættelse: AlleyKat (Finn Sørensen) <cms...@ph...> ******************************************************************* * This program is free software; you can redistribute it and/or modify |
|
From: AlleyKat <dk_...@us...> - 2005-06-27 01:39:44
|
Update of /cvsroot/cmsforme/l10n/da In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21472 Modified Files: admin.php common.php index.html install.php Log Message: and its *NOT* MS standard lol, fixed Index: admin.php =================================================================== RCS file: /cvsroot/cmsforme/l10n/da/admin.php,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- admin.php 27 Jun 2005 01:22:44 -0000 1.3 +++ admin.php 27 Jun 2005 01:39:35 -0000 1.4 @@ -1,9 +1,9 @@ <?php /******************************************************************* - * Filename: l10n/da_DK/admin.php + * Filename: l10n/da/admin.php * Copyright: © 2003-2005 CMSformE - * $Id: admin.php,v 1.2 2005/06/26 01:23:45 + * $Id: admin.php,v 1.2.1 2005/06/26 01:23:46 * DK translation / Dansk oversættelse: AlleyKat (Finn Sørensen) <cms...@ph...> ******************************************************************* * This program is free software; you can redistribute it and/or modify @@ -174,4 +174,4 @@ 'success_update_ecode' => 'Korrekt opdaterede ecodes' ) ); -?> \ No newline at end of file +?> Index: index.html =================================================================== RCS file: /cvsroot/cmsforme/l10n/da/index.html,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- index.html 27 Jun 2005 01:22:44 -0000 1.3 +++ index.html 27 Jun 2005 01:39:35 -0000 1.4 @@ -1,15 +1,15 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html lang="da_DK"> +<html lang="da"> <head> - <title>l10n/da_DK/ Mappe :: CMSformE</title> + <title>l10n/da/ Mappe :: CMSformE</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> </head> <body> - <h1 align="center">l10n/da_DK/ sprogmappe for CMSform<sup>E</sup></h1> + <h1 align="center">l10n/da/ sprogmappe for CMSform<sup>E</sup></h1> </body> Index: install.php =================================================================== RCS file: /cvsroot/cmsforme/l10n/da/install.php,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- install.php 27 Jun 2005 01:22:44 -0000 1.3 +++ install.php 27 Jun 2005 01:39:35 -0000 1.4 @@ -1,9 +1,9 @@ <?php /******************************************************************* -* Filename: l10n/da_DK/install.php +* Filename: l10n/da/install.php * Copyright: © 2003-2005 CMSformE -* $Id: install.php,v 1.2 2005/06/26 01:23:45 +* $Id: install.php,v 1.2.1 2005/06/26 01:23:46 ******************************************************************* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -113,4 +113,4 @@ 'install_complete' => 'Installation fuldført - for at fortsætte til indekset skal du klikke %sHER%s.' ) ); -?> \ No newline at end of file +?> Index: common.php =================================================================== RCS file: /cvsroot/cmsforme/l10n/da/common.php,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- common.php 27 Jun 2005 01:22:44 -0000 1.3 +++ common.php 27 Jun 2005 01:39:35 -0000 1.4 @@ -1,9 +1,9 @@ <?php /******************************************************************* - * Filename: l10n/da_DK/common.php + * Filename: l10n/da/common.php * Copyright: © 2003-2005 CMSformE - * $Id: common.php,v 1.2 2005/06/26 01:23:45 + * $Id: common.php,v 1.2.1 2005/06/26 01:23:46 * DK translation / Dansk oversættelse: AlleyKat (Finn Sørensen) <cms...@ph...> ******************************************************************* * This program is free software; you can redistribute it and/or modify @@ -29,7 +29,7 @@ $L10n->put_langs( array( 'charset' => 'iso-8859-1', 'dir' => 'ltr', - 'lang' => 'da_DK' + 'lang' => 'da' ) ); // Miscellaneous @@ -255,4 +255,4 @@ 'comment_notify_subject' => 'Ny Kommentar Notifikation :: %s', ) ); -?> \ No newline at end of file +?> |
|
From: AlleyKat <dk_...@us...> - 2005-06-27 01:22:54
|
Update of /cvsroot/cmsforme/l10n/da In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12637 Modified Files: admin.php common.php index.html install.php l10n.txt Log Message: updated to new system, contents largely unchanged Index: admin.php =================================================================== RCS file: /cvsroot/cmsforme/l10n/da/admin.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- admin.php 5 Mar 2005 21:04:59 -0000 1.2 +++ admin.php 27 Jun 2005 01:22:44 -0000 1.3 @@ -1,10 +1,10 @@ <?php /******************************************************************* - * Filename: languages/danish/admin.php - * Copyright: © 2003-2004 CMSformE - * $Id$ - * DK translation / Dansk oversættelse: AlleyKat (Finn Sørensen) <tra...@ph...> + * Filename: l10n/da_DK/admin.php + * Copyright: © 2003-2005 CMSformE + * $Id: admin.php,v 1.2 2005/06/26 01:23:45 + * DK translation / Dansk oversættelse: AlleyKat (Finn Sørensen) <cms...@ph...> ******************************************************************* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -19,25 +19,27 @@ if( !( defined( 'ROOT' ) ) ) { - include( '../../includes/errors.php' ); + include( './../../includes/errors.php' ); viewed_alone(); } +$L10n->current_page = 'admin'; + // Basics -$lang += array( +$L10n->put_langs( array( 'admin_index' => 'Admin Indeks', 'index' => 'Indeks' -); +) ); // Categories -$lang += array( +$L10n->put_langs( array( 'authorization' => 'Autorisation', 'general' => 'Generel' 'users' => 'Brugere' -); +) ); // Pages -$lang += array( +$L10n->put_langs( array( 'auth_levels' => 'Autorisationsniveauer', 'config' => 'Konfiguration', 'faq_categories' => 'OSS Kategorier', @@ -46,10 +48,10 @@ 'news_types' => 'Nyhedstyper', 'templates' => 'Skabeloner', 'user_management' => 'Brugerstyring' -); +) ); // Statistics -$lang += array( +$L10n->put_langs( array( 'articles' => 'Artikler', 'db_version' => '%s Version', 'php_version' => 'PHP Version', @@ -57,10 +59,10 @@ 'stats' => 'Statistikker', 'table_prefix' => 'Tabel Præfiks', 'version' => 'Version', -); +) ); // Warnings -$lang += array( +$L10n->put_langs( array( 'install_dir' => 'Installationsmappe', 'install_dir_explain' => 'Installationsmappen findes stadig. Dette er en sikkerhedsrisiko.', 'install_lang' => 'Installér Sprogfiler', @@ -68,10 +70,10 @@ 'name' => 'Navn', 'warning' => 'Advarsel', 'warnings' => 'Advarsler' -); +) ); // Authorization Levels -$lang += array( +$L10n->put_langs( array( 'admin' => 'Administrator', 'auth_admin' => 'Administrator Privilegier', 'auth_comment' => 'Opret Kommentarer', @@ -87,10 +89,10 @@ 'levels_updated' => 'Autorisationsniveauer Opdateret', 'levels_updated_explain' => 'Autorisationsniveauerne er blevet opdateret.', 'registered' => 'Registreret' -); +) ); // Configuration -$lang += array( +$L10n->put_langs( array( 'apply_staff' => 'Tillad brugere at søge om optagelse i staben?', 'config_updated' => 'Konfiguration Opdateret', 'config_updated_explain' => 'Konfigurationen er blevet opdateret.', @@ -103,19 +105,19 @@ 'site_keys' => 'Site Nøgleord', 'site_name' => 'Site Navn', 'use_compiled_tpl' => 'Brug Kompilerede Skabeloner?' -); +) ); // FAQ Categories // STANDARDIZE -$lang += array( +$L10n->put_langs( array( 'category_name' => 'Kategori Navn', 'category_removed_success' => 'Du har fjernet en kategori.', 'create_faq_category' => 'Opret OSS Kategori', 'faq_category_create_success' => 'Du har oprettet en OSS Kategori.' -); +) ); // FAQ Entries -$lang += array( +$L10n->put_langs( array( 'answer' => 'Svar', 'edit_faq_entry' => 'Redigér OSS Kategori', 'faq_added_explain' => 'Du har tilføjet et nyt OSS-indlæg.', @@ -124,10 +126,10 @@ 'new_faq_entry' => 'Nyt OSS-indlæg', 'question' => 'Spørgsmål', 'select_category' => 'Vælg Kategori' -); +) ); // News Types -$lang += array( +$L10n->put_langs( array( 'move_contents' => 'Flyt Indhold', 'new_news_category' => 'Ny Nyhedstype', 'news_categories' => 'Nyhedskategorier', @@ -135,20 +137,20 @@ 'type_desc' => 'Type Beskrivelse', 'type_name' => 'Type Navn', 'type_url' => 'Type URL' -); +) ); // Templates -$lang += array( +$L10n->put_langs( array( 'inst_uninst_complete' => 'Installation/Afinstallation Komplet', 'inst_uninst_complete_explain' => 'Installation/Afinstallation af styles udført.', 'install' => 'Installér?', 'installed_styles' => 'Installerede Styles', 'uninstall' => 'Afinstallér?', 'uninstalled_styles' => 'Afinstallerede Styles' -); +) ); // User Information -$lang += array( +$L10n->put_langs( array( 'activate_user' => 'Aktivér Bruger?', 'delete_user' => 'Slet Bruger', 'delete_user_success_explain' => 'Bruger korrekt fjernet fra CMSform<sup>E</sup> systemet.', @@ -157,10 +159,10 @@ 'multi_users_explain' => 'Din forespørgsel returnerede mere end en bruger. Brug færre jokertegn.', 'no_users' => 'Ingen Brugere Fundet', 'no_users_explain' => 'Din forespørgsel returnerede ikke nogen brugere. Prøv venligst et andet brugernavn.' -); +) ); // eCode management -$lang += array( +$L10n->put_langs( array( 'enable_answer' => 'Slå til i OSS Svar?', 'enable_article' => 'Slå til i Nyhedsartikler?', 'enable_comment' => 'Slå til i Kommentarer?', @@ -170,6 +172,6 @@ 'manage_ecode' => 'Administrér eCode', 'specific_enable' => 'Specifikke steder', 'success_update_ecode' => 'Korrekt opdaterede ecodes' -); +) ); ?> \ No newline at end of file Index: index.html =================================================================== RCS file: /cvsroot/cmsforme/l10n/da/index.html,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- index.html 5 Mar 2005 17:03:07 -0000 1.2 +++ index.html 27 Jun 2005 01:22:44 -0000 1.3 @@ -1,10 +1,16 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html lang="da"> +<html lang="da_DK"> + <head> - <title>l10n/da/ Mappe :: CMSformE</title> + <title>l10n/da_DK/ Mappe :: CMSformE</title> + <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> + </head> + <body> - <h1 align="center">l10n/da/ Mappe til CMSform<sup>E</sup></h1> + <h1 align="center">l10n/da_DK/ sprogmappe for CMSform<sup>E</sup></h1> + </body> + </html> Index: install.php =================================================================== RCS file: /cvsroot/cmsforme/l10n/da/install.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- install.php 5 Mar 2005 21:07:50 -0000 1.2 +++ install.php 27 Jun 2005 01:22:44 -0000 1.3 @@ -1,9 +1,9 @@ <?php /******************************************************************* -* Filename: languages/danish/install.php -* Copyright: © 2003 CMSformE -* $Id$ +* Filename: l10n/da_DK/install.php +* Copyright: © 2003-2005 CMSformE +* $Id: install.php,v 1.2 2005/06/26 01:23:45 ******************************************************************* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -14,33 +14,35 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. +* * Translated by madsolsen | <mad...@st...> +* Translation comments goes to AlleyKat <cms...@ph...> *******************************************************************/ if( !( defined( 'ROOT' ) ) ) { - include( '../../includes/errors.php' ); + include( './../../includes/errors.php' ); viewed_alone(); } // Miscellaneous Variables -$lang += array( +$L10n->put_langs( array( 'title' => 'CMSform<sup>E</sup> Installation', 'back' => 'Tilbage', 'next' => 'Næste', 'step' => 'Skridt', 'language' => 'Sprog', 'percent_complete' => 'Procent fuldført' -); +) ); // Step One - Begin Installation -$lang += array( +$L10n->put_langs( array( 'welcome' => 'Velkommen til CMSform<sup>E</sup> Installationen', 'lang_select' => 'Vælg venligst et sprog fra boksen og tryk næste for at fortsætte' -); +) ); // Step Two - Perform Checks -$lang += array( +$L10n->put_langs( array( 'perform_checks' => 'CMSform<sup>E</sup> vil nu lave nogle undersøgelser af din server', 'if_failed' => 'Hvis der står "Fejlet" står ved en af undersøgelserne er din serveropsætning ikke optimal ', 'passed' => 'OK', @@ -48,10 +50,10 @@ 'php_check' => 'PHP Versionscheck', 'cache_check' => 'Cache mappe undersøgelse', 'config_check' => 'Config filens rettigheder undersøgelse' -); +) ); // Step Three - Enter Administrator Information -$lang += array( +$L10n->put_langs( array( 'admin_username' => 'Admin Brugernavn', 'admin_password' => 'Admin Kodeord', 'admin_password_confirm' => 'Acceptér Admin kodeord', @@ -60,10 +62,10 @@ 'blank_fields' => 'Du udfyldte ikke alle felterne - Det er påkrævet at du skriver i alle felterne', 'password_match' => 'Kodeordene passede ikke sammen - prøv igen', 'email_match' => 'Email adresserne passede ikke sammen - prøv igen.' -); +) ); // Step Four - Enter Database Information -$lang += array( +$L10n->put_langs( array( 'db_name' => 'Database Navn', 'db_type' => 'Database Type', 'db_user' => 'Database Brugernavn', @@ -71,10 +73,10 @@ 'db_host' => 'Database host', 'db_table_prefix' => 'Tabel præfiks', 'database_missing' => '<strong>includes/db/</strong> Mappen mangler - prøv igen ' -); +) ); // Step Five - Execute SQL Queries -$lang += array( +$L10n->put_langs( array( 'connect_failure' => 'Kunne ikke tilslutte databasen - undersøg om din databaseserver kører optimalt', 'running' => 'Kører', 'sql_error' => 'SQL Fejl', @@ -86,29 +88,29 @@ 'reset_time_failure' => 'Instalationstidspunktet blev ikke opdateret korrekt', 'user_replace_success' => 'Administrationsdata opdateret korrekt', 'user_replace_failure' => 'Administrationsdata blev ikke opdateret korrekt!' -); +) ); // Step Six - Write Files -$lang += array( +$L10n->put_langs( array( 'open_failure' => 'Kunne ikke åbne <strong>config.php</strong> til skrivning', 'write_failure' => 'Kunne ikke skrive til <strong>config.php</strong> filen', 'write_success' => 'Skrivning til <strong>config.php</strong> filen gennemført', 'find_failure' => 'Kunne ikke finde <strong>config.php</strong> filen' -); +) ); // Step Seven - GPL License -$lang += array( +$L10n->put_langs( array( 'license_explain' => 'CMSform<sup>E</sup> er udgivet under "GNU general public" licensen som vist herunder' -); +) ); // Step Eight - Credits -$lang += array( +$L10n->put_langs( array( 'credits_explain' => 'De følgende personer hjalp CMSform<sup>E</sup> med at blive hvad det er blevet i dag' -); +) ); // Step Nine - Continue to Index -$lang += array( +$L10n->put_langs( array( 'install_complete' => 'Installation fuldført - for at fortsætte til indekset skal du klikke %sHER%s.' -); +) ); ?> \ No newline at end of file Index: l10n.txt =================================================================== RCS file: /cvsroot/cmsforme/l10n/da/l10n.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- l10n.txt 12 Mar 2005 15:23:23 -0000 1.1 +++ l10n.txt 27 Jun 2005 01:22:44 -0000 1.2 @@ -1,2 +1,2 @@ -Danish -Dansk \ No newline at end of file +Danish (Denmark) +Dansk (Danmark) Index: common.php =================================================================== RCS file: /cvsroot/cmsforme/l10n/da/common.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- common.php 5 Mar 2005 21:05:27 -0000 1.2 +++ common.php 27 Jun 2005 01:22:44 -0000 1.3 @@ -1,10 +1,10 @@ <?php /******************************************************************* - * Filename: languages/danish/main.php - * Copyright: © 2003-2004 CMSformE - * $Id$ - * DK translation / Dansk oversættelse: AlleyKat (Finn Sørensen) <tra...@ph...> + * Filename: l10n/da_DK/common.php + * Copyright: © 2003-2005 CMSformE + * $Id: common.php,v 1.2 2005/06/26 01:23:45 + * DK translation / Dansk oversættelse: AlleyKat (Finn Sørensen) <cms...@ph...> ******************************************************************* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -19,19 +19,21 @@ if( !( defined( 'ROOT' ) ) ) { - include( '../../includes/errors.php' ); + include( './../../includes/errors.php' ); viewed_alone(); } +$L10n->current_page = 'common'; + // Language Details -$lang += array( +$L10n->put_langs( array( 'charset' => 'iso-8859-1', 'dir' => 'ltr', - 'lang' => 'da' -); + 'lang' => 'da_DK' +) ); // Miscellaneous -$lang += array( +$L10n->put_langs( array( 'back' => 'Tilbage', 'by' => 'Af', 'date' => 'Dato', @@ -45,7 +47,7 @@ 'no_auth' => 'Ikke Autoriseret', 'no_auth_explain' => 'Du har ikke adgang til denne funktion.', 'no_mode' => 'Ingen Modus', - 'no_mode_explain' => 'No mode was passed to the script.', + 'no_mode_explain' => 'Der blev ikke sendt en modus til scriptet.', 'posted' => 'Postet:', 're' => 'Ang:', 'remove_selected' => 'Fjern Valgte', @@ -55,10 +57,10 @@ 'top' => 'Tilbage til toppen', 'users' => 'Brugere', 'yes' => 'Ja' -); +) ); // Sidebar -$lang += array( +$L10n->put_langs( array( 'april' => 'April', 'archives' => 'Arkiver', 'august' => 'August', @@ -74,10 +76,10 @@ 'registered_user' => 'Der er <strong>1</strong> registreret bruger på dette CMSform<sup>E</sup>-system.', 'registered_users' => 'Der er <strong>%d</strong> registrerede brugere på dette CMSform<sup>E</sup>-system.', 'september' => 'September' -); +) ); // News -$lang += array( +$L10n->put_langs( array( 'allow_comments' => 'Tillad Kommentarer?', 'allow_ecode' => 'Tillad eCode?', 'article_empty' => 'Artiklen er Tom', @@ -134,18 +136,18 @@ 'recent_comments' => 'Nylige Kommentarer', 'short_text_explain' => 'Hvis du ikke vil vise hele artiklens tekst på forsiden, kan du indtaste en kort version herunder. Ellers lad feltet være tomt.', 'text_explain' => 'Indtast den fulde tekst for artiklen herunder.' -); +) ); // FAQ -$lang += array( +$L10n->put_langs( array( 'category' => 'Kategori', 'faq' => 'OSS', 'faq_empty' => 'OSS Tom', 'faq_empty_explain' => 'Beklager, der er ingen OSS-indlæg på dit sprog.' -); +) ); // Staff -$lang += array( +$L10n->put_langs( array( 'administrator' => 'Administrator', 'apply_staff' => 'Ansøg til Staben', 'approve_user' => 'Godkend Bruger', @@ -156,7 +158,7 @@ 'editor' => 'Redaktør', 'manage_staff' => 'Administrér Stabsmedlemmer', 'moderator' => 'Moderator', - 'no_apply_staff' => 'Application to Staff has been disabled by an Administrator.', + 'no_apply_staff' => 'Ansøgning til sidens stab er blevet slået fra af en Administrator.', 'no_staff' => 'Ingen Stab', 'no_staff_explain' => 'Din forespørgsel returnerede ikke nogen stabsmedlemmer.', 'no_staff_inactive' => 'Der er ingen inaktive stabsmedlemmer der kan godkendes.', @@ -166,10 +168,10 @@ 'staff_added' => 'Denne bruger blev tilføjet stabslisten.', 'staff_denied' => 'Denne brugers ansøgning om optagelse i staben er blevet afvist.', 'staff_pending' => 'Du er nu afventende stabsmedlem.' -); +) ); // Login -$lang += array( +$L10n->put_langs( array( 'already_logged_in' => 'Allerede Logget Ind', 'already_logged_in_explain' => 'Du er allerede logget ind.', 'auto_login_fail' => 'Automatisk Log Ind Fejlet', @@ -187,16 +189,16 @@ 'username' => 'Brugernavn', 'username_not_found' => 'Brugernavn Ikke Fundet', 'username_not_found_explain' => 'Bruger <strong>%s</strong> ikke fundet.' -); +) ); // User Control Panel (Default) -$lang += array( +$L10n->put_langs( array( 'default' => 'Standard', 'ucp' => 'Bruger Kontrolpanel' -); +) ); // User Control Panel (Register) -$lang += array( +$L10n->put_langs( array( 'aim' => 'AOL Instant Messenger', 'date_format' => 'Datoformat', 'email' => 'E-mail Adresse', @@ -223,34 +225,34 @@ 'username_taken' => 'Brugernavnet Allerede Taget', 'username_taken_explain' => 'Det brugernavn du valgte er allerede taget. Gå venligst tilbage og prøv med et andet navn.', 'yim' => 'Yahoo! Instant Messenger' -); +) ); // User Control Panel (Edit Profile) -$lang += array( +$L10n->put_langs( array( 'edit_profile' => 'Ret Profil', 'update_success' => 'Succes', 'update_success_explain' => 'Informationen korrekt opdateret!' -); +) ); // Footer -$lang += array( +$L10n->put_langs( array( 'admin_panel' => 'Administrator Kontrolpanel', 'article_panel' => 'Artikel Kontrolpanel', 'copyright' => 'Copyright © 2003-2004 CMSform<sup>E</sup> Udviklings Crew', 'generation_time' => 'Genereringstid', 'powered_by' => 'Drives af CMSform<sup>E</sup>', 'staff_panel' => 'Stab Kontrolpanel' -); +) ); // General Errors -$lang += array( +$L10n->put_langs( array( 'mail_status' => 'Failed sending %d emails' -); +) ); // E-mail Strings -$lang += array( +$L10n->put_langs( array( 'comment_notify_message' => "En ny kommentar er blevet postet af %s i artiklen %s.\nDu kan læse denne kommentar her: %s", 'comment_notify_subject' => 'Ny Kommentar Notifikation :: %s', -); +) ); ?> \ No newline at end of file |
|
From: Gordon P. H. <gph...@us...> - 2005-04-23 18:55:43
|
Update of /cvsroot/cmsforme/CMSformE/l10n/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8505/l10n/en Added Files: admin.php common.php l10n.txt Log Message: Implementing the new Localization and Modules engines. Both could use great improvement. --- NEW FILE: admin.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: l10n.txt --- English English --- NEW FILE: common.php --- (This appears to be a binary file; contents omitted.) |
|
From: Gordon P. H. <gph...@us...> - 2005-04-23 18:55:43
|
Update of /cvsroot/cmsforme/CMSformE/l10n/en_US In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8505/l10n/en_US Modified Files: admin.php common.php index.html Added Files: l10n.txt Log Message: Implementing the new Localization and Modules engines. Both could use great improvement. Index: admin.php =================================================================== RCS file: /cvsroot/cmsforme/CMSformE/l10n/en_US/admin.php,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- admin.php 4 Mar 2005 23:27:12 -0000 1.1 +++ admin.php 23 Apr 2005 18:55:32 -0000 1.2 @@ -18,25 +18,27 @@ if( !( defined( 'ROOT' ) ) ) { - include( '../../includes/errors.php' ); + include( './../../includes/errors.php' ); viewed_alone(); } +$L10n->current_page = 'admin'; + // Basics -$lang += array( +$L10n->put_langs( array( 'admin_index' => 'Admin Index', 'index' => 'Index' -); +) ); // Categories -$lang += array( +$L10n->put_langs( array( 'authorization' => 'Authorization', 'general' => 'General', 'users' => 'Users' -); +) ); // Pages -$lang += array( +$L10n->put_langs( array( 'auth_levels' => 'Authorization Levels', 'config' => 'Configuration', 'faq_categories' => 'FAQ Categories', @@ -45,10 +47,10 @@ 'news_types' => 'News Types', 'templates' => 'Templates', 'user_management' => 'User Management' -); +) ); // Statistics -$lang += array( +$L10n->put_langs( array( 'articles' => 'Articles', 'db_version' => '%s Version', 'php_version' => 'PHP Version', @@ -56,10 +58,10 @@ 'stats' => 'Statistics', 'table_prefix' => 'Table Prefix', 'version' => 'Version' -); +) ); // Warnings -$lang += array( +$L10n->put_langs( array( 'install_dir' => 'Install Directory', 'install_dir_explain' => 'The install directory still exists. This is a security risk.', 'install_lang' => 'Install Language Files', @@ -67,10 +69,10 @@ 'name' => 'Name', 'warning' => 'Warning', 'warnings' => 'Warnings' -); +) ); // Authorization Levels -$lang += array( +$L10n->put_langs( array( 'admin' => 'Administrator', 'auth_admin' => 'Administrator Privileges', 'auth_comment' => 'Make Comments', @@ -86,10 +88,10 @@ 'levels_updated' => 'Autorization Levels Updated', 'levels_updated_explain' => 'The authorization levels have been updated.', 'registered' => 'Registered' -); +) ); // Configuration -$lang += array( +$L10n->put_langs( array( 'apply_staff' => 'Allow users to apply to staff?', 'config_updated' => 'Configuration Updated', 'config_updated_explain' => 'The config has been updated.', @@ -102,19 +104,19 @@ 'site_keys' => 'Site Keywords', 'site_name' => 'Site Name', 'use_compiled_tpl' => 'Use Compiled Templates?' -); +) ); // FAQ Categories // STANDARDIZE -$lang += array( +$L10n->put_langs( array( 'category_name' => 'Category Name', 'category_removed_success' => 'You have successfully removed a category.', 'create_faq_category' => 'Create FAQ Category', 'faq_category_create_success' => 'You have successfully created an FAQ Category.' -); +) ); // FAQ Entries -$lang += array( +$L10n->put_langs( array( 'answer' => 'Answer', 'edit_faq_entry' => 'Edit FAQ Category', 'faq_added_explain' => 'You have successfully added a new FAQ entry.', @@ -123,10 +125,10 @@ 'new_faq_entry' => 'New FAQ Entry', 'question' => 'Question', 'select_category' => 'Select Category' -); +) ); // News Types -$lang += array( +$L10n->put_langs( array( 'move_contents' => 'Move Contents', 'new_news_category' => 'New News Type', 'news_categories' => 'News Categories', @@ -134,20 +136,20 @@ 'type_desc' => 'Type Description', 'type_name' => 'Type Name', 'type_url' => 'Type URL' -); +) ); // Templates -$lang += array( +$L10n->put_langs( array( 'inst_uninst_complete' => 'Install/Uninstall Complete', 'inst_uninst_complete_explain' => 'Installation/Uninstallation of styles completed successfully.', 'install' => 'Install?', 'installed_styles' => 'Installed Styles', 'uninstall' => 'Uninstall?', 'uninstalled_styles' => 'Uninstalled Styles' -); +) ); // User Information -$lang += array( +$L10n->put_langs( array( 'activate_user' => 'Activate User?', 'delete_user' => 'Delete User', 'delete_user_success_explain' => 'Successfully removed user from CMSform<sup>E</sup> system.', @@ -156,10 +158,10 @@ 'multi_users_explain' => 'Your query returned more than one user. Please use fewer wildcards.', 'no_users' => 'No Users Found', 'no_users_explain' => 'Your search returned no users. Please try a different username.' -); +) ); // eCode management -$lang += array( +$L10n->put_langs( array( 'enable_answer' => 'Enable in FAQ Answers?', 'enable_article' => 'Enable in News Articles?', 'enable_comment' => 'Enable in Comments?', @@ -169,6 +171,6 @@ 'manage_ecode' => 'Manage eCode', 'specific_enable' => 'Specific Locations', 'success_update_ecode' => 'Successfully updated ecodes' -); +) ); ?> \ No newline at end of file Index: index.html =================================================================== RCS file: /cvsroot/cmsforme/CMSformE/l10n/en_US/index.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- index.html 4 Mar 2005 23:27:12 -0000 1.1 +++ index.html 23 Apr 2005 18:55:32 -0000 1.2 @@ -1,10 +1,10 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html lang="en"> +<html lang="en_US"> <head> - <title>CMSformE - languages/english/ Directory</title> + <title>l10n/en_US/ Directory :: CMSformE</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> </head> <body> - <h1 align="center">languages/english/ Directory for CMSform<sup>E</sup></h1> + <h1 align="center">l10n/en_US/ Directory for CMSform<sup>E</sup></h1> </body> </html> --- NEW FILE: l10n.txt --- English (United States) English (United States) Index: common.php =================================================================== RCS file: /cvsroot/cmsforme/CMSformE/l10n/en_US/common.php,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- common.php 4 Mar 2005 23:27:12 -0000 1.1 +++ common.php 23 Apr 2005 18:55:32 -0000 1.2 @@ -1,7 +1,7 @@ <?php /******************************************************************* - * Filename: languages/english/main.php + * Filename: l10n/en_US/common.php * Copyright: © 2003-2005 CMSformE * $Id$ ******************************************************************* @@ -18,19 +18,21 @@ if( !( defined( 'ROOT' ) ) ) { - include( '../../includes/errors.php' ); + include( './../../includes/errors.php' ); viewed_alone(); } +$L10n->current_page = 'common'; + // Language Details -$lang += array( +$L10n->put_langs( array( 'charset' => 'iso-8859-1', 'dir' => 'ltr', - 'lang' => 'en' -); + 'lang' => 'en-US' +) ); // Miscellaneous -$lang += array( +$L10n->put_langs( array( 'back' => 'Back', 'by' => 'By', 'date' => 'Date', @@ -54,10 +56,10 @@ 'top' => 'Return to Top', 'users' => 'Users', 'yes' => 'Yes' -); +) ); // Sidebar -$lang += array( +$L10n->put_langs( array( 'april' => 'April', 'archives' => 'Archives', 'august' => 'August', @@ -73,10 +75,10 @@ 'registered_user' => 'There is <strong>1</strong> registered user on this CMSform<sup>E</sup> system.', 'registered_users' => 'There are <strong>%d</strong> registered users on this CMSform<sup>E</sup> system.', 'september' => 'September' -); +) ); // News -$lang += array( +$L10n->put_langs( array( 'allow_comments' => 'Allow Comments?', 'allow_ecode' => 'Allow eCode?', 'article_empty' => 'Article is Empty', @@ -133,18 +135,18 @@ 'recent_comments' => 'Recent Comments', 'short_text_explain' => 'If you do not want to display the full text of the article on the front page, enter a short version below. Otherwise, leave it empty.', 'text_explain' => 'Enter the full text of the article below.' -); +) ); // FAQ -$lang += array( +$L10n->put_langs( array( 'category' => 'Category', 'faq' => 'FAQ', 'faq_empty' => 'FAQ Empty', 'faq_empty_explain' => 'Sorry, there are no FAQ entries for your language.' -); +) ); // Staff -$lang += array( +$L10n->put_langs( array( 'administrator' => 'Administrator', 'apply_staff' => 'Apply to Staff', 'approve_user' => 'Approve User', @@ -165,10 +167,10 @@ 'staff_added' => 'This user was added to the roster of staff.', 'staff_denied' => 'This user\'s application for staff has been denied.', 'staff_pending' => 'You are now a pending staff member.' -); +) ); // Login -$lang += array( +$L10n->put_langs( array( 'already_logged_in' => 'Already Logged In', 'already_logged_in_explain' => 'You have already logged in.', 'auto_login_fail' => 'Automatic Login Failed', @@ -186,16 +188,16 @@ 'username' => 'Username', 'username_not_found' => 'Username Not Found', 'username_not_found_explain' => 'User <strong>%s</strong> not found.' -); +) ); // User Control Panel (Default) -$lang += array( +$L10n->put_langs( array( 'default' => 'Default', 'ucp' => 'User Control Panel' -); +) ); // User Control Panel (Register) -$lang += array( +$L10n->put_langs( array( 'aim' => 'AOL Instant Messenger', 'date_format' => 'Date Format', 'email' => 'E-mail Address', @@ -222,34 +224,34 @@ 'username_taken' => 'Username Already Taken', 'username_taken_explain' => 'The username you chose is already taken. Please go back and try a different one.', 'yim' => 'Yahoo! Instant Messenger' -); +) ); // User Control Panel (Edit Profile) -$lang += array( +$L10n->put_langs( array( 'edit_profile' => 'Edit Profile', 'update_success' => 'Success', 'update_success_explain' => 'Information Successfully Updated!' -); +) ); // Footer -$lang += array( +$L10n->put_langs( array( 'admin_panel' => 'Administrator Control Panel', 'article_panel' => 'Article Control Panel', 'copyright' => 'Copyright © 2003-2005 CMSform<sup>E</sup> Development Crew', 'generation_time' => 'Generation Time', 'powered_by' => 'Powered By CMSform<sup>E</sup>', 'staff_panel' => 'Staff Control Panel' -); +) ); // General Errors -$lang += array( +$L10n->put_langs( array( 'mail_status' => 'Failed sending %d emails' -); +) ); // E-mail Strings -$lang += array( +$L10n->put_langs( array( 'comment_notify_message' => "A new comment has been posted by %s in the article %s.\nYou can view this comment at %s", 'comment_notify_subject' => 'New Comment Notification :: %s', -); +) ); ?> \ No newline at end of file |
|
From: Rondom <ro...@us...> - 2005-04-10 20:00:30
|
Update of /cvsroot/cmsforme/l10n/de_DE In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7546/l10n/de_DE Modified Files: admin.php index.html install.php Log Message: Corrected some minor and one major mistake in admin.php and install.php, translated index.html Index: admin.php =================================================================== RCS file: /cvsroot/cmsforme/l10n/de_DE/admin.php,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- admin.php 7 Apr 2005 12:10:27 -0000 1.1 +++ admin.php 10 Apr 2005 20:00:00 -0000 1.2 @@ -90,7 +90,7 @@ // Configuration $lang += array( - 'apply_staff' => 'Benutzern erlauben sich an Admins und Editoren zu wenden?', + 'apply_staff' => 'Benutzern erlauben sich als Mitarbeiter zu bewerben?', 'config_updated' => 'Konfiguration aktualisiert', 'config_updated_explain' => 'Die Konfiguration Ihres CMSFormE wurde erfolgreich geändert.', 'default_date' => 'Standard Datumsformat', @@ -150,12 +150,12 @@ $lang += array( 'activate_user' => 'Benutzer aktivieren?', 'delete_user' => 'Benutzer löschen', - 'delete_user_success_explain' => 'DEr von Ihnen gewählte Benutzer wurde soeben gelöscht.', + 'delete_user_success_explain' => 'Der von Ihnen gewählte Benutzer wurde soeben gelöscht.', 'manage_users' => 'Benutzer verwalten', 'multi_users' => 'Zu viele Suchergebnisse', 'multi_users_explain' => 'Ihre Suchanfrage lieferte mehr als einen Benutzer. Bitte Benutzen Sie weniger Joker-Zeichen (Wildcards).', - 'no_users' => 'Keine Benutzer gefunden', - 'no_users_explain' => 'Ihre Suchanfrage brachte keine Ergebnisse. Bitte versuchen Sie es noch einmal.' // ??? + 'no_users' => 'Kein Benutzer gefunden', + 'no_users_explain' => 'Es wurde keine Benutzer, der Ihren Kriterien entspricht gefunden. Bitte versuchen Sie es noch einmal.' ); // eCode management Index: index.html =================================================================== RCS file: /cvsroot/cmsforme/l10n/de_DE/index.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- index.html 7 Apr 2005 12:10:27 -0000 1.1 +++ index.html 10 Apr 2005 20:00:00 -0000 1.2 @@ -1,10 +1,10 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html lang="en"> +<html lang="de"> <head> - <title>CMSformE - l10n/de_DE/ Directory</title> + <title>CMSformE - l10n/de_DE/ Verzeichnis</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> </head> <body> - <h1 align="center">l10n/de_DE/ Directory for CMSform<sup>E</sup></h1> + <h1 align="center">l10n/de_DE/ Verzeichnis für CMSform<sup>E</sup></h1> </body> </html> Index: install.php =================================================================== RCS file: /cvsroot/cmsforme/l10n/de_DE/install.php,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- install.php 7 Apr 2005 12:10:27 -0000 1.1 +++ install.php 10 Apr 2005 20:00:00 -0000 1.2 @@ -75,7 +75,7 @@ // Step Five - Execute SQL Queries $lang += array( 'connect_failure' => 'Es konnte keine Verbindung mit der Datenbank hergestellt werden. Bitte überprüfen Sie die von Ihnen eingegebenen Daten und vergewissern Sie sich, dass Ihr Datenbankserver läuft.', - 'running' => 'Running', // ??? + 'running' => 'Ausführen der Änderungen an der Datenbank', 'sql_error' => 'SQL-Fehler', 'structure_success' => 'Das Eintragen der Tabellen in die Datenbank war erfolgreich.', 'structure_failure' => 'Beim Eintragen der Tabellen in die Datenbank ist ein Fehler aufgetreten!', |
|
From: Rondom <ro...@us...> - 2005-04-07 12:10:40
|
Update of /cvsroot/cmsforme/l10n/de_DE In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11888/l10n/de_DE Added Files: admin.php common.php index.html install.php Log Message: First quick and dirty version of admin.php, install.php and unfinished common.php --- NEW FILE: admin.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: index.html --- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en"> <head> <title>CMSformE - l10n/de_DE/ Directory</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> </head> <body> <h1 align="center">l10n/de_DE/ Directory for CMSform<sup>E</sup></h1> </body> </html> --- NEW FILE: install.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: common.php --- (This appears to be a binary file; contents omitted.) |
|
From: Rondom <ro...@us...> - 2005-04-03 18:26:19
|
Update of /cvsroot/cmsforme/l10n/de In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7333/de Removed Files: admin.php common.php index.html install.php Log Message: After talked to GPHemsley, I removed the files here --- admin.php DELETED --- --- index.html DELETED --- --- install.php DELETED --- --- common.php DELETED --- |
|
From: Rondom <ro...@us...> - 2005-04-03 12:57:37
|
Update of /cvsroot/cmsforme/l10n/de In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19113/de Added Files: admin.php common.php index.html install.php Log Message: Copied English files --- NEW FILE: admin.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: index.html --- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en"> <head> <title>CMSformE - languages/english/ Directory</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> </head> <body> <h1 align="center">languages/english/ Directory for CMSform<sup>E</sup></h1> </body> </html> --- NEW FILE: install.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: common.php --- (This appears to be a binary file; contents omitted.) |
|
From: Gordon P. H. <gph...@us...> - 2005-03-12 16:37:30
|
Update of /cvsroot/cmsforme/l10n/es_ES In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2884/es_ES Modified Files: l10n.txt Log Message: Changed formatting of names of localized languages. Index: l10n.txt =================================================================== RCS file: /cvsroot/cmsforme/l10n/es_ES/l10n.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- l10n.txt 12 Mar 2005 15:23:48 -0000 1.1 +++ l10n.txt 12 Mar 2005 16:36:49 -0000 1.2 @@ -1,2 +1,2 @@ -Spanish, Spain -Español, España \ No newline at end of file +Spanish (Spain) +Español (España) \ No newline at end of file |
|
From: Gordon P. H. <gph...@us...> - 2005-03-12 16:37:30
|
Update of /cvsroot/cmsforme/l10n/es_MX In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2884/es_MX Modified Files: l10n.txt Log Message: Changed formatting of names of localized languages. Index: l10n.txt =================================================================== RCS file: /cvsroot/cmsforme/l10n/es_MX/l10n.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- l10n.txt 12 Mar 2005 15:23:49 -0000 1.1 +++ l10n.txt 12 Mar 2005 16:36:50 -0000 1.2 @@ -1,2 +1,2 @@ -Spanish, Mexico -Español, México \ No newline at end of file +Spanish (Mexico) +Español (México) \ No newline at end of file |
|
From: Gordon P. H. <gph...@us...> - 2005-03-12 16:37:29
|
Update of /cvsroot/cmsforme/l10n/en_GB In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2884/en_GB Modified Files: l10n.txt Log Message: Changed formatting of names of localized languages. Index: l10n.txt =================================================================== RCS file: /cvsroot/cmsforme/l10n/en_GB/l10n.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- l10n.txt 12 Mar 2005 15:23:29 -0000 1.1 +++ l10n.txt 12 Mar 2005 16:36:48 -0000 1.2 @@ -1,2 +1,2 @@ -English, United Kingdom -English, United Kingdom \ No newline at end of file +English (United Kingdom) +English (United Kingdom) \ No newline at end of file |
|
From: Gordon P. H. <gph...@us...> - 2005-03-12 16:37:28
|
Update of /cvsroot/cmsforme/l10n/de_DE In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2884/de_DE Modified Files: l10n.txt Log Message: Changed formatting of names of localized languages. Index: l10n.txt =================================================================== RCS file: /cvsroot/cmsforme/l10n/de_DE/l10n.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- l10n.txt 12 Mar 2005 15:23:27 -0000 1.1 +++ l10n.txt 12 Mar 2005 16:36:45 -0000 1.2 @@ -1,2 +1,2 @@ -German, Germany -Deutsch, Deutschland \ No newline at end of file +German (Germany) +Deutsch (Deutschland) \ No newline at end of file |
|
From: Gordon P. H. <gph...@us...> - 2005-03-12 16:37:28
|
Update of /cvsroot/cmsforme/l10n/en_CA In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2884/en_CA Modified Files: l10n.txt Log Message: Changed formatting of names of localized languages. Index: l10n.txt =================================================================== RCS file: /cvsroot/cmsforme/l10n/en_CA/l10n.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- l10n.txt 12 Mar 2005 15:23:28 -0000 1.1 +++ l10n.txt 12 Mar 2005 16:36:47 -0000 1.2 @@ -1,2 +1,2 @@ -English, Canada -English, Canada \ No newline at end of file +English (Canada) +English (Canada) \ No newline at end of file |
|
From: Gordon P. H. <gph...@us...> - 2005-03-12 16:37:21
|
Update of /cvsroot/cmsforme/l10n/fr_FR In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2884/fr_FR Modified Files: l10n.txt Log Message: Changed formatting of names of localized languages. Index: l10n.txt =================================================================== RCS file: /cvsroot/cmsforme/l10n/fr_FR/l10n.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- l10n.txt 12 Mar 2005 15:23:54 -0000 1.1 +++ l10n.txt 12 Mar 2005 16:37:08 -0000 1.2 @@ -1,2 +1,2 @@ -French, France -Français, France \ No newline at end of file +French (France) +Français (France) \ No newline at end of file |
|
From: Gordon P. H. <gph...@us...> - 2005-03-12 16:37:21
|
Update of /cvsroot/cmsforme/l10n/it_CH In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2884/it_CH Modified Files: l10n.txt Log Message: Changed formatting of names of localized languages. Index: l10n.txt =================================================================== RCS file: /cvsroot/cmsforme/l10n/it_CH/l10n.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- l10n.txt 12 Mar 2005 15:29:04 -0000 1.1 +++ l10n.txt 12 Mar 2005 16:37:08 -0000 1.2 @@ -1,2 +1,2 @@ -Italian, Switzerland -Italiano, Svizzera \ No newline at end of file +Italian (Switzerland) +Italiano (Svizzera) \ No newline at end of file |
|
From: Gordon P. H. <gph...@us...> - 2005-03-12 16:37:17
|
Update of /cvsroot/cmsforme/l10n/fr_CA In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2884/fr_CA Modified Files: l10n.txt Log Message: Changed formatting of names of localized languages. Index: l10n.txt =================================================================== RCS file: /cvsroot/cmsforme/l10n/fr_CA/l10n.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- l10n.txt 12 Mar 2005 15:23:52 -0000 1.1 +++ l10n.txt 12 Mar 2005 16:36:51 -0000 1.2 @@ -1,2 +1,2 @@ -French, Canada -Français, Canada \ No newline at end of file +French (Canada) +Français (Canada) \ No newline at end of file |
|
From: Gordon P. H. <gph...@us...> - 2005-03-12 15:29:16
|
Update of /cvsroot/cmsforme/l10n/it In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17522/it Added Files: l10n.txt Log Message: - Added l10n.txt files for each language. It identifies the name of the language: English on the first line, localized translation on the second. - British English should go in en_GB/. The addition of en_UK/ was a mistake. --- NEW FILE: l10n.txt --- Italian Italiano |
|
From: Gordon P. H. <gph...@us...> - 2005-03-12 15:29:15
|
Update of /cvsroot/cmsforme/l10n/it_CH In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17522/it_CH Added Files: l10n.txt Log Message: - Added l10n.txt files for each language. It identifies the name of the language: English on the first line, localized translation on the second. - British English should go in en_GB/. The addition of en_UK/ was a mistake. --- NEW FILE: l10n.txt --- Italian, Switzerland Italiano, Svizzera |
|
From: Gordon P. H. <gph...@us...> - 2005-03-12 15:28:25
|
Update of /cvsroot/cmsforme/l10n/it_CH In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17265/it_CH Log Message: Directory /cvsroot/cmsforme/l10n/it_CH added to the repository |