additional_plugins/serendipity_plugin_sidebarlogo/lang_en.inc.php
ogerlach 5bda33991f Made changes to plugin sidebarlogo:
1. alt attribute is now supported for logo and is set by default to comply to the HTML spec.
2. style tag is now longer produced. Instead, inline styles are defined for each element
   separately. Alternatively, CSS classes or id can be specified by prepending '.' or '#'.
3. User interface is simplified by putting all style definitions into subgroup 'styles'
   and advanced elements into group 'advanced elements and options'. Only the most basic
   option as description and logo are visible by default.
4. Ordering of elements is now enhanced with an option to enable and disable elements. The
   corresponding sequence option is also grouped into 'advanced elements and options'. By
   default only logo and description are visible.
5. A delimiter element is available now. It allows flow control for the logo if floating
   styles are defined.
6. German language file was added and English language file enhanced.

In summary, styles are now specified in a way that produces valid HTML. The image tag was
also changed to be HTML valid. The user interface was modified to make the plugin more
accessible for new users while preserving all options. User that need nothing more than
a simple about box better served now with the basic option while all other users can still
make use of all other elements.
2013-11-27 18:52:00 +01:00

53 lines
4.6 KiB
PHP

<?php #
/**
* @version 0.4
* @author Adam Krause (http://www.pigslipstick.com/), Oliver Gerlach (http://stumblingpilgrim.net/)
* EN-Revision: Revision of lang_en.inc.php
*/
@define('PLUGIN_SIDEBARLOGO_NAME', 'SideBar Logo');
@define('PLUGIN_SIDEBARLOGO_DESC', 'Displays a panel containing your logo with a description including all relevant information about your site (an about box).');
@define('PLUGIN_SIDEBARLOGO_AUTH', 'Adam Krause & Oliver Gerlach');
@define('PLUGIN_SIDEBARLOGO_GROUP_MOREOPTIONS', 'More Fields & Options');
@define('PLUGIN_SIDEBARLOGO_GROUP_STYLES', 'Styling');
@define('PLUGIN_SIDEBARLOGO_TITLE', 'Title');
@define('PLUGIN_SIDEBARLOGO_TITLE_DESC', 'Text for sidebar item title bar');
@define('PLUGIN_SIDEBARLOGO_IMAGE', 'Logo');
@define('PLUGIN_SIDEBARLOGO_IMAGE_DESC', 'image from media library to display in content section or leave blank for no image');
@define('PLUGIN_SIDEBARLOGO_IMAGEWIDTH', 'Image Width');
@define('PLUGIN_SIDEBARLOGO_IMAGEWIDTH_DESC', 'display width of logo (use CSS definitions like 50px or 200% or leave blank for no constraint)');
@define('PLUGIN_SIDEBARLOGO_IMAGEHEIGHT', 'Image Height');
@define('PLUGIN_SIDEBARLOGO_IMAGEHEIGHT_DESC', 'display height of logo (use CSS definitions like 50px or 200% or leave blank for no constraint)');
@define('PLUGIN_SIDEBARLOGO_IMAGETEXT', 'Image Text');
@define('PLUGIN_SIDEBARLOGO_IMAGETEXT_DESC', 'descriptive text for image (required)');
@define('PLUGIN_SIDEBARLOGO_IMAGETEXT_MISSING', 'no description');
@define('PLUGIN_SIDEBARLOGO_DESCRIPTION', 'Description text');
@define('PLUGIN_SIDEBARLOGO_DESCRIPTION_DESC', 'Descriptive text for your blog or whatever you want to write. HTML can be used for further formatting.');
@define('PLUGIN_SIDEBARLOGO_IMAGESTYLE', 'Image Style');
@define('PLUGIN_SIDEBARLOGO_IMAGESTYLE_DESC', 'style to use for your logo. Start text with "." to provide a CSS id, with a "#" to provide a class or use inline styling directly');
@define('PLUGIN_SIDEBARLOGO_DESCRIPTIONSTYLE', 'Description Style');
@define('PLUGIN_SIDEBARLOGO_DESCRIPTIONSTYLE_DESC', 'style to use for your description. Start text with "." to provide a CSS id, with a "#" to provide a class, use direct styling or leave it blank to use default sidebar styling (recommended)');
@define('PLUGIN_SIDEBARLOGO_DEFAULT_DESCRIPTION', 'Enter your text here');
@define('PLUGIN_SIDEBARLOGO_SITENAME', 'Site Name');
@define('PLUGIN_SIDEBARLOGO_SITENAME_DESC', 'The name of your web site (e.g. My New Blog)');
@define('PLUGIN_SIDEBARLOGO_SITENAMESTYLE', 'Site Name Style');
@define('PLUGIN_SIDEBARLOGO_SITENAMESTYLE_DESC', 'style to use for your site name. Start text with "." to provide a CSS id, with a "#" to provide a class or use inline styling directly');
@define('PLUGIN_SIDEBARLOGO_SITETAG', 'Tag Line');
@define('PLUGIN_SIDEBARLOGO_SITETAG_DESC', 'a slogan or tag line (e.g. Blogging for life)');
@define('PLUGIN_SIDEBARLOGO_SITETAGSTYLE', 'Site Tag Style');
@define('PLUGIN_SIDEBARLOGO_SITETAGSTYLE_DESC', 'style to use for your site tag. Start text with "." to provide a CSS id, with a "#" to provide a class or use inline styling directly');
@define('PLUGIN_SIDEBARLOGO_CONTACT', 'Contact Information');
@define('PLUGIN_SIDEBARLOGO_CONTACT_DESC', 'An email address or mailto link ("Contact me: <a href=mailto:john@doe.com>John Doe</a>")');
@define('PLUGIN_SIDEBARLOGO_CONTACTSTYLE', 'Contact style');
@define('PLUGIN_SIDEBARLOGO_CONTACTSTYLE_DESC', 'style to use for your contact information. Start text with "." to provide a CSS id, with a "#" to provide a class or use inline styling directly');
@define('PLUGIN_SIDEBARLOGO_COPYRIGHT', 'Copyright');
@define('PLUGIN_SIDEBARLOGO_COPYRIGHT_DESC', 'Tiny text, best used for copyright or legal statement (copyright symbol: "&copy;")');
@define('PLUGIN_SIDEBARLOGO_COPYRIGHTSTYLE', 'Copyright Style');
@define('PLUGIN_SIDEBARLOGO_COPYRIGHTSTYLE_DESC', 'style to use for your contact information. Start text with "." to provide a CSS id, with a "#" to provide a class or use inline styling directly');
@define('PLUGIN_SIDEBARLOGO_DELIMITER', 'Delimiter');
@define('PLUGIN_SIDEBARLOGO_DELIMITERSTYLE', 'Delimiter Styling');
@define('PLUGIN_SIDEBARLOGO_DELIMITERSTYLE_DESC', 'Styling for the delimiter. The delimiter is a text flow control elment. It forces the rest of the box or the page to continue below the logo. Normally you do not need to change this style. Only do if you change your image style as well.');
@define('PLUGIN_SIDEBARLOGO_SEQUENCE', 'Sequence');
@define('PLUGIN_SIDEBARLOGO_SEQUENCE_DESC', 'Define the sequence of your SideBar Logo elements and enable or disable them (Default is logo, description, delimiter).');
?>