Update of /cvsroot/php-blog/serendipity/lang
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25764/lang
Modified Files:
serendipity_lang_en.inc.php
Removed Files:
serendipity_config_local_en.tpl serendipity_config_user_en.tpl
Log Message:
Okay, so here we go.
* Moved away from the silly idea of having the basic configs in each .tpl file.
Now we have two .tpl files with constants, these constants are for translations, which are translated in the normal lang files
This also means that the parsing of the .tpl files has changes a little (I hope I didn't break anything), the last and final
parameter in the {|||} part is called [flags], the current flags are: "installOnly"
which only shows the config item during installation. Flags are comma(,)-seperated, this will hopefully be the last parameter in the tpl files...
* Did a little redesign for the plugin manager, more to come
* Fixed some bugs, which I will remember to put in the NEWS file when I think of them :) Don't worry :)
Will port the remaining languages when I have time, but it's a lot of work :)
BE CAREFUL WITH THIS, I AM SORRY IF I BROKE SOMETHING - I'VE TESTED IT THE BEST I COULD... PLEASE DO SOME TESTING ALSO...
--- serendipity_config_local_en.tpl DELETED ---
Index: serendipity_lang_en.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/lang/serendipity_lang_en.inc.php,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- serendipity_lang_en.inc.php 11 Jun 2004 12:19:22 -0000 1.34
+++ serendipity_lang_en.inc.php 11 Jun 2004 21:49:15 -0000 1.35
@@ -392,5 +392,114 @@
@define('NUMBER_FORMAT_DECIMALS', '2');
@define('NUMBER_FORMAT_DECPOINT', '.');
@define('NUMBER_FORMAT_THOUSANDS', ',');
+
+@define('PERMISSIONS', 'Permissions');
+
+/* DATABASE SETTINGS */
+@define('INSTALL_CAT_DB', 'Database settings');
+@define('INSTALL_CAT_DB_DESC', 'Here you can enter all your database information. Serendipity needs this to be able to function');
+@define('INSTALL_DBTYPE', 'Database type');
+@define('INSTALL_DBTYPE_DESC', 'Database type (Supported are: mysql|postgres)');
+@define('INSTALL_DBHOST', 'Database host');
+@define('INSTALL_DBHOST_DESC', 'The hostname for your database');
+@define('INSTALL_DBUSER', 'Database user');
+@define('INSTALL_DBUSER_DESC', 'The username used to connect to your database');
+@define('INSTALL_DBPASS', 'Database password');
+@define('INSTALL_DBPASS_DESC', 'The password matching the above username');
+@define('INSTALL_DBNAME', 'Database name');
+@define('INSTALL_DBNAME_DESC', 'The name of your datbase');
+@define('INSTALL_DBPREFIX', 'Database table prefix');
+@define('INSTALL_DBPREFIX_DESC', 'Prefix for the table names, i.e. serendipity_');
+
+/* PATHS */
+@define('INSTALL_CAT_PATHS', 'Paths');
+@define('INSTALL_CAT_PATHS_DESC', 'Various paths to different essential folders and files. Don\'t forget trailing slashes for directories!');
+@define('INSTALL_FULLPATH', 'Full path');
+@define('INSTALL_FULLPATH_DESC', 'The full and absolute path to your serendipity installation');
+@define('INSTALL_UPLOADPATH', 'Upload path');
+@define('INSTALL_UPLOADPATH_DESC', 'All uploads will go here, relative to the \'Full path\' - typically \'uploads/\'');
+@define('INSTALL_RELPATH', 'Relative path');
+@define('INSTALL_RELPATH_DESC', 'Path to serendipity for your browser, typically \'/serendipity/\'');
+@define('INSTALL_RELTEMPLPATH', 'Relative template path');
+@define('INSTALL_RELTEMPLPATH_DESC', 'The path to the folder containing your templates - Relative to the \'relative path\'');
+@define('INSTALL_RELUPLOADPATH', 'Relative upload path');
+@define('INSTALL_RELUPLOADPATH_DESC', 'Path to your uploads for browsers - Relative to the \'relative path\'');
+@define('INSTALL_URL', 'URL to blog');
+@define('INSTALL_URL_DESC', 'Base URL to your serendipity installation');
+@define('INSTALL_INDEXFILE', 'Index file');
+@define('INSTALL_INDEXFILE_DESC', 'The name of your serendipity index file');
+
+/* Generel settings */
+@define('INSTALL_CAT_SETTINGS', 'General settings');
+@define('INSTALL_CAT_SETTINGS_DESC', 'Customize how Serendipity behaves');
+@define('INSTALL_USERNAME', 'Admin username');
+@define('INSTALL_USERNAME_DESC', 'Username for admin login');
+@define('INSTALL_PASSWORD', 'Admin password');
+@define('INSTALL_PASSWORD_DESC', 'Password for admin login');
+@define('INSTALL_EMAIL', 'Admin email');
+@define('INSTALL_EMAIL_DESC', 'Email for the blog administrator');
+@define('INSTALL_SENDMAIL', 'Send mails to admin?');
+@define('INSTALL_SENDMAIL_DESC', 'Do you want to receive emails when comments are posted to your entries?');
+@define('INSTALL_SUBSCRIBE', 'Allow users to subscribe to entries?');
+@define('INSTALL_SUBSCRIBE_DESC', 'Allow users to subscribe to an entry and thereby receive a mail when new comments are made to that entry');
+@define('INSTALL_BLOGNAME', 'Blog name');
+@define('INSTALL_BLOGNAME_DESC', 'The title of your blog');
+@define('INSTALL_BLOGDESC', 'Blog description');
+@define('INSTALL_BLOGDESC_DESC', 'Description of your blog');
+@define('INSTALL_LANG', 'Language');
+@define('INSTALL_LANG_DESC', 'Select the language for your blog');
+
+/* Appearance and options */
+@define('INSTALL_CAT_DISPLAY', 'Appearance and options');
+@define('INSTALL_CAT_DISPLAY_DESC', 'Customize how Serendipity looks and feels');
+@define('INSTALL_EXTERNALSTYLE', 'External Stylesheet');
+@define('INSTALL_EXTERNALSTYLE_DESC', 'You can define a stylesheet URI here, aditionally to the settings adjustable in the admin interface (enter \'none\' if you don\'t need this)');
+@define('INSTALL_WYSIWYG', 'Use WYSIWYG editor');
+@define('INSTALL_WYSIWYG_DESC', 'Do you want to use the WYSIWYG editor? (Works on IE5+, partially in Mozilla 1.3+)');
+@define('INSTALL_XHTML11', 'Force XHTML 1.1 compliance');
+@define('INSTALL_XHTML11_DESC', 'Do you want to force XHTML 1.1 compliance (may cause problems for back-/frontend on older 4th generation browsers)');
+@define('INSTALL_POPUP', 'Enable use of popup windows');
+@define('INSTALL_POPUP_DESC', 'Do you want to use the blog to use popup windows for comments, trackbacks et al?');
+@define('INSTALL_EMBED', 'Is serendipity embedded?');
+@define('INSTALL_EMBED_DESC', 'If you want to embed serendipity within a regular page, set to true to discard any headers and just print the contents. You can make use of the indexFile option to use a wrapper class where you put your normal webpage headers. See the README file for more information!');
+@define('INSTALL_BLOCKREF', 'Blocked Referers');
+@define('INSTALL_BLOCKREF_DESC', 'Are there any special hosts you want not to show up in the referers list? Separate the list of hostnames with \';\' and note that the host is blocked by substring matches!');
+@define('INSTALL_REWRITE', 'URL Rewriting');
+@define('INSTALL_REWRITE_DESC', 'Select which rules you wish to use when generating URLs. Enabling rewrite rules will make pretty URLs for your blog and make it better indexable for spiders like google. The webserver needs to support either mod_rewrite or "AllowOverride All" for your serendipity dir. The default setting is auto-detected');
+
+/* Imageconversion Settings */
+@define('INSTALL_CAT_IMAGECONV', 'Imageconversion Settings');
+@define('INSTALL_CAT_IMAGECONV_DESC', 'Enter general information about how serendipity should handle Images');
+@define('INSTALL_IMAGEMAGICK', 'Use Imagemagick');
+@define('INSTALL_IMAGEMAGICK_DESC', 'Do you have image magick installed and want to use it to resize images?');
+@define('INSTALL_IMAGEMAGICKPATH', 'Path to convert binary');
+@define('INSTALL_IMAGEMAGICKPATH_DESC', 'Full path & name of your image magick convert binary');
+@define('INSTALL_THUMBSUFFIX', 'Thumbnail suffix');
+@define('INSTALL_THUMBSUFFIX_DESC', 'Thumbnails will be named with the following format: original.[suffix].ext');
+@define('INSTALL_THUMBWIDTH', 'Thumbnail dimensions');
+@define('INSTALL_THUMBWIDTH_DESC', 'Static maximum width of auto-generated thumbnails');
+
+/* Personal details */
+@define('USERCONF_CAT_PERSONAL', 'Your personal details');
+@define('USERCONF_CAT_PERSONAL_DESC', 'Change your personal details');
+@define('USERCONF_USERNAME', 'Your username');
+@define('USERCONF_USERNAME_DESC', 'The username you use to log in to the blog');
+@define('USERCONF_PASSWORD', 'Your password');
+@define('USERCONF_PASSWORD_DESC', 'The password you wish to use to log in to the blog');
+@define('USERCONF_USERLEVEL', 'Permissionlevel');
+@define('USERCONF_USERLEVEL_DESC', 'Userlevel. Should be one of the following: [USERLEVEL_ADMIN] - Admin, [USERLEVEL_CHIEF] - Chief editor, [USERLEVEL_EDITOR] - Standard editor.');
+@define('USERCONF_EMAIL', 'Your e-mail address');
+@define('USERCONF_EMAIL_DESC', 'Your personal e-mail address');
+@define('USERCONF_SENDCOMMENTS', 'Send comment announcements?');
+@define('USERCONF_SENDCOMMENTS_DESC', 'Do you want to receive emails when comments are posted to your entries?');
+@define('USERCONF_SENDTRACKBACKS', 'Send trackback announcements?');
+@define('USERCONF_SENDTRACKBACKS_DESC', 'Do you want to receive emails when trackbacks are posted to your entries?');
+@define('USERCONF_ALLOWPUBLISH', 'Rights: Publishing entries?');
+@define('USERCONF_ALLOWPUBLISH_DESC', 'Is this user allowed to publish entries?');
+
+
+
+
+
/* vim: set sts=4 ts=4 expandtab : */
?>
--- serendipity_config_user_en.tpl DELETED ---
|