diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f88d33..e424ed8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ -# Under development: [FlatPress 1.3 "Andante"](https://github.com/flatpressblog/flatpress/releases/tag/1.3) +# Currently betatesting: [FlatPress 1.3 "Andante"](https://github.com/flatpressblog/flatpress/releases/tag/1.3.beta1) +- [Please help us testing](https://forum.flatpress.org/viewtopic.php?t=709) :) + ## Changed requirements -- FlatPress 1.3 runs under PHP up to **8.2**; minimum required PHP version increases to **7.1**. +- FlatPress 1.3 runs under PHP up to **8.3**; minimum required PHP version increases to **7.1**. - Also, the PHP extension [**intl**](https://www.php.net/manual/book.intl.php) becomes mandatory. ## General @@ -79,6 +81,8 @@ - Fixed vertical alignment of BBCode toolbar in write panel - Removes obsolete acronym element in the language files and replaces it with the abbr element - The menu bar in Leggero style is now centered if the screen width is less than 768px + - URLs to the wiki or other external pages are now opened in a second tab in the administration area + - External URLs in the administration area are now exclusively HTTPS ## Internationalization - Added translation: Slovenian, Danish and Russian ([#278](https://github.com/flatpressblog/flatpress/issues/278)) @@ -89,6 +93,7 @@ - Contact form: Admin notification mail is now localized ([#205](https://github.com/flatpressblog/flatpress/issues/205)) - Setup tries to determine local language automatically ([#197](https://github.com/flatpressblog/flatpress/issues/197), [#216](https://github.com/flatpressblog/flatpress/issues/216), [#262](https://github.com/flatpressblog/flatpress/issues/262)) - The HTML of the installer now has a lang attribute in the html start tag to specify the language. +- BBcode toolbar: Internationalized button titles translated to the end ## Bugfixes - Plugin management page: Removed empty warning messages box diff --git a/README.md b/README.md index ffd6e7a..c48e13a 100644 --- a/README.md +++ b/README.md @@ -31,13 +31,18 @@ Installing and running FlatPress is really easy: - Browse to your web server, run simple FlatPress installer - Enjoy blogging with FlatPress! +## Demo +You can view live demo here: + +https://softaculous.com/demos/flatpress + ## Help and support Visit our [wiki](https://wiki.flatpress.org) to learn everything about blogging with FlatPress, how to work with themes and plugins and where to find them. The wiki also has the [General FAQ](https://wiki.flatpress.org/doc:faq) and the [Tech FAQ](https://wiki.flatpress.org/doc:techfaq). Ask your questions, show off your FlatPress blog and meet fellow FlatPressers at the [support forum](https://forum.flatpress.org). ## Requirements -FlatPress runs on any web server (e.g. Apache or IIS) with PHP 7.1 to PHP 8.2 (more details [on the wiki](https://wiki.flatpress.org/doc:techfaq#what_is_required_to_run_flatpress)). Since all data is stored in files, no database is needed. +FlatPress runs on any web server (e.g. Apache or IIS) with PHP 7.1 to PHP 8.3 (more details [on the wiki](https://wiki.flatpress.org/doc:techfaq#what_is_required_to_run_flatpress)). Since all data is stored in files, no database is needed. ## Credits There are many people who contributed to FlatPress over the years. [See them here.](./CONTRIBUTORS.md) diff --git a/defaults.php b/defaults.php index 5ef0ce3..68d3422 100755 --- a/defaults.php +++ b/defaults.php @@ -18,10 +18,11 @@ define('DUMB_MODE_ENABLED', false); // default file permissions -// change file to 776 and dir to 776 if your webserver "complains" +// https://binary-butterfly.de/artikel/dateirechte-wie-stelle-ich-das-bei-meinem-hoster-ein/ +// change file to 666 and dir to 777 if your webserver "complains" // Note: Lowering the directory and file permissions may result in FlatPress or some additional plugins not working correctly. -define('FILE_PERMISSIONS', 0776); -define('DIR_PERMISSIONS', 0776); +define('FILE_PERMISSIONS', 0666); +define('DIR_PERMISSIONS', 0777); // first some webserver setup... @@ -34,6 +35,9 @@ define('SESSION_PATH', ''); define('ABS_PATH', dirname(__FILE__) . '/'); // here was blog root in earlier versions. This has been moved to config_load() +// Is required so that the file and directory permissions can be set when executing the setup +define('BASE_DIR', dirname(__FILE__)); + // here are default config files define('FP_DEFAULTS', 'fp-defaults/'); diff --git a/docs/README-SmartyValidate b/docs/README-SmartyValidate deleted file mode 100755 index e75656e..0000000 --- a/docs/README-SmartyValidate +++ /dev/null @@ -1,1089 +0,0 @@ -NAME: - - SmartyValidate: a class/plugin for validating form variables - within the Smarty template environment. - -AUTHOR: - Monte Ohrt (monte [AT] ohrt [DOT] com) - -VERSION: - 2.6 - -DATE: - February 7th, 2005 - -WEBSITE: - http://www.phpinsider.com/php/code/SmartyValidate/ - -DOWNLOAD: - http://www.phpinsider.com/php/code/SmartyValidate/SmartyValidate-current.tar.gz - -ANONYMOUS CVS: (leave password empty) - cvs -d :pserver:anonymous@cvs.phpinsider.com:/export/CVS login - cvs -d :pserver:anonymous@cvs.phpinsider.com:/export/CVS checkout SmartyValidate - -SYNOPSIS: - - index.php - --------- - - session_start(); - require('Smarty.class.php'); - require('SmartyValidate.class.php'); - - $smarty =& new Smarty; - - - if(empty($_POST)) { - SmartyValidate::connect($smarty, true); - SmartyValidate::register_validator('fname','FullName','notEmpty'); - SmartyValidate::register_validator('fdate','Date','isDate'); - $smarty->display('form.tpl'); - } else { - SmartyValidate::connect($smarty); - // validate after a POST - if(SmartyValidate::is_valid($_POST)) { - // no errors, done with SmartyValidate - SmartyValidate::disconnect(); - $smarty->display('success.tpl'); - } else { - // error, redraw the form - $smarty->assign($_POST); - $smarty->display('form.tpl'); - } - } - - form.tpl - -------- - -
- - {validate id="fname" message="Full Name cannot be empty"} - Full Name: - - {validate id="fdate" message="Date is not valid"} - Date: - - -
- -DESCRIPTION: - - What is SmartyValidate? - - SmartyValidate is a form validation class. Its design goals are to - leverage the Smarty templating environment and make form validation - as easy and flexible as possible. - -BACKGROUND: - - Form validation is one of the most frequently performed tasks when - it comes to web application programming. Developing form validation - can be a tedious and time consuming task. SmartyValidate simplifies - this effort by abstracting the validation process. You basically - provide the validation criteria and error messages, SmartyValidate - does the rest! - - On the application side, you call SmartyValidate::connect($smarty) first, - passing your smarty object as the parameter. Then you register your - validators with the SmartyValidate::register_validator() function, once for - each validation criteria on the form. Once the form is posted, you call - SmartyValidate::is_valid($_POST) and depending on the outcome, you either - continue with a valid form or begin a form redraw cycle until all the - validation criteria is met. This keeps the form validation process to a bare - minimum on the application side. - - In the form template, you put {validate ...} tags which handle error - messages that get displayed upon a validation error. - - -FEATURES: - - Supplied validation criteria includes empty, integer, float, price, - email syntax, credit card checksums, credit card exp dates, valid - date syntax, equality between fields, ranges, lengths, regular expression - matching and custom function calls. Create your own through Smarty plugins, - PHP functions or class methods. - - Transform functions can be applied to form values prior to validation, - such as trimming, upper-casing, etc. Create your own through Smarty Plugins, - PHP functions or class methods. - - {validate ...} tags can be located anywhere in your template, regardless of - where the corresponding fields are located. - - Multiple validators may be used for one field. Once one validator fails, - the remaining validators for that field are ignored. A "halt" parameter can - also stop validation on remaining fields. - - -CAVEATS: - - Smarty supports validation on single-level array values such as foo[] and - foo[bar], but does not (currently) support nested array validation such as - foo[bar][blah]. So you can do this: - - {validate field="foo[bar]" criteria="notEmpty" ...} - - - But not this: - - {validate field="foo[bar][blah]" criteria="notEmpty" ...} - - - -REQUIREMENTS: - - You must enable session management prior to using SmartyValidate. Do this - by calling session_start() at the top of your PHP application. - SmartyValidate also requires the Smarty template environment. - -INSTALLATION: - - It is assumed that you are familiar with the Smarty templating - installation and setup, so I will not explain Smarty template - directories and such. Please refer to the Smarty documentation for - that information. - - To install SmartyValidate: - - * Copy the 'SmartyValidate.class.php' file to a place within your - php_include path (or use absolute pathnames when including.) - * Copy all of the plugins to your Smarty plugin directory. (located - in the plugins/ directory of the distribution.) - -EXAMPLE: - - Here is a full working example of how to use SmartyValidate. Put the - form.tpl and success.tpl files in your Smarty template directory. - - - index.php - --------- - - display('form.tpl'); - } else { - // validate after a POST - SmartyValidate::connect($smarty); - if(SmartyValidate::is_valid($_POST)) { - // no errors, done with SmartyValidate - SmartyValidate::disconnect(); - $smarty->display('success.tpl'); - } else { - // error, redraw the form - $smarty->assign($_POST); - $smarty->display('form.tpl'); - } - } - - ?> - - form.tpl - -------- - -
- {validate id="fullname" message="Full Name Cannot Be Empty"} - Full Name:
- {validate id="phone" message="Phone Number Must be a Number"} - Phone :
- {validate id="expdate" message="Exp Date not valid"} - Exp Date:
- {validate id="email" message="Email not valid"} - Email:
- {validate id="date" message="Date not valid"} - Date:
- {validate id="password" message="passwords do not match"} - password:
- password2:
- - -
- - success.tpl - ----------- - - Your form submission succeeded. - - -PUBLIC METHODS: - - function connect(&$smarty, $reset = false) - ------------------------------------------ - - examples: - SmartyValidate::connect($smarty); - SmartyValidate::connect($smarty, true); - - connect() is required on every invocation of SmartyValidate. Pass your - $smarty object as the parameter. This sets up SmartyValidate with $smarty - and auto-registers the default form. Passing the optional second param as - true, the default form registration will get reset. - - function disconnect() - --------------------- - - examples: - SmartyValidate::disconnect(); - - This clears the SmartyValidate session data. Call this after you are - completely finished with SmartyValidate (eg. do NOT call between form - submissions.) - - - function register_object($obj_name,&$object) - -------------------------------------------- - - examples: - SmartyValidate::register_object('myobj',$myobj); - - Register an object with SmartyValidate for use with transform and criteria - functions. Typically do this right after issuing connect(). See the - register_criteria() method for more details. - - - function is_registered_object($obj_name) - ---------------------------------------- - - examples: - if(!SmartyValidate::is_registered_object('myobj')) { ... do something ... } - - Test if an object has been registered. - - - function register_form($form, $reset = false) - --------------------------------------------- - - examples: - SmartyValidate::register_form('myform'); - SmartyValidate::register_form('myform', true); - - Register a form to be validated. Each form must be registered before it can - be validated. You do not have to register the 'default' form, that is done - automatically by SmartyValidate. If you register a form that is already - registered, nothing will happen (returns false). If you have the optional - reset parameter set to true, the form will get reset (essentially - unregistering and reregistering the form.) - - - function is_registered_form($form) - ---------------------------------- - - examples: - if(!SmartyValidate::is_registered_form('myform')) { ... do something ... } - - Test if a form has been registered for validation. - - - function is_valid(&$formvars, $form = 'default') - ------------------------------------------------ - - examples: - SmartyValidate::is_valid($_POST); - SmartyValidate::is_valid($_POST, 'myform'); - - Tests if the current form is valid. You MUST supply the form variable array - to this function, typically $_POST. You can optionally pass a form name as - the second parameter, otherwise the 'default' form is used. Call this after - the form is submitted. - - - function register_criteria($name, $func_name, $form = 'default') - ---------------------------------------------------------------- - - examples: - SmartyValidate::register_criteria('isPass', 'test_password'); - SmartyValidate::register_criteria('isPass', 'test_password','myform'); - SmartyValidate::register_criteria('isPass', 'myobj::test_password'); - SmartyValidate::register_criteria('isPass', 'myobj->test_password'); - - Registers a new criteria function. All functions must be registered before - they can be used (or exist as a plugin.) You can optionally pass a form - name in the case you are not using the 'default' form. Static method calls - are also supported such as foo::bar. You can also register a method of an - object instance such as foo->bar, but you must first register the object - with SmartyValidate. See the register_object() method. Then use your new - criteria within the template: - - {validate field="Password" criteria="isPass" ... } - - Note: the "isCustom" criteria type is no longer supported (or necessary.) - See the "BUILDING YOUR OWN" section. - - function is_registered_criteria($func_name, $form = 'default') - -------------------------------------------------------------- - - examples: - if(SmartyValidate::is_registered_criteria('isPass')) { ... } - - Tests to see if a criteria function has been registered. - - - function register_transform($name, $func_name, $form = 'default') - ----------------------------------------------------------------- - - examples: - SmartyValidate::register_transform('upper','strtoupper'); - SmartyValidate::register_transform('upper','strtoupper','myform'); - - Registers a function to use with "transform" parameter. All functions must - be registered before they can be used (or exist as a plugin.) You can - optinally pass a form name in the case you are not using the 'default' - form. 'trim' is already registered by default. - - - function is_registered_transform($func_name, $form = 'default') - --------------------------------------------------------------- - - examples: - if(SmartyValidate::is_registered_transform('upper')) { ... } - - Tests to see if a transform function has been registered. - - - function register_validator($id, $field, $criteria, $empty = false, $halt = - false, $transform = null, $form = 'default') - --------------------------------------------------------------------------- - - examples: - - SmartyValidate::register_validator('fullname', 'FullName', 'notEmpty'); - SmartyValidate::register_validator('fullname', 'FullName', 'notEmpty', true); - SmartyValidate::register_validator('fullname', 'FullName', 'notEmpty', true, - false, 'trim', 'myform'); - - Register a validator with the form. You must register at least one - validator. If you specify multiple fields, separate them with a colon and - they will be passed into the validator as params field2, field3, etc. - - Example: - - SmartyValidate::register_validator('passcheck', 'pass1:pass2', 'isEqual'); - - {validator id="passcheck" message="your passwords must match"} - - - function set_page($page, $form = 'default') - --------------------------------------------------------------- - - examples: - SmartyValidate::set_page('1')); - - When doing multi-page forms, this value must be set proir to drawing each - page. Each validator must have a page="1" attribute for the given page. - - -SMARTYVALIDATE TEMPLATE VARS: - - For each form, the variable {$validate.formname.is_error} is a boolean set - to true or false indicating whether the form had any failed validators from - the last is_valid() call. is_error is initialized to "false". The default - form is denoted as {$validate.default.is_error}. - - -SMARTYVALIDATE FUNCTION SYNTAX: - - The basic syntax of the {validate ...} function is as follows: - - {validate field="foo" criteria="isNumber" message="foo must be a number"} - - Those are the three required attributes to a {validate ...} - function call. "field" is the form field the validation will - validate, "criteria" is the validation criteria, and "message" is - the message that will be displayed when an error occurs. - - -OPTIONAL FUNCTION ATTRIBUTES: - - FORM - ---- - - {validate form="foo" ...} - - If you are using a registered form other than the "default" form, - you must supply the form name with each corresponding validate tag. - - - TRANSFORM - --------- - - Note: This attribute has been deprecated, please set your transform functions with - the register_validator() function. - - {validate field="foo" ... transform="trim"} - {validate field="foo" ... transform="trim,upper"} - - "transform" is used to apply a transformation to a form value prior to - validation. For instance, you may want to trim off extra whitespace from - the form value before validating. - - You can apply multiple transform functions to a single form value by - separating them with commas. You must register all transformation functions - with the register_transform() method. By default, 'trim' is registered. - - Transformations will apply to every value of an array. If you want the - transformation applied to the array itself, you must specify with an "@" - symbol in front of each transform function: - - {validate field="foo" ... transform="@notEmpty"} - - If you want only a particular array element transformed, you must specify: - - {validate field="foo[4]" ... transform="notEmpty"} - {validate field="foo[bar]" ... transform="notEmpty"} - - - TRIM - ---- - - Note: the "trim" attribute has been deprecated, set your "trim" behavior - with a transform parameter of 'trim' in the register_validator() function. - Trim will trim whitespace from the form value before being validated, and - before the "empty" or "default" parameters are tested. - - - EMPTY - ----- - - Note: This attribute has been deprecated, please set your "empty" behavior with - the register_validator() function. - - {validate id="foo" ... empty="yes"} - - "empty" determines if the field is allowed to be empty or not. If - allowed, the validation will be skipped when the field is empty. - Note this is ignored with the "notEmpty" criteria. - - - HALT - ---- - - Note: This attribute has been deprecated, please set your "halt" behavior with - the register_validator() function. - - {validate id="foo" ... halt="yes"} - If the validator fails, "halt" determines if any remaining validators for - this form will be processed. If "halt" is yes, validation will stop at this - point. - - - ASSIGN - ------ - - {validate id="foo" ... assign="error"} - - "assign" is used to assign the error message to a template variable - instead of displaying the value. Use this when you don't want the - error message displayed right where the {validate ...} function is - called. - - - APPEND - ------ - - {validate id="foo" ... append="error"} - - "append" is used to append the error message to a template variable as an - array. This is an alternate to "assign". Use this when you want to loop over - multiple validation error messages and display them in one place. Example: - - {foreach from=$error key="key" item="val"} - field: {$key} error: {$val} - {/foreach} - - - PAGE - ---- - - {validate id="foo" page="1" ... message="fooError"} - - When doing multi-page forms, each validator must have a page attribute to - identify the page that it belongs to. The SmartyValidator::set_page('1') - function must be called prior to displaying the given page. - - - -TRANSFORM FUNCTIONS BUNDLED WITH SMARTYVALIDATE: - - - trim - ---- - - example: - - SmartyValidate::register_validator('fullname','FullName','notEmpty',false,false,'trim'); - - "trim": this trims whitespace from the beginning and end of the field. This - is useful to avoid confusing errors just because extra space was typed into - a field. - - default - ------- - - example: - - - SmartyValidate::register_validator('value','Value','isInt',false,false,'default:0'); - - {validate id="value" message="..."} - - "default": This sets the form value to the given default value in the case - it is empty. You can pass the default value as a parameter in the - register_validator() function (see above), or in the template as default="0". - - - makeDate - -------- - - example: - - SmartyValidate::register_validator('start','StartDate','isDate',false,false,'makeDate'); - SmartyValidate::register_validator('start','StartDate:year:month:day','isDate',false,false,'makeDate'); - - {validate id="start" message="..."} - - "makeDate": this creates a date from three other form fields constructed by - using the "field" parameter as the prefix, such as StartDateYear, - StartDateMonth, StartDateDay in the first example. This is the common format - used with date fields generated by {html_select_date}. You can supply three - specific form fields separated by colons as in the second example above. - - Here is a full example of how you might use "makeDate" transform function - and "isDateOnOrAfter" criteria function to compare two dates: - - // in PHP script, setup validators - SmartyValidate::register_validator('setdate', 'EndDate', 'dummyValid', false, false, 'makeDate'); - SmartyValidate::register_validator('compdate', 'StartDate:EndDate', 'isDateOnOrBefore'); - - - // template - {* generate the EndDate value from EndDateYear, EndDateMonth, EndDateDay *} - {validate id="setdate"} - {* generate StartDate, then compare to EndDate *} - {validate is="compdate" message="start date must be on or after end date"} - {html_select_date prefix="StartDate"} - {html_select_date prefix="EndDate"} - {* we need these two hidden form fields to hold the values generated by makeDate *} - - - - -CRITERIA BUNDLED WITH SMARTYVALIDATE: - - This is a list of the possible criteria you can use with - SmartyValidate. Some of them require their own special attributes. - - Note: setting criteria in the template is deprecated, use the - register_validator() function instead. - - notEmpty - -------- - - Tests if a field is empty (zero length). NOTE: using the "empty" flag with - this validator has no effect, it is ignored. - - example: - - PHP: - SmartyValidate::register_validator('v_fullname','FullName','notEmpty'); - - TEMPLATE: - {validate id="v_fullname" message="..."} - - - - isInt - ----- - - Tests if a field is an integer value. - - example: - - PHP: - SmartyValidate::register_validator('v_age','age','isInt'); - - TEMPLATE: - {validate id="v_age" message="..."} - - - - isFloat - ------- - - Tests if a field is a float value. - - example: - - PHP: - SmartyValidate::register_validator('v_fraction','fraction','isFloat'); - - TEMPLATE: - {validate id="v_fraction" message="..."} - - - - isNumber - -------- - - Tests if a field is either an int or float value. - - example: - - PHP: - SmartyValidate::register_validator('v_total','total','isNumber'); - - TEMPLATE: - {validate id="v_total" message="..."} - - - - isPrice - ------- - - Tests if a field has number with two decimal places. - - example: - - PHP: - SmartyValidate::register_validator('v_price','price','isPrice'); - - TEMPLATE: - {validate id="v_price" message="..."} - - - - - isEmail - ------- - - Tests if field is valid Email address syntax. - - example: - - PHP: - SmartyValidate::register_validator('v_email','email','isEmail'); - - TEMPLATE: - {validate id="v_email" message="..."} - - - - - isCCNum - ------- - - Tests if field is a checksummed credit card number. - - example: - - PHP: - SmartyValidate::register_validator('v_ccnum','ccnum','isCCNum'); - - TEMPLATE: - {validate id="v_ccnum" message="..."} - - - - isCCExpDate - ----------- - - Tests if field is valid credit card expiration date. - - example: - - PHP: - SmartyValidate::register_validator('v_ccexp','ccexp','isCCExpDate'); - - TEMPLATE: - - {validate id="v_ccexp" message="..."} - - - isDate - ------ - - Tests if field is valid Date (parsible by strtotime()). - - example: - - PHP: - SmartyValidate::register_validator('v_startDate','startDate','isDate'); - - TEMPLATE: - {validate id="v_startDate" message="..."} - - - - - isURL - ------ - - Tests if field is valid URL (http://www.foo.com/) - - - example: - - PHP: - SmartyValidate::register_validator('v_URL','URL','isURL'); - - TEMPLATE: - {validate id="v_URL" message="..."} - - - - - isEqual - ------- - - Tests if two fields are equal in value. - - - example: - - PHP: - SmartyValidate::register_validator('v_pass','pass:pass2','isEqual'); - - TEMPLATE: - {validate id="v_pass" message="..."} - - - - - - isRange - ------- - - Tests if field is within a given range. Must give low and high params. - - - example: - - PHP: - SmartyValidate::register_validator('v_mynum','num:1:5','isRange'); - - TEMPLATE: - {validate id="v_mynum" message="..."} - - - - isLength - -------- - - Tests if field is a given length. parameters 1 and 2 are min and max. use - -1 for no min or no max. - - example: - - PHP: - SmartyValidate::register_validator('v_username','username:3:10','isLength'); - - TEMPLATE: - {validate id="isLength" message="..."} - - - - isRegExp - -------- - - Tests a field against a regular expression. Expression must be fully - qualified preg_* expression. Note: it is recommended to use a custom plugin - instead of this validator, otherwise syntax limits may be a problem. - - - example: - - PHP: - SmartyValidate::register_validator('v_username','username:!^\w+$!','isLength'); - - TEMPLATE: - {validate id="v_username" message="..."} - - - - - isFileType - ---------- - - Tests if an uploaded file is a given type (just checks the extention - name.) Note: This function is not backward compatible prior to version 2.4. - - example: - - PHP: - SmartyValidate::register_validator('v_myfile','myfile:jpg,gif,png','isFileType'); - - TEMPLATE: - {validate id="v_myfile" message="..."} - - - - isFileSize - ---------- - - Tests if an uploaded file is under a given size. Size param can be suffixed - with "b" for bytes (default), "k" for kilobytes, "m" for megabytes and "g" - for gigabytes (kb, mb, and gb also work.) Note: This function is not - backward compatible prior to version 2.4. - - example: - - PHP: - SmartyValidate::register_validator('v_myimage','myimage:50k','isFileSize'); - - {validate id="v_myimage" message="..."} - - - - dummyValid - ---------- - - This is a dummy criteria that always validates to true. This is useful to - apply a transformation to a field without actually applying a validation. - NOTE: Using the "empty" flag with this validator is ignored, dummyValid - always validates true anyways. - - - example: - - PHP: - - SmartyValidate::register_validator('v_initdate','StartDate','dummyValid',false,false,'makeDate'); - - TEMPLATE: - {validate id="v_initdate"} - - - - isDateEqual - ----------- - - Tests if a date is equal to another. The dates must be parsible by strtotime(). - - - example: - - PHP: - SmartyValidate::register_validator('date_equal', 'StartDate:EndDate', 'isDateEqual'); - - TEMPLATE: - {validate id="date_equal" message="..."} - - - - - isDateBefore - ------------ - isDateAfter - ----------- - isDateOnOrBefore - ---------------- - isDateOnOrAfter - --------------- - - These all work similar to "isDateEqual" example above, but testing the dates - according to their respective function. - - - isCustom - -------- - - "isCustom" HAS BEEN REMOVED. Please see BUILDING YOUR OWN directly below. - -VALIDATE INIT -------------- - - Note: validate_init is deprecated now that we have register_validator(), - it shouldn't be necessary any more with no criteria in the templates. - - example: - {validate_init form="foobar" halt="yes" assign="error_msg"} - {validate field="name" criteria="notEmpty" message="name cannot be empty"} - {validate field="pass" criteria="notEmpty" message="pass cannot be empty"} - - {validate_init ... } sets parameter values that are implicitly passed to - each {validate ... } tag thereafter. This keeps the repeated verbosity of - {validate ... } tags to a minimum. Any initialized parameter can be - overridden in each {validate ... } tag. You can re-initialize the - parameters by calling {validate_init ... } again. - - -BUILDING YOUR OWN CRITERIA/TRANSFORM FUNCTIONS: - - Building your own custom functions has never been easier. First, we'll make - up a couple of new functions in the template. We'll make one criteria - function and one transform function. - - "isValidPassword" and "upper" are names we are using in the validator - registration reference your new custom functions. These are not necessarily - real PHP function names, it just the names used by the validator. - - You can do one of two things: make Smarty plugins so the new functions are - automatically found and used, or write PHP functions and register them - directly. - - SMARTY_PLUGIN METHOD: - - In your Smarty plugin directory, create a new file named - validate_TYPE.NAME.php where TYPE is either 'criteria' or 'transform', and - NAME is the name of the new function. The corresponding function names in - the plugin files must follow the convention smarty_validate_TYPE_NAME() - where TYPE and NAME are the same TYPE and NAME from the filename. The NAME - is the criteria/transform name that will be used in the template. In our - example, the filenames will be validate_criteria.isValidPassword.php, and - validate_transform.upper.php. (The template will be calling - criteria="isValidPassword" and transform="upper") - - - validate_criteria_isValidPassword.php - ------------------------------------- - - - - validate_transform_upper.php - ---------------------------- - - - - Your criteria functions must contain the four parameters given in the - example above. The first parameter is the form field value being validated. - The second is the boolean "empty" value given as a parameter to the - validator (or false if none was given). $params contains all the parameters - passed to the validator, and $formavars contains all the form information. - The last two are passed by reference so you can edit the original values if - need be. - - All custom criteria should return a boolean "true" or "false" value to - indicate to SmartyValidate that the validation passed or failed. You do NOT - print error messages inside the function, except for errors dealing with a - misconfiguration of the validator such as a missing parameter. If the - validator fails, the error message for the person filling out the form - should already be set in the template {validator ... message="error!"} - - Transform functions have three parameters, the first being the field value - being transformed, and the second is all the parameters passed to the - validator, and the third is the form variables. The last two are passed by - reference so you can edit the original values if need be. The transform - function should return the transformed value of $value. - - If the file names and function names follow the above convention, no - registration of the functions are necessary, SmartyValidate will locate and - use the plugins. All of the functions that ship with SmartyValidate are plugins. - - -MANUAL REGISTER METHOD: - - You can manually register your functions instead of using plugins. This is - useful if you have a function specific to one application and a Smarty - plugin may not be the most practical place for it. You can also register - class methods this way. - - First example will be a straight forward PHP function: - - function check_pass($value, $empty, &$params, &$formvars) { - // do your logic here, check password, return true or false - } - - After your function exists, you can register it with SmartyValidate: - - SmartyValidate::register_criteria('isValidPassword','check_pass'); - - Transformation functions are done the same way: - - SmartyValidate::register_transform('upper','my_upper_func'); - - You can also register class methods. First, you must register the object - with SmartyValidate, then register the method(s): - - SmartyValidate::register_object('my_obj', $my_obj); - SmartyValidate::register_criteria('isValidPassword','myobj->check_pass'); - SmartyValidate::register_transform('upper','myobj->my_upper_method'); - - Calling PHP functions or class methods look exactly the same, you just use - the registered name(s) like so: - - SmartyValidate::register_validator('v_foo','foo','isValidPassword',false,false,'upper'); - - Just like functions that come with SmartyValidator, all functions are - applied to every element of an array coming from the form. If you want your - function to act on the array itself, you must specify that in the - registration: - - SmartyValidate::register_validator('v_foo','foo','@isValidPassword',false,false,'@upper'); - - If you want a specific array element validated, you must specify: - - SmartyValidate::register_validator('v_foo','foo[4]','isValidPassword',false,false,'upper'); - SmartyValidate::register_validator('v_foo','foo[bar]','isValidPassword',false,false,'upper'); - - - -CREDITS: - - Thanks to the many people who have submitted bug reports, suggestions, etc. - - Edwin Protomo - John Blyberg - Alexey Kuimov - boots (from forums) - xces (from forums) - electr0n (from forums) - Justin (from forums) - hristov (form forums) - - Anyone I missed, let me know! - - -COPYRIGHT: - Copyright(c) 2004-2005 New Digital Group, Inc. All rights reserved. - - This library is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 2.1 of the License, or (at - your option) any later version. - - This library is distributed in the hope that it will be useful, but WITHOUT - ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public - License for more details. diff --git a/docs/spb_db.txt b/docs/fp_db.txt old mode 100755 new mode 100644 similarity index 89% rename from docs/spb_db.txt rename to docs/fp_db.txt index 6345fe5..f691471 --- a/docs/spb_db.txt +++ b/docs/fp_db.txt @@ -1,9 +1,9 @@ - ========================================================== - CONSIDERATIONS AROUND SIMPLEPHPBLOG AND ITS STORING SYSTEM - ========================================================== + ====================================================== + CONSIDERATIONS AROUND FLATPRESS AND ITS STORING SYSTEM + ====================================================== - - SimplePHPBlog flat "db" structure + - FlatPress "db" structure [$content] | @@ -33,3 +33,4 @@ the entry, deprived of its extension (.txt) as the name of the directory which will contain them. + diff --git a/fp-includes/fp-smartyplugins/function.toolbar.php b/fp-includes/fp-smartyplugins/function.toolbar.php index 082c80f..db63561 100644 --- a/fp-includes/fp-smartyplugins/function.toolbar.php +++ b/fp-includes/fp-smartyplugins/function.toolbar.php @@ -6,10 +6,12 @@ * Type: function * Name: editortop * Purpose: outputs a random magic answer + * Hint: {toolbar} does not work well in the template with Smarty 4. Is no longer used as of FP 1.3 Andante Beta 1. + * See: #184 and #287 May still be required for the responsiveadmin branch. * ------------------------------------------------------------- */ function smarty_function_toolbar($params, &$smarty) { do_action('editor_toolbar'); } -?> \ No newline at end of file +?> diff --git a/fp-interface/lang/it-it/lang.admin.entry.php b/fp-interface/lang/it-it/lang.admin.entry.php index 6744e84..9bde210 100644 --- a/fp-interface/lang/it-it/lang.admin.entry.php +++ b/fp-interface/lang/it-it/lang.admin.entry.php @@ -3,7 +3,7 @@ $lang ['admin'] ['entry'] ['submenu'] = array( 'list' => 'Gestione Articoli', 'write' => 'Scrivi Articolo', 'cats' => 'Gestione Categorie', - 'stats' => 'Statistica' + 'stats' => 'Statistiche' ); /* default action */ @@ -39,7 +39,7 @@ $lang ['admin'] ['entry'] ['write'] = array( 'preview' => 'Anteprima', 'savecontinue' => 'Salva e continua', 'categories' => 'Categorie', - 'nocategories' => 'Nessuna categoria impostata. Creane una categories dal pannello principale degli articoli. ' . // + 'nocategories' => 'Nessuna categoria impostata. Crea una categoria dal pannello principale degli articoli. ' . // 'Salva prima l\'articolo.', 'saveopts' => 'Opzioni di salvataggio', 'success' => 'L\'articolo è stato pubblicato con successo', @@ -156,7 +156,7 @@ $lang ['admin'] ['entry'] ['cats'] ['msgs'] = array( /* stats */ $lang ['admin'] ['entry'] ['stats'] = array( - 'head' => 'Statistica', + 'head' => 'Statistiche', 'entries' => 'Entrate', 'you_have' => 'Hai', 'entries_using' => 'voci con', diff --git a/fp-interface/lang/it-it/lang.admin.widgets.php b/fp-interface/lang/it-it/lang.admin.widgets.php index f5d0274..18da7c5 100644 --- a/fp-interface/lang/it-it/lang.admin.widgets.php +++ b/fp-interface/lang/it-it/lang.admin.widgets.php @@ -41,7 +41,7 @@ $lang ['admin'] ['widgets'] ['default'] ['stdsets'] = array( $lang ['admin'] ['widgets'] ['default'] ['msgs'] = array( 1 => 'La configurazione è stata salvata', - -1 => 'Si è verficato un errore durante il salvataggio, riprova' + -1 => 'Si è verificato un errore durante il salvataggio, riprova' ); /* "raw" panel */ diff --git a/fp-interface/lang/it-it/lang.contact.php b/fp-interface/lang/it-it/lang.contact.php index 9bcfda3..6f39690 100644 --- a/fp-interface/lang/it-it/lang.contact.php +++ b/fp-interface/lang/it-it/lang.contact.php @@ -14,7 +14,7 @@ $lang ['contact'] = array( 'fieldset3' => 'Invia', 'submit' => 'Invia', 'reset' => 'Azzera', - 'loggedin' => 'Sei connesso 😉. Uscire o accedere all\'area amministrativa.' + 'loggedin' => 'Sei connesso 😉. Uscire o accedere al pannello di controllo.' ); $lang ['contact'] ['notification'] = array( diff --git a/fp-plugins/bbcode/lang/lang.cs-cz.php b/fp-plugins/bbcode/lang/lang.cs-cz.php index 2da3add..32bad37 100644 --- a/fp-plugins/bbcode/lang/lang.cs-cz.php +++ b/fp-plugins/bbcode/lang/lang.cs-cz.php @@ -32,25 +32,22 @@ $lang ['admin'] ['plugin'] ['bbcode'] = array( 'expandtitle' => 'Zvětšit výšku textového pole', 'reduce' => 'Zmenšit', 'reducetitle' => 'Zmenšit výšku textového pole', - // note: accesskeys are not internationalized... - // btw. why not :-D - 'bold' => 'B', + 'urltitle' => 'URL/ Odkaz', + 'mailtitle' => 'E-mailová adresa', 'boldtitle' => 'Tučné', - 'italic' => 'I', 'italictitle' => 'Kurzíva', - 'underline' => 'U', + 'headlinetitle' => 'Hlavička', 'underlinetitle' => 'Podtržené', - 'quote' => 'Citovat', + 'crossouttitle' => 'Přeškrtnuto', + 'unorderedlisttitle' => 'Netříděný seznam', + 'orderedlisttitle' => 'Tříděný seznam', 'quotetitle' => 'Citace', - 'code' => 'Kód', 'codetitle' => 'Kód', + 'htmltitle' => 'Vložit jako kód HTML', 'help' => 'BBCode Pomoc', 'file' => 'Soubor: ', 'image' => 'Obrázek: ', - 'selection' => '-- Výběr --', - // currently not used - 'status' => 'Status bar', - 'statusbar' => 'Normalní mód. Stiskni <Esc> pro přepnutí módu.' + 'selection' => '-- Výběr --' ) ); diff --git a/fp-plugins/bbcode/lang/lang.da-dk.php b/fp-plugins/bbcode/lang/lang.da-dk.php index fd32650..643e2f6 100644 --- a/fp-plugins/bbcode/lang/lang.da-dk.php +++ b/fp-plugins/bbcode/lang/lang.da-dk.php @@ -32,25 +32,22 @@ $lang ['admin'] ['plugin'] ['bbcode'] = array( 'expandtitle' => 'Forstør inputfeltet', 'reduce' => 'Reducer', 'reducetitle' => 'Reducer størrelsen på inputfeltet', - // note: accesskeys are not internationalized... - // btw. why not :-D - 'bold' => 'B', + 'urltitle' => 'URL/ Link', + 'mailtitle' => 'E-mail-adresse', 'boldtitle' => 'Fedt', - 'italic' => 'I', 'italictitle' => 'Kursiv', - 'underline' => 'U', + 'headlinetitle' => 'Overskrift', 'underlinetitle' => 'Understregning', - 'quote' => 'Quote', + 'crossouttitle' => 'Streget ud', + 'unorderedlisttitle' => 'Usorteret liste', + 'orderedlisttitle' => 'Sorteret liste', 'quotetitle' => 'Kommentar/citation', - 'code' => 'Code', 'codetitle' => 'Eksempel på kode', + 'htmltitle' => 'Indsæt som HTML-kode', 'help' => 'Hjælp til BBCode', 'file' => 'Fil: ', 'image' => 'Billede: ', - 'selection' => '-- Udvælgelse --', - // currently not used - 'status' => 'Statusbjælke', - 'statusbar' => 'Normal tilstand. Tryk på <Esc> for at skifte til redigeringstilstand.' + 'selection' => '-- Udvælgelse --' ) ); diff --git a/fp-plugins/bbcode/lang/lang.de-de.php b/fp-plugins/bbcode/lang/lang.de-de.php index a1fda5d..a75e3d4 100644 --- a/fp-plugins/bbcode/lang/lang.de-de.php +++ b/fp-plugins/bbcode/lang/lang.de-de.php @@ -32,25 +32,22 @@ $lang ['admin'] ['plugin'] ['bbcode'] = array( 'expandtitle' => 'Das Eingabefeld vergrößern', 'reduce' => 'Verkleinern', 'reducetitle' => 'Das Eingabefeld verkleinern', - // note: accesskeys are not internationalized... - // btw. why not :-D - 'bold' => 'B', + 'urltitle' => 'URL/ Link', + 'mailtitle' => 'E-Mail-Adresse', 'boldtitle' => 'Fett', - 'italic' => 'I', 'italictitle' => 'Kursiv', - 'underline' => 'U', + 'headlinetitle' => 'Überschrift', 'underlinetitle' => 'Unterstreichen', - 'quote' => 'Quote', + 'crossouttitle' => 'Durchgestrichen', + 'unorderedlisttitle' => 'Unsortierte Liste', + 'orderedlisttitle' => 'Sortierte Liste', 'quotetitle' => 'Bemerkung/Zitat', - 'code' => 'Code', 'codetitle' => 'Code Beispiel', + 'htmltitle' => 'Als HTML-Code einfügen', 'help' => 'BBCode Hilfe', 'file' => 'Datei: ', 'image' => 'Bild: ', - 'selection' => '-- Auswahl --', - // currently not used - 'status' => 'Status bar', - 'statusbar' => 'Normal mode. Press <Esc> to switch editing mode.' + 'selection' => '-- Auswahl --' ) ); diff --git a/fp-plugins/bbcode/lang/lang.el-gr.php b/fp-plugins/bbcode/lang/lang.el-gr.php index 81c5379..620ff4f 100644 --- a/fp-plugins/bbcode/lang/lang.el-gr.php +++ b/fp-plugins/bbcode/lang/lang.el-gr.php @@ -32,25 +32,22 @@ $lang ['admin'] ['plugin'] ['bbcode'] = array( 'expandtitle' => 'Expand Textarea Height', 'reduce' => 'Reduce', 'reducetitle' => 'Reduce Textarea Height', - // note: accesskeys are not internationalized... - // btw. why not :-D - 'bold' => 'B', + 'urltitle' => 'URL/ Σύνδεσμος', + 'mailtitle' => 'Διεύθυνση ηλεκτρονικού ταχυδρομείου', 'boldtitle' => 'Έντονα', - 'italic' => 'I', 'italictitle' => 'Πλάγια', - 'underline' => 'U', + 'headlinetitle' => 'Επικεφαλής', 'underlinetitle' => 'Υπογραμμισμένα', - 'quote' => 'Quote', + 'crossouttitle' => 'Διαγραμμένο', + 'unorderedlisttitle' => 'Μη ταξινομημένος κατάλογος', + 'orderedlisttitle' => 'Ταξινομημένος κατάλογος', 'quotetitle' => 'Παράθεση', - 'code' => 'Code', 'codetitle' => 'Κώδικας', + 'htmltitle' => 'Εισαγωγή ως κώδικας HTML', 'help' => 'Βοήθεια σχετικά με το BBCode', 'file' => 'Φάκελος: ', 'image' => 'Εικόνα: ', - 'selection' => '-- Επιλογή --', - // currently not used - 'status' => 'Μπάρα κατάστασης', - 'statusbar' => 'Κανονική λειτουργία. Πατήστε <Esc> για εναλλαγή σε λειτουργία επεξεργασίας.' + 'selection' => '-- Επιλογή --' ) ); diff --git a/fp-plugins/bbcode/lang/lang.en-us.php b/fp-plugins/bbcode/lang/lang.en-us.php index 6ad2a12..edc8674 100644 --- a/fp-plugins/bbcode/lang/lang.en-us.php +++ b/fp-plugins/bbcode/lang/lang.en-us.php @@ -32,25 +32,22 @@ $lang ['admin'] ['plugin'] ['bbcode'] = array( 'expandtitle' => 'Expand Textarea Height', 'reduce' => 'Reduce', 'reducetitle' => 'Reduce Textarea Height', - // note: accesskeys are not internationalized... - // btw. why not :-D - 'bold' => 'B', + 'urltitle' => 'URL/ Link', + 'mailtitle' => 'E-mail address', 'boldtitle' => 'Bold', - 'italic' => 'I', 'italictitle' => 'Italic', - 'underline' => 'U', - 'underlinetitle' => 'Underlined', - 'quote' => 'Quote', + 'headlinetitle' => 'Headline', + 'underlinetitle' => 'Unterstreichen', + 'crossouttitle' => 'Crossed out', + 'unorderedlisttitle' => 'Unsorted list', + 'orderedlisttitle' => 'Sorted list', 'quotetitle' => 'Quote', - 'code' => 'Code', 'codetitle' => 'Code', + 'htmltitle' => 'Als HTML-Code einfügen', 'help' => 'BBCode Help', 'file' => 'File: ', 'image' => 'Image: ', - 'selection' => '-- Selection --', - // currently not used - 'status' => 'Status bar', - 'statusbar' => 'Normal mode. Press <Esc> to switch editing mode.' + 'selection' => '-- Selection --' ) ); diff --git a/fp-plugins/bbcode/lang/lang.es-es.php b/fp-plugins/bbcode/lang/lang.es-es.php index 5a898d6..13e158b 100644 --- a/fp-plugins/bbcode/lang/lang.es-es.php +++ b/fp-plugins/bbcode/lang/lang.es-es.php @@ -32,25 +32,22 @@ $lang ['admin'] ['plugin'] ['bbcode'] = array( 'expandtitle' => 'Ampliar la altura del área de texto', 'reduce' => 'Reducir', 'reducetitle' => 'Reducir la altura del área de texto', - // note: accesskeys are not internationalized... - // btw. why not :-D - 'bold' => 'B', + 'urltitle' => 'URL/ Enlace', + 'mailtitle' => 'Correo electrónico', 'boldtitle' => 'Negrita', - 'italic' => 'I', 'italictitle' => 'Itálica', - 'underline' => 'U', + 'headlinetitle' => 'Rúbrica', 'underlinetitle' => 'Subrayada', - 'quote' => 'Quote', + 'crossouttitle' => 'Tachado', + 'unorderedlisttitle' => 'Lista sin clasificar', + 'orderedlisttitle' => 'Lista ordenada', 'quotetitle' => 'Citar', - 'code' => 'Code', 'codetitle' => 'Código', + 'htmltitle' => 'Insertar como código HTML', 'help' => 'Ayuda de BBCode', 'file' => 'Fichero: ', 'image' => 'Imagen: ', - 'selection' => '-- Selección --', - // currently not used - 'status' => 'Barra de estado', - 'statusbar' => 'Modo normal. presiona <Esc> para cambiar el modo de edición.' + 'selection' => '-- Selección --' ) ); diff --git a/fp-plugins/bbcode/lang/lang.fr-fr.php b/fp-plugins/bbcode/lang/lang.fr-fr.php index b7ee116..6b0e02d 100644 --- a/fp-plugins/bbcode/lang/lang.fr-fr.php +++ b/fp-plugins/bbcode/lang/lang.fr-fr.php @@ -32,25 +32,22 @@ $lang ['admin'] ['plugin'] ['bbcode'] = array( 'expandtitle' => 'Elargir la hauteur de la zone de texte', 'reduce' => 'Réduire', 'reducetitle' => 'Réduire la hauteur de la zone de texte', - // note: accesskeys are not internationalized... - // btw. why not :-D - 'bold' => 'G', + 'urltitle' => 'URL/ lien', + 'mailtitle' => 'Adresse e-mail', 'boldtitle' => 'Gras', - 'italic' => 'I', 'italictitle' => 'Italique', - 'underline' => 'S', + 'headlinetitle' => 'Titre', 'underlinetitle' => 'Souligné', - 'quote' => 'Citation', + 'crossouttitle' => 'Barré', + 'unorderedlisttitle' => 'Liste non triée', + 'orderedlisttitle' => 'Liste triée', 'quotetitle' => 'Citation', - 'code' => 'Code', 'codetitle' => 'Code', + 'htmltitle' => 'Insérer en tant que code HTML', 'help' => 'Aide BBCode', 'file' => 'Fichier: ', 'image' => 'Image: ', - 'selection' => '-- Sélection --', - // currently not used - 'status' => 'barre de statut', - 'statusbar' => 'Mode Normal. Pressez <Esc> pour passer en mode édition .' + 'selection' => '-- Sélection --' ) ); diff --git a/fp-plugins/bbcode/lang/lang.it-it.php b/fp-plugins/bbcode/lang/lang.it-it.php index 5d0c9b9..29672f5 100644 --- a/fp-plugins/bbcode/lang/lang.it-it.php +++ b/fp-plugins/bbcode/lang/lang.it-it.php @@ -32,25 +32,22 @@ $lang ['admin'] ['plugin'] ['bbcode'] = array( 'expandtitle' => 'Espandi l\'altezza della casella di testo', 'reduce' => 'Riduci', 'reducetitle' => 'Riduci l\'altezza della casella di testo', - // note: accesskeys are not internationalized... - // btw. why not :-D - 'bold' => 'G', + 'urltitle' => 'URL/ Link', + 'mailtitle' => 'Indirizzo e-mail', 'boldtitle' => 'Grassetto', - 'italic' => 'C', 'italictitle' => 'Corsivo', - 'underline' => 'S', + 'headlinetitle' => 'Intestazione', 'underlinetitle' => 'Sottolineato', - 'quote' => 'Cita', + 'crossouttitle' => 'Cancellato', + 'unorderedlisttitle' => 'Elenco non ordinato', + 'orderedlisttitle' => 'Elenco ordinato', 'quotetitle' => 'Citazione', - 'code' => 'Codice', 'codetitle' => 'Codice', + 'htmltitle' => 'Inserire come codice HTML', 'help' => 'Guida di BBCode', 'file' => 'File: ', 'image' => 'Immagine: ', - 'selection' => '-- Selezione --', - // currently not used - 'status' => 'Barra di stato', - 'statusbar' => 'Modalità normale. Premi <Esc> per passare da una modalità all\'altra.' + 'selection' => '-- Selezione --' ) ); diff --git a/fp-plugins/bbcode/lang/lang.ja-jp.php b/fp-plugins/bbcode/lang/lang.ja-jp.php index 7c5be30..2cdd9dd 100644 --- a/fp-plugins/bbcode/lang/lang.ja-jp.php +++ b/fp-plugins/bbcode/lang/lang.ja-jp.php @@ -32,25 +32,22 @@ $lang ['admin'] ['plugin'] ['bbcode'] = array( 'expandtitle' => 'テキストエリアの高さを増やします。', 'reduce' => '縮小', 'reducetitle' => 'テキストエリアの高さを減らします。', - // note: accesskeys are not internationalized... - // btw. why not :-D - 'bold' => 'B', + 'urltitle' => 'URL/リンク', + 'mailtitle' => 'Eメールアドレス', 'boldtitle' => 'ボールド体', - 'italic' => 'I', 'italictitle' => 'イタリック体', - 'underline' => 'U', + 'headlinetitle' => '見出し', 'underlinetitle' => '下線', - 'quote' => 'Quote', + 'crossouttitle' => 'クロスアウト', + 'unorderedlisttitle' => 'ソートされていないリスト', + 'orderedlisttitle' => '並べ替えリスト', 'quotetitle' => '引用文として領域指定', - 'code' => 'Code', 'codetitle' => 'プログラムコードとして領域指定', - 'help' => 'BBCode Help', + 'htmltitle' => 'HTMLコードとして挿入', + 'help' => 'BBcode ヘルプ', 'file' => 'ファイル: ', 'image' => '画像: ', - 'selection' => '-- セレクション --', - // currently not used - 'status' => 'ステータスバー', - 'statusbar' => 'ノーマルモードです。<Esc>キーで編集モードに切り替えられます。' + 'selection' => '-- セレクション --' ) ); diff --git a/fp-plugins/bbcode/lang/lang.nl-nl.php b/fp-plugins/bbcode/lang/lang.nl-nl.php index 6f9eb6d..19294bd 100644 --- a/fp-plugins/bbcode/lang/lang.nl-nl.php +++ b/fp-plugins/bbcode/lang/lang.nl-nl.php @@ -32,30 +32,27 @@ $lang ['admin'] ['plugin'] ['bbcode'] = array( 'expandtitle' => 'Breid hoogte Textgebied uit', 'reduce' => 'Verminder', 'reducetitle' => 'Verminder hoogte Textgebied', - // note: accesskeys are not internationalized... - // btw. why not :-D - 'bold' => 'B', + 'urltitle' => 'URL/ Link', + 'mailtitle' => 'E-mailadres', 'boldtitle' => 'Bold', - 'italic' => 'I', 'italictitle' => 'Italic', - 'underline' => 'U', + 'headlinetitle' => 'Rubriek', 'underlinetitle' => 'Underlined', - 'quote' => 'Quote', + 'crossouttitle' => 'Doorgestreept', + 'unorderedlisttitle' => 'Ongesorteerde lijst', + 'orderedlisttitle' => 'Gesorteerde lijst', 'quotetitle' => 'Quote', - 'code' => 'Code', 'codetitle' => 'Code', + 'htmltitle' => 'Invoegen als HTML-code', 'help' => 'BBCode Help', 'file' => 'File: ', 'image' => 'Beeld: ', - 'selection' => '-- Selectie --', - // currently not used - 'status' => 'Statusbalk', - 'statusbar' => 'Normale modus. Druk <Esc> om van bewerkingsmodus te wisselen.' + 'selection' => '-- Selectie --' ) ); $lang ['plugin'] ['bbcode'] = array ( - 'go_to' => 'Ga naar', - 'langtag' => 'nl_NL' // language tag for Facebook Video + 'go_to' => 'Ga naar', + 'langtag' => 'nl_NL' // language tag for Facebook Video ); ?> diff --git a/fp-plugins/bbcode/lang/lang.pt-br.php b/fp-plugins/bbcode/lang/lang.pt-br.php index 4ff0b4e..2b7ed05 100644 --- a/fp-plugins/bbcode/lang/lang.pt-br.php +++ b/fp-plugins/bbcode/lang/lang.pt-br.php @@ -32,25 +32,22 @@ $lang ['admin'] ['plugin'] ['bbcode'] = array( 'expandtitle' => 'Expandir altura da área de texto', 'reduce' => 'Reduzir', 'reducetitle' => 'Reduzir altura da área de texto', - // note: accesskeys are not internationalized... - // btw. why not :-D - 'bold' => 'N', + 'urltitle' => 'URL/ Link', + 'mailtitle' => 'Endereço de e-mail', 'boldtitle' => 'Negrito', - 'italic' => 'I', 'italictitle' => 'Itálico', - 'underline' => 'S', + 'headlinetitle' => 'Título', 'underlinetitle' => 'Sublinhado', - 'quote' => 'Citação', + 'crossouttitle' => 'Riscado', + 'unorderedlisttitle' => 'Lista não classificada', + 'orderedlisttitle' => 'Lista ordenada', 'quotetitle' => 'Citação', - 'code' => 'Código', 'codetitle' => 'Código', + 'htmltitle' => 'Inserir como código HTML', 'help' => 'Ajuda do BBCode', 'file' => 'Arquivo: ', 'image' => 'Imagem: ', - 'selection' => '-- Seleção --', - // currently not used - 'status' => 'Barra de status', - 'statusbar' => 'Modo normal. Pressione <Esc> para mudar o modo de edição' + 'selection' => '-- Seleção --' ) ); diff --git a/fp-plugins/bbcode/lang/lang.ru-ru.php b/fp-plugins/bbcode/lang/lang.ru-ru.php index d097735..81a088c 100644 --- a/fp-plugins/bbcode/lang/lang.ru-ru.php +++ b/fp-plugins/bbcode/lang/lang.ru-ru.php @@ -31,25 +31,22 @@ $lang ['admin'] ['plugin'] ['bbcode'] = array( 'expandtitle' => 'Увеличить высоту текстовой области', 'reduce' => 'Уменьшить', 'reducetitle' => 'Уменьшить высоту текстовой области', - // note: accesskeys are not internationalized... - // btw. why not :-D - 'bold' => 'B', + 'urltitle' => 'URL/Ссылка', + 'mailtitle' => 'Адрес электронной почты', 'boldtitle' => 'Жирный', - 'italic' => 'I', 'italictitle' => 'Курсив', - 'underline' => 'U', + 'headlinetitle' => 'Направление', 'underlinetitle' => 'Подчеркнутый', - 'quote' => 'Quote', + 'crossouttitle' => 'Зачеркнуто', + 'unorderedlisttitle' => 'Неотсортированный список', + 'orderedlisttitle' => 'Сортированный список', 'quotetitle' => 'Цитата', - 'code' => 'Code', 'codetitle' => 'Код', + 'htmltitle' => 'Вставка в виде HTML-кода', 'help' => 'Подсказки BBCode', 'file' => 'Файл: ', 'image' => 'Изображение: ', - 'selection' => '-- Выбрать --', - // currently not used - 'status' => 'Статус', - 'statusbar' => 'Обычный режим. Нажмите <Esc> для переключения режима редактирования.' + 'selection' => '-- Выбрать --' ) ); diff --git a/fp-plugins/bbcode/lang/lang.sl-si.php b/fp-plugins/bbcode/lang/lang.sl-si.php index a7feff9..0c5c1f9 100644 --- a/fp-plugins/bbcode/lang/lang.sl-si.php +++ b/fp-plugins/bbcode/lang/lang.sl-si.php @@ -32,22 +32,22 @@ $lang ['admin'] ['plugin'] ['bbcode'] = array( 'expandtitle' => 'Razširi višino polja za besedilo', 'reduce' => 'Skrči', 'reducetitle' => 'Skrči višino polja za besedilo', - 'bold' => 'Krepko', + 'urltitle' => 'URL/povezava', + 'mailtitle' => 'E-poštni naslov', 'boldtitle' => 'Krepko', - 'italic' => 'Ležeče', 'italictitle' => 'Ležeče', - 'underline' => 'Podčrtano', + 'headlinetitle' => 'Naslov', 'underlinetitle' => 'Podčrtano', - 'quote' => 'Citat', + 'crossouttitle' => 'Prečrtano', + 'unorderedlisttitle' => 'Nesortiran seznam', + 'orderedlisttitle' => 'Razvrščeni seznam', 'quotetitle' => 'Citat', - 'code' => 'Koda', 'codetitle' => 'Koda', + 'htmltitle' => 'Vstavite kot kodo HTML', 'help' => 'BBCode Pomoč', 'file' => 'Datoteka: ', 'image' => 'Slika: ', - 'selection' => '-- Izbor --', - 'status' => 'Statusna vrstica', - 'statusbar' => 'Običajni način. Pritisnite <Esc> za preklop na način urejanja.' + 'selection' => '-- Izbor --' ) ); diff --git a/fp-plugins/bbcode/tpls/toolbar.tpl b/fp-plugins/bbcode/tpls/toolbar.tpl index 3562029..69401d2 100755 --- a/fp-plugins/bbcode/tpls/toolbar.tpl +++ b/fp-plugins/bbcode/tpls/toolbar.tpl @@ -1,33 +1,31 @@

- {$lang.admin.plugin.bbcode.editor.help} + {$lang.admin.plugin.bbcode.editor.help}

{$lang.admin.plugin.bbcode.editor.textarea} - - + +

{$lang.admin.plugin.bbcode.editor.formatting}

- url - mail - h2 - h3 - h4 - ul - ol - quote - code - html + url + mail + h2 + h3 + h4 + ul + ol + quote + code + html      -

-

- b - i - u - + b + i + u + del     

@@ -37,14 +35,3 @@ {$lang.admin.plugin.bbcode.editor.image}{html_options name=imageselect values=$images_list output=$images_list onchange="insImage(this.form.imageselect.value)"}

- -{* -{if function_exists('plugin_jsutils_head')} -
- {$lang.admin.plugin.bbcode.editor.status} -
- {$lang.admin.plugin.bbcode.editor.statusbar} -
-
-{/if} -*} \ No newline at end of file diff --git a/fp-plugins/commentcenter/lang/lang.it-it.php b/fp-plugins/commentcenter/lang/lang.it-it.php index 124dbd8..f0f4b8d 100644 --- a/fp-plugins/commentcenter/lang/lang.it-it.php +++ b/fp-plugins/commentcenter/lang/lang.it-it.php @@ -26,7 +26,7 @@ $lang ['admin'] ['entry'] ['commentcenter'] = array( 'nopolicies' => 'Non c\'è nessuna regola.', 'all_entries' => 'Tutti gli articoli', 'fol_entries' => 'La regola è applicata ai seguenti articoli:', - 'fol_cats' => 'La regola è applicata ai post nelle seguenti categorie:', + 'fol_cats' => 'La regola è applicata agli articoli nelle seguenti categorie:', 'older' => 'La regola è applicata agli articoli più vecchi di %d giorno/i.', 'allow' => 'Permetti di commentare', 'block' => 'Blocca i commenti', @@ -62,10 +62,10 @@ $lang ['admin'] ['entry'] ['commentcenter'] = array( 'createpol' => 'Crea una regola', 'some_entries' => 'Alcuni articoli', 'properties' => 'Articoli con precise caratteristiche', - 'se_desc' => 'Se hai selezionato l\'opzione %s, per favore inserisci gli articoli ai quali la vuoi applicare.', - 'se_fill' => 'Per favore riempi i campi con gli ID degli articoli (entryYYMMDD-HHMMSS).', + 'se_desc' => 'Se hai selezionato l\'opzione %s, inserisci gli articoli ai quali la vuoi applicare.', + 'se_fill' => 'Riempi i campi con gli ID degli articoli (entryYYMMDD-HHMMSS).', 'po_title' => 'Caratteristiche', - 'po_desc' => 'Se hai selezionato l\'opzione %s, per favore seleziona le caratteristiche.', + 'po_desc' => 'Se hai selezionato l\'opzione %s, seleziona le caratteristiche.', 'po_comp' => 'I campi non sono obbligatori ma ne devi selezionare almeno uno, altrimenti la regola sarà applicata a tutti gli articoli.', 'po_time' => 'Opzioni sulle date', 'po_older' => 'Applica agli articoli più vecchi di ', @@ -123,7 +123,7 @@ $lang ['admin'] ['entry'] ['commentcenter'] = array( // Akismet warnings 'akismet_errors' => array( - -1 => 'La chiave di Akismet è vuota. Per favore inseriscila.', + -1 => 'La chiave di Akismet è vuota. Inseriscila adesso.', -2 => 'Non abbiamo potuto chiamare i server di Akismet.', -3 => 'La risposta di Akismet è fallita.', -4 => 'La chiave di Akismet non è valida.' @@ -135,7 +135,7 @@ $lang ['admin'] ['entry'] ['commentcenter'] = array( -1 => 'Si è verificato un errore durante il salvataggio della configurazione.', 2 => 'Regola salvata.', - -2 => 'Si è verificato un errore durante il salvataggio della regola (forse le tue opzioni sono scorrette).', + -2 => 'Si è verificato un errore durante il salvataggio della regola (forse le tue opzioni non sono corrette).', 3 => 'Regola spostata.', -3 => 'Si è verificato un errore nello spostamento della regola (o non la si può spostare).', diff --git a/fp-plugins/mediamanager/lang/lang.it-it.php b/fp-plugins/mediamanager/lang/lang.it-it.php index 7f04d09..62d61d2 100644 --- a/fp-plugins/mediamanager/lang/lang.it-it.php +++ b/fp-plugins/mediamanager/lang/lang.it-it.php @@ -14,7 +14,7 @@ $lang ['admin'] ['uploader'] ['mediamanager'] = array( 'colsize' => 'Dimensione', 'coltype' => 'Estensione', 'colmtime' => 'Caricato il', - 'colusecount' => '# use', + 'colusecount' => '# uso', 'nofiles' => 'Nessun file caricato.', 'loadfile' => 'Carica file', @@ -27,7 +27,7 @@ $lang ['admin'] ['uploader'] ['mediamanager'] = array( ); $lang ['admin'] ['uploader'] ['mediamanager'] ['msgs'] = array( - 3 => 'La nuva galleria è stata creata', + 3 => 'La nuova galleria è stata creata', 2 => 'Immagini spostate nella galleria', 1 => 'File eliminato', -1 => 'Errore durante l\'eliminazione del file', diff --git a/fp-plugins/prettyurls/plugin.prettyurls.php b/fp-plugins/prettyurls/plugin.prettyurls.php index 62c7f92..9a6ed82 100644 --- a/fp-plugins/prettyurls/plugin.prettyurls.php +++ b/fp-plugins/prettyurls/plugin.prettyurls.php @@ -42,6 +42,10 @@ class Plugin_PrettyURLs { var $date_handled = false; var $categories = null; + + var $baseurl = null; + + var $mode = null; var $fp_params; diff --git a/setup/lang/lang.cs-cz.php b/setup/lang/lang.cs-cz.php index 3ba7d9d..ba25b40 100644 --- a/setup/lang/lang.cs-cz.php +++ b/setup/lang/lang.cs-cz.php @@ -48,7 +48,7 @@ $lang ['step1'] = array( Nebojte se, nezabere to moc času.', 'descrl1' => 'Vyberte Váš jazyk.', 'descrl2' => 'Není v seznamu?', - 'descrlang' => 'Pokud v tomto seznamu svůj jazyk nevidíte, podívejte se na jazykový balíček pro verzi: + 'descrlang' => 'Pokud v tomto seznamu svůj jazyk nevidíte, podívejte se na jazykový balíček pro verzi:
%s
@@ -79,7 +79,7 @@ $lang ['step3'] = array( A děkujeme že jste si vybrali FlatPress!' @@ -100,7 +100,7 @@ $lang ['samplecontent'] ['menu'] ['content'] = '[list] [/list]'; $lang ['samplecontent'] ['entry'] ['subject'] = 'Vítejte ve FlatPressu!'; -$lang ['samplecontent'] ['entry'] ['content'] = 'Tento článek vám ukáže některé z možností [url=https://www.flatpress.org]FlatPressu[/url]. +$lang ['samplecontent'] ['entry'] ['content'] = 'Tento článek vám ukáže některé z možností [url=https://www.flatpress.org target=_blank rel=external]FlatPressu[/url]. Tag "more" zobrazí odkaz "Číst dál...", po kliknutí na něj se zobrazí celý článek. @@ -109,7 +109,7 @@ Tag "more" zobrazí odkaz "Číst dál...", po kliknutí na něj se zobrazí cel [h4]Úprava vzhledu[/h4] -K formátování textu se používají tzv. [url=http://wiki.flatpress.org/doc:plugins:bbcode]BBcode[/url] (bulletin board code). BBCode je snadný způsob, jak stylovat své příspěvky a vkládat obrázky nebo videa. Nejběžnější kódy jsou [b] pro [b]tučné písmo[/b], [i] pro [i]šikmé písmo[/i], atd. +K formátování textu se používají tzv. [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]BBcode[/url] (bulletin board code). BBCode je snadný způsob, jak stylovat své příspěvky a vkládat obrázky nebo videa. Nejběžnější kódy jsou [b] pro [b]tučné písmo[/b], [i] pro [i]šikmé písmo[/i], atd. [quote]K dispozici je tag "quote" k zobrazení vašich oblíbených citátů.[/quote] @@ -117,7 +117,7 @@ K formátování textu se používají tzv. [url=http://wiki.flatpress.org/doc:p Může také zobrazit odsazení.[/code] -[b]img a url[/b] tagy mají speciální parametry, jejich podrobný popis najdete na [url=https://wiki.flatpress.org/doc:plugins:bbcode]FlatPress-Wiki[/url]. +[b]img a url[/b] tagy mají speciální parametry, jejich podrobný popis najdete na [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]FlatPress-Wiki[/url]. [h4]Příspěvky a statické stránky[/h4] @@ -129,23 +129,23 @@ Statické stránky jsou užitečné při vytváření stránek s obecnými infor [h4]Pluginy[/h4] -FlatPress je velmi přizpůsobitelný a podporuje [url=https://wiki.flatpress.org/doc:plugins:standard]pluginy[/url] pro rozšíření jeho výkonu. BBCode je jeden z pluginů. +FlatPress je velmi přizpůsobitelný a podporuje [url=https://wiki.flatpress.org/doc:plugins:standard target=_blank rel=external]pluginy[/url] pro rozšíření jeho výkonu. BBCode je jeden z pluginů. Vytvořili jsme další ukázkový obsah, abychom vám ukázali některé skryté funkce a vychytávky FlatPressu :) Můžete zde najít dvě statické stránky připravené pro váš obsah: [list] [*][url=static.php?page=about]O mně[/url] -[*][url=static.php?page=menu]Menu[/url] (všimněte si, že odkazy na této stránce se objeví také na vašem bočním panelu - to je kouzlo [b]blockparser widgetu[/b]. Podívejte se na [url=http://wiki.flatpress.org/doc:faq]FAQ[/url] pro podrobnosti!) +[*][url=static.php?page=menu]Menu[/url] (všimněte si, že odkazy na této stránce se objeví také na vašem bočním panelu - to je kouzlo [b]blockparser widgetu[/b]. Podívejte se na [url=https://wiki.flatpress.org/doc:faq target=_blank rel=external]FAQ[/url] pro podrobnosti!) [/list] Pomocí pluginu [b]PhotoSwipe[/b] můžete nyní své obrázky umístit ještě snadněji, a to buď jako float="left"- nebo float="right" zarovnané jednotlivé obrázky obklopené textem. -Pomocí prvku \'gallery\' můžete dokonce návštěvníkům prezentovat celé galerie. Jak je to snadné, se můžete přesvědčit [url="https://wiki.flatpress.org/res:plugins:photoswipe"]zde[/url]. +Pomocí prvku \'gallery\' můžete dokonce návštěvníkům prezentovat celé galerie. Jak je to snadné, se můžete přesvědčit [url=https://wiki.flatpress.org/res:plugins:photoswipe target=_blank rel=external]zde[/url]. [h4]Widgety[/h4] V postranním panelu není jediný pevný prvek. Všechny prvky jsou zcela polohovatelné a většina z nich je také přizpůsobitelná. -Tyto prvky se nazývají widgety. Další informace o [url=https://wiki.flatpress.org/doc:tips:widgets]widgetech[/url] a několik tipů, jak získat pěkné efekty, najdete na [url=https://wiki.flatpress.org/]wiki[/url]. +Tyto prvky se nazývají widgety. Další informace o [url=https://wiki.flatpress.org/doc:tips:widgets target=_blank rel=external]widgetech[/url] a několik tipů, jak získat pěkné efekty, najdete na [url=https://wiki.flatpress.org/ target=_blank rel=external]wiki[/url]. [h4]Témata[/h4] @@ -159,23 +159,23 @@ S tématem FlatPress-Leggero máte k dispozici 3 šablony stylů - od klasickýc Chcete se o FlatPressu dozvědět více? [list] -[*]Jděte na [url=https://www.flatpress.org/?x]oficiální blog[/url] dozvědět se, co se děje ve světě FlatPressu -[*]Navštivte [url=https://forum.flatpress.org/]fórum[/url] kde vám poradíme a pomůžeme -[*]Stáhněte si [b]šablony vzhledu[/b] od [url=https://wiki.flatpress.org/res:themes]našich uživatelů[/url]! -[*]Podívejte se na [url=https://wiki.flatpress.org/res:plugins]neoficiální pluginy[/url] -[*]Stáhněte si [url=https://wiki.flatpress.org/res:language]překlady[/url] do dalších jazyků -[*]FlatPress můžete sledovat také na [url=https://twitter.com/FlatPress]X (Twitter)[/url] a [url=https://fosstodon.org/@flatpress]Mastodon[/url]. +[*]Jděte na [url=https://www.flatpress.org/?x target=_blank rel=external]oficiální blog[/url] dozvědět se, co se děje ve světě FlatPressu +[*]Navštivte [url=https://forum.flatpress.org/ target=_blank rel=external]fórum[/url] kde vám poradíme a pomůžeme +[*]Stáhněte si [b]šablony vzhledu[/b] od [url=https://wiki.flatpress.org/res:themes target=_blank rel=external]našich uživatelů[/url]! +[*]Podívejte se na [url=https://wiki.flatpress.org/res:plugins target=_blank rel=external]neoficiální pluginy[/url] +[*]Stáhněte si [url=https://wiki.flatpress.org/res:language target=_blank rel=external]překlady[/url] do dalších jazyků +[*]FlatPress můžete sledovat také na [url=https://twitter.com/FlatPress target=_blank rel=external]X (Twitter)[/url] a [url=https://fosstodon.org/@flatpress target=_blank rel=external]Mastodon[/url]. [/list] [h4]Jak můžu pomoci?[/h4] [list] -[*]Podpořte projekt [url=http://www.flatpress.org/home/static.php?page=donate]malým příspěvkem[/url]. -[*][url=https://www.flatpress.org/contact/]Kontaktujte nás[/url] a nahlašte chyby nebo navrhněte vylepšení. -[*]Přispějte k vývoji Flatpressu na [url="https://github.com/flatpressblog/flatpress"]GitHub[/url]. -[*]Přeložte FlatPress nebo dokumentaci [url=https://wiki.flatpress.org/res:language]do svého jazyka[/url]. -[*]Sdílejte své zkušenosti a spojte se s ostatními uživateli [url=https://forum.flatpress.org/]na fóru[/url]. +[*]Podpořte projekt [url=https://www.flatpress.org/home/static.php?page=donate target=_blank rel=external]malým příspěvkem[/url]. +[*][url=https://www.flatpress.org/contact/ target=_blank rel=external]Kontaktujte nás[/url] a nahlašte chyby nebo navrhněte vylepšení. +[*]Přispějte k vývoji Flatpressu na [url=https://github.com/flatpressblog/flatpress target=_blank rel=external]GitHub[/url]. +[*]Přeložte FlatPress nebo dokumentaci [url=https://wiki.flatpress.org/res:language target=_blank rel=external]do svého jazyka[/url]. +[*]Sdílejte své zkušenosti a spojte se s ostatními uživateli [url=https://forum.flatpress.org/ target=_blank rel=external]na fóru[/url]. [*]Šiřte jej dál! :) [/list] @@ -186,7 +186,7 @@ Nyní se můžete [url=login.php]Přihlásit[/url] nebo jít do [url=admin.php]A Bavte se! :) -[i]Váš [url=https://www.flatpress.org]FlatPress[/url] Team[/i] +[i]Váš [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url] Team[/i] '; diff --git a/setup/lang/lang.da-dk.php b/setup/lang/lang.da-dk.php index 5174b7c..c9e8231 100644 --- a/setup/lang/lang.da-dk.php +++ b/setup/lang/lang.da-dk.php @@ -48,7 +48,7 @@ $lang ['step1'] = array( Men bare rolig, det tager ikke lang tid!', 'descrl1' => 'Vælg dit sprog.', 'descrl2' => 'Ikke på listen?', - 'descrlang' => 'Hvis du ikke kan finde dit sprog på listen, kan du se, om der findes en passende sprogpakke: + 'descrlang' => 'Hvis du ikke kan finde dit sprog på listen, kan du se, om der findes en passende sprogpakke:
%s
@@ -79,7 +79,7 @@ $lang ['step3'] = array( Tak, fordi du valgte FlatPress!' @@ -100,7 +100,7 @@ $lang ['samplecontent'] ['menu'] ['content'] = '[list] [/list]'; $lang ['samplecontent'] ['entry'] ['subject'] = 'Velkommen til FlatPress!'; -$lang ['samplecontent'] ['entry'] ['content'] = 'Dette er et eksempel på et indlæg. Det viser dig nogle af [url=https://www.flatpress.org]FlatPress[/url]\' funktioner. +$lang ['samplecontent'] ['entry'] ['content'] = 'Dette er et eksempel på et indlæg. Det viser dig nogle af [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url]\' funktioner. "more"-elementet giver dig mulighed for at springe fra artikeloversigten til den komplette artikel. @@ -109,7 +109,7 @@ $lang ['samplecontent'] ['entry'] ['content'] = 'Dette er et eksempel på et ind [h4]Formatering af tekst[/h4] -I FlatPress formaterer du dit indhold med [url=http://wiki.flatpress.org/doc:plugins:bbcode]BBcode[/url] (bulletin board code). Det er meget nemt med BBCode. Vil du have nogle eksempler? [b] laver [b]fed tekst[/b], [i] [i]kursiv[/i]. +I FlatPress formaterer du dit indhold med [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]BBcode[/url] (bulletin board code). Det er meget nemt med BBCode. Vil du have nogle eksempler? [b] laver [b]fed tekst[/b], [i] [i]kursiv[/i]. [quote]Elementet [b]quote[/b] kan bruges til at markere citater.[/quote] @@ -117,7 +117,7 @@ I FlatPress formaterer du dit indhold med [url=http://wiki.flatpress.org/doc:plu Den kan også repræsentere indrykninger.[/code] -Elementerne \'img\' (billeder) og \'url\' (links) har særlige muligheder. Du kan finde ud af mere om dette i [url=https://wiki.flatpress.org/doc:plugins:bbcode]FlatPress-Wiki.[/url]. +Elementerne \'img\' (billeder) og \'url\' (links) har særlige muligheder. Du kan finde ud af mere om dette i [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]FlatPress-Wiki.[/url]. [h4]Indlæg (blogartikler) og statiske sider[/h4] @@ -131,25 +131,25 @@ I [url=admin.php]administrationsområdet[/url] kan du oprette poster og statiske [h4]Plugins[/h4] -Du kan i vid udstrækning tilpasse FlatPress til dine behov ved at udvide det med [url=https://wiki.flatpress.org/doc:plugins:standard]Plugins[/url]. BBCode er for eksempel et plugin. +Du kan i vid udstrækning tilpasse FlatPress til dine behov ved at udvide det med [url=https://wiki.flatpress.org/doc:plugins:standard target=_blank rel=external]Plugins[/url]. BBCode er for eksempel et plugin. Her er nogle flere eksempler på indhold, der viser dig endnu flere FlatPress-funktioner :) To statiske sider er allerede forberedt til dig: [list] [*][url=static.php?page=about]Om[/url] -[*][url=static.php?page=menu]Menu[/url] (Indholdet af denne statiske side vises også i sidebjælken på din blog - det er magien ved [b]blockparser-widget[/b]. [url=http://wiki.flatpress.org/]FlatPress-Wiki[/url] har oplysninger om dette og meget mere!) +[*][url=static.php?page=menu]Menu[/url] (Indholdet af denne statiske side vises også i sidebjælken på din blog - det er magien ved [b]blockparser-widget[/b]. [url=https://wiki.flatpress.org/ target=_blank rel=external]FlatPress-Wiki[/url] har oplysninger om dette og meget mere!) [/list] Med [b]PhotoSwipe-pluginet[/b] kan du nu placere dine billeder endnu nemmere, enten som et float="left"- eller float="right"-justeret enkeltbillede, omgivet af teksten. -Du kan endda præsentere hele gallerier for dine besøgende med elementet \'gallery\'. Du kan finde ud af, hvor nemt det er [url="https://wiki.flatpress.org/res:plugins:photoswipe"]her.[/url]. +Du kan endda præsentere hele gallerier for dine besøgende med elementet \'gallery\'. Du kan finde ud af, hvor nemt det er [url=https://wiki.flatpress.org/res:plugins:photoswipe target=_blank rel=external]her.[/url]. [h4]Widgets[/h4] Ingen af elementerne i sidepanelet på din blog er faste, du kan flytte dem, fjerne dem og tilføje nye i administrationsområdet. -Disse elementer kaldes [b]widgets[/b]. Selvfølgelig har FlatPress Wiki også en masse nyttige oplysninger om dette emne [url=https://wiki.flatpress.org/doc:tips:widgets].[/url]. +Disse elementer kaldes [b]widgets[/b]. Selvfølgelig har [url=https://wiki.flatpress.org/doc:tips:widgets target=_blank rel=external]FlatPress Wiki[/url] også en masse nyttige oplysninger om dette emne. [h4]Temaer[/h4] @@ -163,23 +163,23 @@ Med FlatPress Leggero-temaet har du 3 stilskabeloner til din rådighed - fra kla Vil du gerne vide mere om FlatPress? [list] -[*]I [url=https://www.flatpress.org/?x]projektbloggen[/url] kan du finde ud af, hvad der i øjeblikket foregår i FlatPress-projektet. -[*]Besøg [url=https://forum.flatpress.org/]support forum[/url] for support og kontakt med andre FlatPress-brugere. -[*]Download fantastiske [b]temaer[/b] skabt af fællesskabet fra [url=https://wiki.flatpress.org/res:themes]Wiki[/url]. -[*]Der er også gode [url=https://wiki.flatpress.org/res:plugins]plugins[/url] der. +[*]I [url=https://www.flatpress.org/?x target=_blank rel=external]projektbloggen[/url] kan du finde ud af, hvad der i øjeblikket foregår i FlatPress-projektet. +[*]Besøg [url=https://forum.flatpress.org/ target=_blank rel=external]support forum[/url] for support og kontakt med andre FlatPress-brugere. +[*]Download fantastiske [b]temaer[/b] skabt af fællesskabet fra [url=https://wiki.flatpress.org/res:themes target=_blank rel=external]Wiki[/url]. +[*]Der er også gode [url=https://wiki.flatpress.org/res:plugins target=_blank rel=external]plugins[/url] der. [*]Få [url=https://wiki.flatpress.org/res:language]oversættelsespakken[/url] til dit sprog. -[*]Du kan også følge FlatPress på [url=https://twitter.com/FlatPress]X (Twitter)[/url] og [url=https://fosstodon.org/@flatpress]Mastodon[/url]. +[*]Du kan også følge FlatPress på [url=https://twitter.com/FlatPress target=_blank rel=external]X (Twitter)[/url] og [url=https://fosstodon.org/@flatpress target=_blank rel=external]Mastodon[/url]. [/list] [h4]Hvordan kan jeg støtte FlatPress?[/h4] [list] -[*]Støt projektet med en [url=http://www.flatpress.org/home/static.php?page=donate]lille donation[/url]. -[*][url=https://www.flatpress.org/contact/]Rapporter[/url] fejl, der er opstået, eller send os forslag til forbedringer. -[*]Programmører er velkomne til at støtte os på [url="https://github.com/flatpressblog/flatpress"]GitHub[/url]. -[*]Oversæt FlatPress og dens dokumentation til [url=https://wiki.flatpress.org/res:language]dit sprog[/url]. -[*]Vær en del af FlatPress-fællesskabet i [url=https://forum.flatpress.org/]supportforummet[/url]. +[*]Støt projektet med en [url=https://www.flatpress.org/home/static.php?page=donate target=_blank rel=external]lille donation[/url]. +[*][url=https://www.flatpress.org/contact/ target=_blank rel=external]Rapporter[/url] fejl, der er opstået, eller send os forslag til forbedringer. +[*]Programmører er velkomne til at støtte os på [url=https://github.com/flatpressblog/flatpress target=_blank rel=external]GitHub[/url]. +[*]Oversæt FlatPress og dens dokumentation til [url=https://wiki.flatpress.org/res:language target=_blank rel=external]dit sprog[/url]. +[*]Vær en del af FlatPress-fællesskabet i [url=https://forum.flatpress.org/ target=_blank rel=external]supportforummet[/url]. [*]Fortæl verden, hvor fantastisk FlatPress er! :) [/list] @@ -190,7 +190,7 @@ Vil du gerne vide mere om FlatPress? God fornøjelse! :) -[i][url=https://www.flatpress.org]FlatPress[/url]-teamet[/i] +[i][url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url]-teamet[/i] '; diff --git a/setup/lang/lang.de-de.php b/setup/lang/lang.de-de.php index 64d2e73..775fbd0 100644 --- a/setup/lang/lang.de-de.php +++ b/setup/lang/lang.de-de.php @@ -48,7 +48,7 @@ $lang ['step1'] = array( Aber keine Sorge, es dauert nicht lange!', 'descrl1' => 'Wähle deine Sprache.', 'descrl2' => 'Nicht in der Liste?', - 'descrlang' => 'Wenn du deine Sprache nicht in der Liste findest, schau einmal nach, ob es ein passendes Sprachpaket gibt: + 'descrlang' => 'Wenn du deine Sprache nicht in der Liste findest, schau einmal nach, ob es ein passendes Sprachpaket gibt:
%s
@@ -79,7 +79,7 @@ $lang ['step3'] = array( Danke, dass du dich für FlatPress entschieden hast!' @@ -100,7 +100,7 @@ $lang ['samplecontent'] ['menu'] ['content'] = '[list] [/list]'; $lang ['samplecontent'] ['entry'] ['subject'] = 'Willkommen bei FlatPress!'; -$lang ['samplecontent'] ['entry'] ['content'] = 'Das ist ein Beispiel-Beitrag. Er zeigt dir einige Funktionen von [url=https://www.flatpress.org]FlatPress[/url]. +$lang ['samplecontent'] ['entry'] ['content'] = 'Das ist ein Beispiel-Beitrag. Er zeigt dir einige Funktionen von [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url]. Das "more"-Element erlaubt es dir, vom Anriss des Beitrags zum kompletten Artikel zu springen. @@ -109,7 +109,7 @@ Das "more"-Element erlaubt es dir, vom Anriss des Beitrags zum kompletten Artike [h4]Textformatierung[/h4] -In FlatPress formatierst du deine Inhalte mit [url=http://wiki.flatpress.org/doc:plugins:bbcode]BBcode[/url] (Bulletin-Board-Code). Mit BBCode geht das sehr einfach. Beispiele gefällig? [b] macht [b]fetten Text[/b], [i] [i]kursiven[/i]. +In FlatPress formatierst du deine Inhalte mit [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]BBcode[/url] (Bulletin-Board-Code). Mit BBCode geht das sehr einfach. Beispiele gefällig? [b] macht [b]fetten Text[/b], [i] [i]kursiven[/i]. [quote]Mit dem [b]quote[/b]-Element lassen sich Zitate auszeichnen.[/quote] @@ -117,7 +117,7 @@ In FlatPress formatierst du deine Inhalte mit [url=http://wiki.flatpress.org/doc Es kann auch Einrückungen darstellen.[/code] -Die Elemente \'img\' (Bilder) und \'url\' (Links) haben spezielle Optionen. Mehr darüber erfährst du im [url=https://wiki.flatpress.org/doc:plugins:bbcode]FlatPress-Wiki[/url]. +Die Elemente \'img\' (Bilder) und \'url\' (Links) haben spezielle Optionen. Mehr darüber erfährst du im [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]FlatPress-Wiki[/url]. [h4]Einträge (Blogartikel) und statische Seiten[/h4] @@ -131,25 +131,25 @@ Im [url=admin.php]Administrationsbereich[/url] kannst du Einträge und statische [h4]Plugins[/h4] -Du kannst FlatPress umfassend an deine Bedürfnisse anpassen, indem du es mit [url=https://wiki.flatpress.org/doc:plugins:standard]Plugins[/url] erweiterst. BBCode ist z.B. ein Plugin. +Du kannst FlatPress umfassend an deine Bedürfnisse anpassen, indem du es mit [url=https://wiki.flatpress.org/doc:plugins:standard target=_blank rel=external]Plugins[/url] erweiterst. BBCode ist z.B. ein Plugin. Es folgt noch etwas mehr Beispiel-Inhalt, der dir noch mehr FlatPress-Funktionen zeigt :) Zwei statische Seiten sind für dich schon vorbereitet: [list] [*][url=static.php?page=about]Über[/url] -[*][url=static.php?page=menu]Menü[/url] (Der Inhalt dieser statischen Seite taucht auch in der Seitenleiste deines Blogs auf - das ist die Magie des [b]Blockparser-Widgets[/b]. Das [url=http://wiki.flatpress.org/]FlatPress-Wiki[/url] hat Informationen dazu, und noch viel mehr!) +[*][url=static.php?page=menu]Menü[/url] (Der Inhalt dieser statischen Seite taucht auch in der Seitenleiste deines Blogs auf - das ist die Magie des [b]Blockparser-Widgets[/b]. Das [url=https://wiki.flatpress.org/ target=_blank rel=external]FlatPress-Wiki[/url] hat Informationen dazu, und noch viel mehr!) [/list] Mit dem [b]PhotoSwipe-Plugin[/b] platzierst du jetzt noch einfacher deine Bilder, wahlweise als float="left"- oder float="right" ausgerichtetes Einzelbild, vom Text umschlossen. -Du kannst sogar mit dem Element \'gallery\' deinen Besuchern ganze Galerien präsentieren. Wie einfach es funktioniert, [url="https://wiki.flatpress.org/res:plugins:photoswipe"]erfährst du hier[/url]. +Du kannst sogar mit dem Element \'gallery\' deinen Besuchern ganze Galerien präsentieren. Wie einfach es funktioniert, [url=https://wiki.flatpress.org/res:plugins:photoswipe target=_blank rel=external]erfährst du hier[/url]. [h4]Widgets[/h4] Keines der Elemente in der Seitenleiste deines Blogs ist fest vorgegeben, du kannst sie im Administrationsbereich verschieben, entfernen und neue hinzufügen. -Diese Elemente werden [b]Widgets[/b] genannt. Natürlich hat das FlatPress-Wiki auch zu diesem Thema [url=https://wiki.flatpress.org/doc:tips:widgets]viele hilfreiche Informationen[/url]. +Diese Elemente werden [b]Widgets[/b] genannt. Natürlich hat das FlatPress-Wiki auch zu diesem Thema [url=https://wiki.flatpress.org/doc:tips:widgets target=_blank rel=external]viele hilfreiche Informationen[/url]. [h4]Themes[/h4] @@ -163,23 +163,23 @@ Mit dem FlatPress-Leggero-Theme stehen dir 3 Stil-Vorlagen zur Verfügung - von Du möchtest gern mehr über FlatPress wissen? [list] -[*]Im [url=https://www.flatpress.org/?x]Projekt-Blog[/url] erfährst du, was im FlatPress-Projekt aktuell los ist. -[*]Besuche das [url=https://forum.flatpress.org/]Supportforum[/url] für Unterstützung und den Kontakt zu anderen FlatPress-Benutzern. -[*]Lade dir großartige von der Community erstellte [b]Themes[/b] aus dem [url=https://wiki.flatpress.org/res:themes]Wiki[/url] herunter. -[*]Dort gibt es auch tolle [url=https://wiki.flatpress.org/res:plugins]Plugins[/url]. -[*]Hole dir das [url=https://wiki.flatpress.org/res:language]Übersetzungspaket[/url] für deine Sprache. -[*]FlatPress kannst du auch auf [url=https://twitter.com/FlatPress]X (Twitter)[/url] und [url=https://fosstodon.org/@flatpress]Mastodon[/url] folgen. +[*]Im [url=https://www.flatpress.org/?x target=_blank rel=external]Projekt-Blog[/url] erfährst du, was im FlatPress-Projekt aktuell los ist. +[*]Besuche das [url=https://forum.flatpress.org/ target=_blank rel=external]Supportforum[/url] für Unterstützung und den Kontakt zu anderen FlatPress-Benutzern. +[*]Lade dir großartige von der Community erstellte [b]Themes[/b] aus dem [url=https://wiki.flatpress.org/res:themes target=_blank rel=external]Wiki[/url] herunter. +[*]Dort gibt es auch tolle [url=https://wiki.flatpress.org/res:plugins target=_blank rel=external]Plugins[/url]. +[*]Hole dir das [url=https://wiki.flatpress.org/res:language target=_blank rel=external]Übersetzungspaket[/url] für deine Sprache. +[*]FlatPress kannst du auch auf [url=https://twitter.com/FlatPress target=_blank rel=external]X (Twitter)[/url] und [url=https://fosstodon.org/@flatpress target=_blank rel=external]Mastodon[/url] folgen. [/list] [h4]Wie kann ich FlatPress unterstützen?[/h4] [list] -[*]Unterstütze das Projekt mit einer [url=http://www.flatpress.org/home/static.php?page=donate]kleinen Spende[/url]. -[*][url=https://www.flatpress.org/contact/]Melde[/url] aufgetretene Fehler oder schick uns Verbesserungsvorschläge. -[*]Programmierer sind herzlich eingeladen, uns auf [url="https://github.com/flatpressblog/flatpress"]GitHub[/url] zu unterstützen. -[*]Übersetze FlatPress und seine Dokumentation in [url=https://wiki.flatpress.org/res:language]deine Sprache[/url]. -[*]Sei ein Teil der FlatPress-Gemeinschaft im [url=https://forum.flatpress.org/]Supportforum[/url]. +[*]Unterstütze das Projekt mit einer [url=https://www.flatpress.org/home/static.php?page=donate target=_blank rel=external]kleinen Spende[/url]. +[*][url=https://www.flatpress.org/contact/ target=_blank rel=external]Melde[/url] aufgetretene Fehler oder schick uns Verbesserungsvorschläge. +[*]Programmierer sind herzlich eingeladen, uns auf [url=https://github.com/flatpressblog/flatpress target=_blank rel=external]GitHub[/url] zu unterstützen. +[*]Übersetze FlatPress und seine Dokumentation in [url=https://wiki.flatpress.org/res:language target=_blank rel=external]deine Sprache[/url]. +[*]Sei ein Teil der FlatPress-Gemeinschaft im [url=https://forum.flatpress.org/ target=_blank rel=external]Supportforum[/url]. [*]Erzähl der Welt, wie toll FlatPress ist! :) [/list] @@ -190,7 +190,7 @@ Du möchtest gern mehr über FlatPress wissen? Viel Spaß! :) -[i]Das [url=https://www.flatpress.org]FlatPress[/url]-Team[/i] +[i]Das [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url]-Team[/i] '; diff --git a/setup/lang/lang.el-gr.php b/setup/lang/lang.el-gr.php index 70bdfd5..34188cf 100644 --- a/setup/lang/lang.el-gr.php +++ b/setup/lang/lang.el-gr.php @@ -48,7 +48,7 @@ $lang ['step1'] = array( Αλλά μην ανησυχείτε, δεν θα πάρει πολύ χρόνο!', 'descrl1' => 'Επιλέξτε τη γλώσσα σας.', 'descrl2' => 'Δεν υπάρχει στη λίστα;', - 'descrlang' => 'Αν δεν βρείτε τη γλώσσα σας στη λίστα, δείτε αν υπάρχει κατάλληλο πακέτο γλώσσας: + 'descrlang' => 'Αν δεν βρείτε τη γλώσσα σας στη λίστα, δείτε αν υπάρχει κατάλληλο πακέτο γλώσσας:
%s
@@ -79,7 +79,7 @@ $lang ['step3'] = array( Σας ευχαριστούμε που επιλέξατε την FlatPress!' @@ -100,7 +100,7 @@ $lang ['samplecontent'] ['menu'] ['content'] = '[list] [/list]'; $lang ['samplecontent'] ['entry'] ['subject'] = 'Welcome to FlatPress!'; -$lang ['samplecontent'] ['entry'] ['content'] = 'Αυτό είναι ένα δείγμα ανάρτησης. Σας δείχνει μερικές από τις λειτουργίες του [url=https://www.flatpress.org]FlatPress[/url]. +$lang ['samplecontent'] ['entry'] ['content'] = 'Αυτό είναι ένα δείγμα ανάρτησης. Σας δείχνει μερικές από τις λειτουργίες του [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url]. Το στοιχείο "more" σας επιτρέπει να μεταβείτε από το περίγραμμα του άρθρου στο πλήρες άρθρο. @@ -109,7 +109,7 @@ $lang ['samplecontent'] ['entry'] ['content'] = 'Αυτό είναι ένα δε [h4]Μορφοποίηση κειμένου[/h4] -Στο FlatPress μορφοποιείτε το περιεχόμενό σας με [url=http://wiki.flatpress.org/doc:plugins:bbcode]BBcode[/url] (Bulletin-Board-Code). Αυτό είναι πολύ εύκολο με το BBCode. Θέλετε μερικά παραδείγματα; [b] κάνει [b]έντονο κείμενο[/b], [i] [i]πλάγιο[/i]. +Στο FlatPress μορφοποιείτε το περιεχόμενό σας με [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]BBcode[/url] (Bulletin-Board-Code). Αυτό είναι πολύ εύκολο με το BBCode. Θέλετε μερικά παραδείγματα; [b] κάνει [b]έντονο κείμενο[/b], [i] [i]πλάγιο[/i]. [quote]Το στοιχείο [b]quote[/b] μπορεί να χρησιμοποιηθεί για τη σήμανση εισαγωγικών.[/quote] @@ -117,7 +117,7 @@ $lang ['samplecontent'] ['entry'] ['content'] = 'Αυτό είναι ένα δε Μπορεί επίσης να να αναπαριστά εσοχές.[/code] -Τα στοιχεία \'img\' (εικόνες) και \'url\' (σύνδεσμοι) έχουν ειδικές επιλογές. Μπορείτε να μάθετε περισσότερα σχετικά με αυτό στο [url=https://wiki.flatpress.org/doc:plugins:bbcode]FlatPress-Wiki[/url]. +Τα στοιχεία \'img\' (εικόνες) και \'url\' (σύνδεσμοι) έχουν ειδικές επιλογές. Μπορείτε να μάθετε περισσότερα σχετικά με αυτό στο [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]FlatPress-Wiki[/url]. [h4]Καταχωρήσεις (άρθρα ιστολογίου) και στατικές σελίδες[/h4] @@ -131,25 +131,25 @@ $lang ['samplecontent'] ['entry'] ['content'] = 'Αυτό είναι ένα δε [h4]Plugins[/h4] -Μπορείτε να προσαρμόσετε εκτενώς το FlatPress στις ανάγκες σας επεκτείνοντάς το με [url=https://wiki.flatpress.org/doc:plugins:standard]Plugins[/url]. Το BBCode, για παράδειγμα, είναι ένα plugin. +Μπορείτε να προσαρμόσετε εκτενώς το FlatPress στις ανάγκες σας επεκτείνοντάς το με [url=https://wiki.flatpress.org/doc:plugins:standard target=_blank rel=external]Plugins[/url]. Το BBCode, για παράδειγμα, είναι ένα plugin. Εδώ είναι μερικά ακόμα δείγματα περιεχομένου που σας δείχνουν ακόμα περισσότερα χαρακτηριστικά του FlatPress :) Δύο στατικές σελίδες είναι ήδη έτοιμες για εσάς: [list] [*][url=static.php?page=about]Σχετικά με το[/url] -[*][url=static.php?page=menu]Μενού[/url] (Το περιεχόμενο αυτής της στατικής σελίδας εμφανίζεται επίσης στην πλαϊνή μπάρα του ιστολογίου σας - αυτή είναι η μαγεία του [b]blockparser widget[/b]. Το [url=http://wiki.flatpress.org/]FlatPress-Wiki[/url] έχει πληροφορίες σχετικά με αυτό, και πολλά άλλα!) +[*][url=static.php?page=menu]Μενού[/url] (Το περιεχόμενο αυτής της στατικής σελίδας εμφανίζεται επίσης στην πλαϊνή μπάρα του ιστολογίου σας - αυτή είναι η μαγεία του [b]blockparser widget[/b]. Το [url=https://wiki.flatpress.org/ target=_blank rel=external]FlatPress-Wiki[/url] έχει πληροφορίες σχετικά με αυτό, και πολλά άλλα!) [/list] Με το πρόσθετο [b]PhotoSwipe-Plugin[/b] μπορείτε τώρα να τοποθετήσετε τις εικόνες σας ακόμα πιο εύκολα, είτε ως float="left"- είτε ως float="right" ευθυγραμμισμένη μεμονωμένη εικόνα, που περιβάλλεται από το κείμενο. -Μπορείτε ακόμη και να παρουσιάσετε ολόκληρες γκαλερί στους επισκέπτες σας με το στοιχείο \'gallery\'. Μπορείτε να μάθετε πόσο εύκολο είναι [url="https://wiki.flatpress.org/res:plugins:photoswipe"]εδώ[/url]. +Μπορείτε ακόμη και να παρουσιάσετε ολόκληρες γκαλερί στους επισκέπτες σας με το στοιχείο \'gallery\'. Μπορείτε να μάθετε πόσο εύκολο είναι [url=https://wiki.flatpress.org/res:plugins:photoswipe target=_blank rel=external]εδώ[/url]. [h4]Widgets[/h4] Κανένα από τα στοιχεία στην πλαϊνή μπάρα του ιστολογίου σας δεν είναι σταθερό, μπορείτε να τα μετακινήσετε, να τα αφαιρέσετε και να προσθέσετε νέα στην περιοχή διαχείρισης. -Αυτά τα στοιχεία ονομάζονται [b]widgets[/b]. Φυσικά, το FlatPress Wiki έχει πολλές χρήσιμες πληροφορίες σχετικά με αυτό το θέμα [url=https://wiki.flatpress.org/doc:tips:widgets]επίσης[/url]. +Αυτά τα στοιχεία ονομάζονται [b]widgets[/b]. Φυσικά, το FlatPress Wiki έχει πολλές χρήσιμες πληροφορίες σχετικά με αυτό το θέμα [url=https://wiki.flatpress.org/doc:tips:widgets target=_blank rel=external]επίσης[/url]. [h4]Θέματα[/h4] @@ -163,23 +163,23 @@ $lang ['samplecontent'] ['entry'] ['content'] = 'Αυτό είναι ένα δε Θα θέλατε να μάθετε περισσότερα για το FlatPress? [list] -[*]Στο [url=https://www.flatpress.org/?x]blog του έργου[/url] μπορείτε να μάθετε τι συμβαίνει αυτή τη στιγμή στο έργο FlatPress. -[*]Επισκεφθείτε το [url=https://forum.flatpress.org/]Φόρουμ υποστήριξης[/url] για υποστήριξη και επικοινωνία με άλλους χρήστες του FlatPress. -[*]Κατεβάστε σπουδαία θέματα [b]δημιουργημένα από την κοινότητα[/b] από το [url=https://wiki.flatpress.org/res:themes]Wiki[/url]. -[*]Υπάρχουν επίσης σπουδαία [url=https://wiki.flatpress.org/res:plugins]plugins[/url] εκεί. -[*]Αποκτήστε [url=https://wiki.flatpress.org/res:language]πακέτο μεταφράσεων[/url] για τη γλώσσα σας. -[*]Μπορείτε επίσης να ακολουθήσετε την FlatPress στα [url=https://twitter.com/FlatPress]X (Twitter)[/url] και [url=https://fosstodon.org/@flatpress]Mastodon[/url]. +[*]Στο [url=https://www.flatpress.org/?x target=_blank rel=external]blog του έργου[/url] μπορείτε να μάθετε τι συμβαίνει αυτή τη στιγμή στο έργο FlatPress. +[*]Επισκεφθείτε το [url=https://forum.flatpress.org/ target=_blank rel=external]Φόρουμ υποστήριξης[/url] για υποστήριξη και επικοινωνία με άλλους χρήστες του FlatPress. +[*]Κατεβάστε σπουδαία θέματα [b]δημιουργημένα από την κοινότητα[/b] από το [url=https://wiki.flatpress.org/res:themes target=_blank rel=external]Wiki[/url]. +[*]Υπάρχουν επίσης σπουδαία [url=https://wiki.flatpress.org/res:plugins target=_blank rel=external]plugins[/url] εκεί. +[*]Αποκτήστε [url=https://wiki.flatpress.org/res:language target=_blank rel=external]πακέτο μεταφράσεων[/url] για τη γλώσσα σας. +[*]Μπορείτε επίσης να ακολουθήσετε την FlatPress στα [url=https://twitter.com/FlatPress target=_blank rel=external]X (Twitter)[/url] και [url=https://fosstodon.org/@flatpress target=_blank rel=external]Mastodon[/url]. [/list] [h4]Πώς μπορώ να υποστηρίξω το FlatPress?[/h4] [list] -[*]Υποστηρίξτε το έργο με μια [url=http://www.flatpress.org/home/static.php?page=donate]μικρή δωρεά[/url]. -[*][url=https://www.flatpress.org/contact/]Αναφέρετε[/url] σφάλματα που έχουν εμφανιστεί ή στείλτε μας προτάσεις για βελτίωση. -[*]Οι προγραμματιστές είναι ευπρόσδεκτοι να μας υποστηρίξουν στο [url="https://github.com/flatpressblog/flatpress"]GitHub[/url]. -[*]Μεταφράστε το FlatPress και την τεκμηρίωσή του στη [url=https://wiki.flatpress.org/res:language]γλώσσα σας[/url]. -[*]Γίνετε μέλος της κοινότητας του FlatPress στο [url=https://forum.flatpress.org/]Φόρουμ υποστήριξης[/url]. +[*]Υποστηρίξτε το έργο με μια [url=https://www.flatpress.org/home/static.php?page=donate target=_blank rel=external]μικρή δωρεά[/url]. +[*][url=https://www.flatpress.org/contact/ target=_blank rel=external]Αναφέρετε[/url] σφάλματα που έχουν εμφανιστεί ή στείλτε μας προτάσεις για βελτίωση. +[*]Οι προγραμματιστές είναι ευπρόσδεκτοι να μας υποστηρίξουν στο [url=https://github.com/flatpressblog/flatpress target=_blank rel=external]GitHub[/url]. +[*]Μεταφράστε το FlatPress και την τεκμηρίωσή του στη [url=https://wiki.flatpress.org/res:language target=_blank rel=external]γλώσσα σας[/url]. +[*]Γίνετε μέλος της κοινότητας του FlatPress στο [url=https://forum.flatpress.org/ target=_blank rel=external]Φόρουμ υποστήριξης[/url]. [*]Πείτε στον κόσμο πόσο σπουδαίο είναι το FlatPress! :) [/list] @@ -190,7 +190,7 @@ $lang ['samplecontent'] ['entry'] ['content'] = 'Αυτό είναι ένα δε Καλή διασκέδαση! :) -[i]Η ομάδα [url=https://www.flatpress.org]FlatPress[/url][/i] +[i]Η ομάδα [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url][/i] '; diff --git a/setup/lang/lang.en-us.php b/setup/lang/lang.en-us.php index 1624faa..abc1eb9 100644 --- a/setup/lang/lang.en-us.php +++ b/setup/lang/lang.en-us.php @@ -48,7 +48,7 @@ $lang ['step1'] = array( Don\'t worry, it won\'t take you long!', 'descrl1' => 'Select your language.', 'descrl2' => 'Not in the list?', - 'descrlang' => 'If you don\'t see your language in this list, you might want to see if there is a language pack for this version: + 'descrlang' => 'If you don\'t see your language in this list, you might want to see if there is a language pack for this version:
%s
@@ -79,7 +79,7 @@ $lang ['step3'] = array( And thank you for choosing FlatPress!' @@ -100,7 +100,7 @@ $lang ['samplecontent'] ['menu'] ['content'] = '[list] [/list]'; $lang ['samplecontent'] ['entry'] ['subject'] = 'Welcome to FlatPress!'; -$lang ['samplecontent'] ['entry'] ['content'] = 'This is a sample entry, posted to show you some of the features of [url=https://www.flatpress.org]FlatPress[/url]. +$lang ['samplecontent'] ['entry'] ['content'] = 'This is a sample entry, posted to show you some of the features of [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url]. The more tag allows you to create a "jump" between an excerpt and the complete article. @@ -109,7 +109,7 @@ The more tag allows you to create a "jump" between an excerpt and the complete a [h4]Styling[/h4] -The default way to style and format your content is [url=http://wiki.flatpress.org/doc:plugins:bbcode]BBcode[/url] (bulletin board code). BBCode is an easy way to style your posts. Most common codes are allowed. Like [b] for [b]bold[/b] (html: strong), [i] for [i]italics[/i] (html: em), etc. +The default way to style and format your content is [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]BBcode[/url] (bulletin board code). BBCode is an easy way to style your posts. Most common codes are allowed. Like [b] for [b]bold[/b] (html: strong), [i] for [i]italics[/i] (html: em), etc. [quote]There are also [b]quote[/b] blocks to display your favourite quotations.[/quote] @@ -117,7 +117,7 @@ The default way to style and format your content is [url=http://wiki.flatpress.o It also supports indented content.[/code] -img and url tag have also special options. You can find out more on the [url=https://wiki.flatpress.org/doc:plugins:bbcode]FP wiki[/url]. +img and url tag have also special options. You can find out more on the [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]FlatPress-Wiki[/url]. [h4]Entries (posts) and Static pages[/h4] @@ -129,24 +129,24 @@ Static pages are useful to create general information pages. You can also make o [h4]Plugins[/h4] -FlatPress is very customizable, and supports [url=https://wiki.flatpress.org/doc:plugins:standard]plugins[/url] to extend its power. BBCode is a plugin itself. +FlatPress is very customizable, and supports [url=https://wiki.flatpress.org/doc:plugins:standard target=_blank rel=external]plugins[/url] to extend its power. BBCode is a plugin itself. We have created some more sample content, to show you some of the FP well hidden functions and gems :) You can find two [b]static pages[/b] ready to accept your contents: [list] [*][url=static.php?page=about]About me[/url] -[*][url=static.php?page=menu]Menu[/url] (notice that the links in this page will appear on your sidebar as well - this is the magic of the [b]blockparser widget[/b]. See the [url=http://wiki.flatpress.org/doc:faq]FAQ[/url] for this and more!) +[*][url=static.php?page=menu]Menu[/url] (notice that the links in this page will appear on your sidebar as well - this is the magic of the [b]blockparser widget[/b]. See the [url=https://wiki.flatpress.org/doc:faq target=_blank rel=external]FAQ[/url] for this and more!) [/list] With the [b]PhotoSwipe plugin[/b] you can now place your images even easier, either as float="left"- or float="right" aligned single image, enclosed by the text. -You can even use the \'gallery\' element to present entire galleries to your visitors. How easy it works, [url="https://wiki.flatpress.org/res:plugins:photoswipe"]you can learn here[/url]. +You can even use the \'gallery\' element to present entire galleries to your visitors. How easy it works, [url=https://wiki.flatpress.org/res:plugins:photoswipe target=_blank rel=external]you can learn here[/url]. [h4]Widgets[/h4] There isn\'t a single fixed element in the sidebar(s). All the elements you can find in the bars surrounding this text are completely positionable, and most of them are customizable as well. Some themes even provide a panel interface in the admin area. -These elements are called [b]widgets[/b]. For more on widgets and [url=https://wiki.flatpress.org/doc:tips:widgets]some tips[/url] to get nice effects, take a look at the [url=https://wiki.flatpress.org/]wiki[/url]. +These elements are called [b]widgets[/b]. For more on widgets and [url=https://wiki.flatpress.org/doc:tips:widgets target=_blank rel=external]some tips[/url] to get nice effects, take a look at the [url=https://wiki.flatpress.org/ target=_blank rel=external]wiki[/url]. [h4]Themes[/h4] @@ -160,23 +160,23 @@ With the FlatPress-Leggero theme you have 3 style templates at your disposal - f Want to see more? [list] -[*]Follow the [url=https://www.flatpress.org/?x]official blog[/url] to know what\'s going on in the FlatPress world. -[*]Visit the [url=https://forum.flatpress.org/]forum[/url] for support and chit-chat. -[*]Get [b]great themes[/b] from [url=https://wiki.flatpress.org/res:themes]other users\' submissions[/url]! -[*]Check out the [url=https://wiki.flatpress.org/res:plugins]plugins[/url]. -[*]Get [url=https://wiki.flatpress.org/res:language]translation pack[/url] for your language. -[*]You can also follow FlatPress on [url=https://twitter.com/FlatPress]X (Twitter)[/url] and [url=https://fosstodon.org/@flatpress]Mastodon[/url]. +[*]Follow the [url=https://www.flatpress.org/?x target=_blank rel=external]official blog[/url] to know what\'s going on in the FlatPress world. +[*]Visit the [url=https://forum.flatpress.org/ target=_blank rel=external]forum[/url] for support and chit-chat. +[*]Get [b]great themes[/b] from [url=https://wiki.flatpress.org/res:themes target=_blank rel=external]other users\' submissions[/url]! +[*]Check out the [url=https://wiki.flatpress.org/res:plugins target=_blank rel=external]plugins[/url]. +[*]Get [url=https://wiki.flatpress.org/res:language target=_blank rel=external]translation pack[/url] for your language. +[*]You can also follow FlatPress on [url=https://twitter.com/FlatPress target=_blank rel=external]X (Twitter)[/url] and [url=https://fosstodon.org/@flatpress target=_blank rel=external]Mastodon[/url]. [/list] [h4]How can I help?[/h4] [list] -[*]Support the project with a [url=http://www.flatpress.org/home/static.php?page=donate]small donation[/url]. -[*][url=https://www.flatpress.org/contact/]Contact us[/url] to report bugs or suggest improvements. -[*]Contribute to the development of Flatpress on [url="https://github.com/flatpressblog/flatpress"]GitHub[/url]. -[*]Translate FlatPress or the documentation into [url=https://wiki.flatpress.org/res:language]your language[/url]. -[*]Share your knowledge and get connected with other FlatPress users on the [url=https://forum.flatpress.org/]forum[/url]. +[*]Support the project with a [url=https://www.flatpress.org/home/static.php?page=donate target=_blank rel=external]small donation[/url]. +[*][url=https://www.flatpress.org/contact/ target=_blank rel=external]Contact us[/url] to report bugs or suggest improvements. +[*]Contribute to the development of FlatPress on [url=https://github.com/flatpressblog/flatpress target=_blank rel=external]GitHub[/url]. +[*]Translate FlatPress or the documentation into [url=https://wiki.flatpress.org/res:language target=_blank rel=external]your language[/url]. +[*]Share your knowledge and get connected with other FlatPress users on the [url=https://forum.flatpress.org/ target=_blank rel=external]forum[/url]. [*]Spread the word! :) [/list] @@ -187,7 +187,7 @@ Now you can [url=login.php]Login[/url] to get to the [url=admin.php]Administrati Have fun! :) -[i]The [url=https://www.flatpress.org]FlatPress[/url] Team[/i] +[i]The [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url] Team[/i] '; diff --git a/setup/lang/lang.es-es.php b/setup/lang/lang.es-es.php index efde065..b872414 100644 --- a/setup/lang/lang.es-es.php +++ b/setup/lang/lang.es-es.php @@ -48,7 +48,7 @@ $lang ['step1'] = array( Pero no se preocupe, no tardará mucho.', 'descrl1' => 'Elige tu idioma.', 'descrl2' => 'No está en la lista?', - 'descrlang' => 'Si no encuentras tu idioma en la lista, comprueba si existe un paquete de idiomas adecuado : + 'descrlang' => 'Si no encuentras tu idioma en la lista, comprueba si existe un paquete de idiomas adecuado :
%s
@@ -79,7 +79,7 @@ $lang ['step3'] = array( Gracias por elegir FlatPress!' @@ -100,7 +100,7 @@ $lang ['samplecontent'] ['menu'] ['content'] = '[list] [/list]'; $lang ['samplecontent'] ['entry'] ['subject'] = 'Bienvenido a FlatPress!'; -$lang ['samplecontent'] ['entry'] ['content'] = 'Esta es una entrada de ejemplo. Esto muestra algunas de las funciones del [url=https://www.flatpress.org]FlatPress[/url]. +$lang ['samplecontent'] ['entry'] ['content'] = 'Esta es una entrada de ejemplo. Esto muestra algunas de las funciones del [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url]. El elemento "more" le permite saltar del esquema del artículo al artículo completo. @@ -109,7 +109,7 @@ El elemento "more" le permite saltar del esquema del artículo al artículo comp [h4]Formato de texto[/h4] -En FlatPress usted formatea su contenido con [url=http://wiki.flatpress.org/doc:plugins:bbcode]BBcode[/url] (Bulletin-Board-Code). Esto es muy fácil con BBCode. Ejemplos? [b] hace [b]texto en negrita[/b], [i] [i]cursiva[/i]. +En FlatPress usted formatea su contenido con [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]BBcode[/url] (Bulletin-Board-Code). Esto es muy fácil con BBCode. Ejemplos? [b] hace [b]texto en negrita[/b], [i] [i]cursiva[/i]. [quote]El elemento [b]quote[/b] puede utilizarse para marcar citas. [/quote] @@ -117,7 +117,7 @@ En FlatPress usted formatea su contenido con [url=http://wiki.flatpress.org/doc: También puede representar hendiduras.[/code] -Los elementos \'img\' (imágenes) y \'url\' (Links) tienen opciones especiales. Encontrará más información al respecto en la [url=https://wiki.flatpress.org/doc:plugins:bbcode]FlatPress-Wiki[/url]. +Los elementos \'img\' (imágenes) y \'url\' (Links) tienen opciones especiales. Encontrará más información al respecto en la [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]FlatPress-Wiki[/url]. [h4]Entradas (artículos de blog) y páginas estáticas[/h4] @@ -131,25 +131,25 @@ En el [url=admin.php]área de administración[/url] puedes crear entradas y pág [h4]Plugins[/h4] -Puede personalizar ampliamente FlatPress según sus necesidades ampliándolo con [url=https://wiki.flatpress.org/doc:plugins:standard]Plugins[/url]. BBCode, por ejemplo, es un Plugin. +Puede personalizar ampliamente FlatPress según sus necesidades ampliándolo con [url=https://wiki.flatpress.org/doc:plugins:standard target=_blank rel=external]Plugins[/url]. BBCode, por ejemplo, es un Plugin. Aquí tiene más ejemplos de contenido que le muestran aún más funciones de FlatPress :) Dos páginas estáticas ya están preparadas para usted: [list] [*][url=static.php?page=about]Acerca de[/url] -[*][url=static.php?page=menu]Menú[/url] (El contenido de esta página estática también aparece en la barra lateral de tu blog: esa es la magia del [b]widget blockparser[/b]. El [url=http://wiki.flatpress.org/]FlatPress-Wiki[/url] tiene información sobre esto, ¡y mucho más!) +[*][url=static.php?page=menu]Menú[/url] (El contenido de esta página estática también aparece en la barra lateral de tu blog: esa es la magia del [b]widget blockparser[/b]. El [url=https://wiki.flatpress.org/ target=_blank rel=external]FlatPress-Wiki[/url] tiene información sobre esto, ¡y mucho más!) [/list] Con el plugin [b]PhotoSwipe[/b] ahora puedes colocar tus imágenes aún más fácilmente, ya sea como una sola imagen alineada float="left"- o float="right" rodeada por el texto. -Incluso puede presentar galerías enteras a sus visitantes con el elemento \'gallery\'. Puede comprobar lo fácil que es [url="https://wiki.flatpress.org/res:plugins:photoswipe"]aquí[/url]. +Incluso puede presentar galerías enteras a sus visitantes con el elemento \'gallery\'. Puede comprobar lo fácil que es [url=https://wiki.flatpress.org/res:plugins:photoswipe target=_blank rel=external]aquí[/url]. [h4]Widgets[/h4] Ninguno de los elementos de la barra lateral de tu blog es fijo, puedes moverlos, eliminarlos y añadir otros nuevos en el área de administración. -Estos elementos se denominan [b]Widgets[/b]. Por supuesto, la Wiki de FlatPress también tiene mucha información útil [url=https://wiki.flatpress.org/doc:tips:widgets]sobre este tema[/url]. +Estos elementos se denominan [b]Widgets[/b]. Por supuesto, la Wiki de FlatPress también tiene mucha información útil [url=https://wiki.flatpress.org/doc:tips:widgets target=_blank rel=external]sobre este tema[/url]. [h4]Temas[/h4] @@ -163,23 +163,23 @@ Con el tema Leggero de FlatPress tiene a su disposición 3 plantillas de estilo, Desea obtener más información sobre FlatPress? [list] -[*]En el [url=https://www.flatpress.org/?x]blog del proyecto[/url] podrá enterarse de lo que ocurre actualmente en el proyecto FlatPress. -[*]Visite el [url=https://forum.flatpress.org/]foro de soporte[/url] para obtener soporte y contactar con otros usuarios de FlatPress. -[*]Descargue magníficos [b]temas[/b] creados por la comunidad desde la [url=https://wiki.flatpress.org/res:themes]Wiki[/url]. -[*]También hay grandes [url=https://wiki.flatpress.org/res:plugins]Plugins[/url] allí. -[*]Consigue [url=https://wiki.flatpress.org/res:language]paquete de traducción[/url] para tu idioma. -[*]También puede seguir a FlatPress en [url=https://twitter.com/FlatPress]X (Twitter)[/url] y [url=https://fosstodon.org/@flatpress]Mastodon[/url]. +[*]En el [url=https://www.flatpress.org/?x target=_blank rel=external]blog del proyecto[/url] podrá enterarse de lo que ocurre actualmente en el proyecto FlatPress. +[*]Visite el [url=https://forum.flatpress.org/ target=_blank rel=external]foro de soporte[/url] para obtener soporte y contactar con otros usuarios de FlatPress. +[*]Descargue magníficos [b]temas[/b] creados por la comunidad desde la [url=https://wiki.flatpress.org/res:themes target=_blank rel=external]Wiki[/url]. +[*]También hay grandes [url=https://wiki.flatpress.org/res:plugins target=_blank rel=external]Plugins[/url] allí. +[*]Consigue [url=https://wiki.flatpress.org/res:language target=_blank rel=external]paquete de traducción[/url] para tu idioma. +[*]También puede seguir a FlatPress en [url=https://twitter.com/FlatPress target=_blank rel=external]X (Twitter)[/url] y [url=https://fosstodon.org/@flatpress target=_blank rel=external]Mastodon[/url]. [/list] [h4]Cómo puedo apoyar a FlatPress?[/h4] [list] -[*]Apoye el proyecto con una [url=http://www.flatpress.org/home/static.php?page=donate]pequeña donación[/url]. -[*][url=https://www.flatpress.org/contact/]Informe[/url] de los errores que se hayan producido o envíenos sugerencias de mejora. -[*]Invitamos a los programadores a que nos apoyen en [url="https://github.com/flatpressblog/flatpress"]GitHub[/url]. -[*]Traduzca FlatPress y su documentación a [url=https://wiki.flatpress.org/res:language]su idioma[/url]. -[*]Forme parte de la comunidad FlatPress en el [url=https://forum.flatpress.org/]Foro de soporte[/url]. +[*]Apoye el proyecto con una [url=https://www.flatpress.org/home/static.php?page=donate target=_blank rel=external]pequeña donación[/url]. +[*][url=https://www.flatpress.org/contact/ target=_blank rel=external]Informe[/url] de los errores que se hayan producido o envíenos sugerencias de mejora. +[*]Invitamos a los programadores a que nos apoyen en [url=https://github.com/flatpressblog/flatpress target=_blank rel=external]GitHub[/url]. +[*]Traduzca FlatPress y su documentación a [url=https://wiki.flatpress.org/res:language target=_blank rel=external]su idioma[/url]. +[*]Forme parte de la comunidad FlatPress en el [url=https://forum.flatpress.org/ target=_blank rel=external]Foro de soporte[/url]. [*]Cuéntale al mundo lo genial que es FlatPress! :) [/list] @@ -190,7 +190,7 @@ Desea obtener más información sobre FlatPress? Que te diviertas! :) -[i]El equipo [url=https://www.flatpress.org]FlatPress[/url][/i] +[i]El equipo [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url][/i] '; diff --git a/setup/lang/lang.fr-fr.php b/setup/lang/lang.fr-fr.php index 5752664..b8729d4 100644 --- a/setup/lang/lang.fr-fr.php +++ b/setup/lang/lang.fr-fr.php @@ -48,7 +48,7 @@ $lang ['step1'] = array( Mais ne t\'inquiète pas, ça ne durera pas longtemps !', 'descrl1' => 'Choisis ta langue.', 'descrl2' => 'Pas dans la liste ?', - 'descrlang' => 'Si tu ne trouves pas ta langue dans la liste, regarde s\'il existe un pack de langue correspondant: + 'descrlang' => 'Si tu ne trouves pas ta langue dans la liste, regarde s\'il existe un pack de langue correspondant:
%s
@@ -79,7 +79,7 @@ $lang ['step3'] = array( Merci d\'avoir choisi FlatPress!' @@ -100,7 +100,7 @@ $lang ['samplecontent'] ['menu'] ['content'] = '[list] [/list]'; $lang ['samplecontent'] ['entry'] ['subject'] = 'Bienvenue chez FlatPress!'; -$lang ['samplecontent'] ['entry'] ['content'] = 'Voici un exemple de contribution. Il te montre quelques fonctions de [url=https://www.flatpress.org]FlatPress[/url]. +$lang ['samplecontent'] ['entry'] ['content'] = 'Voici un exemple de contribution. Il te montre quelques fonctions de [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url]. L\'élément "more" te permet de passer du résumé de l\'article à l\'article complet. @@ -109,7 +109,7 @@ L\'élément "more" te permet de passer du résumé de l\'article à l\'article [h4]Mise en forme du texte[/h4] -Dans FlatPress, tu formates ton contenu avec [url=http://wiki.flatpress.org/doc:plugins:bbcode]BBcode[/url] (Bulletin-Board-Code). Avec le BBCode, c\'est très facile. Vous voulez des exemples? [b] fait [b]du texte en gras[/b], [i] [i]du texte en italique[/i]. +Dans FlatPress, tu formates ton contenu avec [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]BBcode[/url] (Bulletin-Board-Code). Avec le BBCode, c\'est très facile. Vous voulez des exemples? [b] fait [b]du texte en gras[/b], [i] [i]du texte en italique[/i]. [quote]L\'élément [b]quote[/b] permet de marquer les citations.[/quote] @@ -117,7 +117,7 @@ Dans FlatPress, tu formates ton contenu avec [url=http://wiki.flatpress.org/doc: Il peut également représenter des indentations.[/code] -Les éléments \'img\' (images) et \'url\' (liens) ont des options spéciales. Pour en savoir plus, consulte le [url=https://wiki.flatpress.org/doc:plugins:bbcode]FlatPress-Wiki[/url]. +Les éléments \'img\' (images) et \'url\' (liens) ont des options spéciales. Pour en savoir plus, consulte le [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]FlatPress-Wiki[/url]. [h4]Entrées (articles de blog) et pages statiques[/h4] @@ -131,25 +131,25 @@ Dans la [url=admin.php]zone d\'administration[/url] tu peux créer des entrées [h4]Plugins[/h4] -Tu peux adapter FlatPress de manière complète à tes besoins en l\'enrichissant de [url=https://wiki.flatpress.org/doc:plugins:standard]Plugins[/url]. Le BBCode, par exemple, est un plugin. +Tu peux adapter FlatPress de manière complète à tes besoins en l\'enrichissant de [url=https://wiki.flatpress.org/doc:plugins:standard target=_blank rel=external]Plugins[/url]. Le BBCode, par exemple, est un plugin. Voici un autre exemple de contenu qui te montre encore plus de fonctions FlatPress :) Deux pages statiques sont déjà préparées pour toi: [list] [*][url=static.php?page=about]Sur[/url] -[*][url=static.php?page=menu]Menu[/url] (Le contenu de cette page statique apparaît également dans la barre latérale de ton blog - c\'est la magie du [b]widget Blockparser[/b]. Le [url=http://wiki.flatpress.org/]FlatPress-Wiki[/url] a des informations à ce sujet, et bien plus encore!) +[*][url=static.php?page=menu]Menu[/url] (Le contenu de cette page statique apparaît également dans la barre latérale de ton blog - c\'est la magie du [b]widget Blockparser[/b]. Le [url=https://wiki.flatpress.org/ target=_blank rel=external]FlatPress-Wiki[/url] a des informations à ce sujet, et bien plus encore!) [/list] Avec le plugin [b]PhotoSwipe-Plugin[/b] tu peux désormais placer encore plus facilement tes images, au choix en tant qu\'image individuelle orientée float="left"- ou float="right" ,entourée par le texte. -Tu peux même présenter des galeries entières à tes visiteurs grâce à l\'élément \'gallery\'. Tu découvriras ici [url="https://wiki.flatpress.org/res:plugins:photoswipe"]à quel point c\'est simple[/url]. +Tu peux même présenter des galeries entières à tes visiteurs grâce à l\'élément \'gallery\'. Tu découvriras ici [url=https://wiki.flatpress.org/res:plugins:photoswipe target=_blank rel=external]à quel point c\'est simple[/url]. [h4]Widgets[/h4] Aucun des éléments de la barre latérale de ton blog n\'est fixe, tu peux les déplacer, les supprimer et en ajouter de nouveaux dans la zone d\'administration. -Ces éléments sont appelés [b]Widgets[/b]. Bien entendu, le wiki FlatPress dispose également de [url=https://wiki.flatpress.org/doc:tips:widgets]nombreuses informations utiles sur ce sujet[/url]. +Ces éléments sont appelés [b]Widgets[/b]. Bien entendu, le wiki FlatPress dispose également de [url=https://wiki.flatpress.org/doc:tips:widgets target=_blank rel=external]nombreuses informations utiles sur ce sujet[/url]. [h4]Thèmes[/h4] @@ -163,23 +163,23 @@ Avec le thème FlatPress Leggero, tu disposes de 3 modèles de style - du classi Tu souhaites en savoir plus sur FlatPress? [list] -[*]Le [url=https://www.flatpress.org/?x]blog du projet[/url] te permet de savoir ce qui se passe actuellement dans le projet FlatPress. -[*]Visite le [url=https://forum.flatpress.org/]forum de support[/url] pour obtenir de l\'aide et entrer en contact avec d\'autres utilisateurs de FlatPress. -[*]Télécharge de superbes [b]thèmes[/b] créés par la communauté à partir du [url=https://wiki.flatpress.org/res:themes]Wiki[/url]. -[*]On y trouve également de superbes [url=https://wiki.flatpress.org/res:plugins]plugins[/url]. -[*]Obtenez [url=https://wiki.flatpress.org/res:language]translation pack[/url] pour votre langue. -[*]Tu peux aussi suivre FlatPress sur [url=https://twitter.com/FlatPress]X (Twitter)[/url] et [url=https://fosstodon.org/@flatpress]Mastodon[/url]. +[*]Le [url=https://www.flatpress.org/?x target=_blank rel=external]blog du projet[/url] te permet de savoir ce qui se passe actuellement dans le projet FlatPress. +[*]Visite le [url=https://forum.flatpress.org/ target=_blank rel=external]forum de support[/url] pour obtenir de l\'aide et entrer en contact avec d\'autres utilisateurs de FlatPress. +[*]Télécharge de superbes [b]thèmes[/b] créés par la communauté à partir du [url=https://wiki.flatpress.org/res:themes target=_blank rel=external]Wiki[/url]. +[*]On y trouve également de superbes [url=https://wiki.flatpress.org/res:plugins target=_blank rel=external]plugins[/url]. +[*]Obtenez [url=https://wiki.flatpress.org/res:language target=_blank rel=external]translation pack[/url] pour votre langue. +[*]Tu peux aussi suivre FlatPress sur [url=https://twitter.com/FlatPress target=_blank rel=external]X (Twitter)[/url] et [url=https://fosstodon.org/@flatpress target=_blank rel=external]Mastodon[/url]. [/list] [h4]Comment puis-je soutenir FlatPress?[/h4] [list] -[*]Soutenez le projet avec un [url=http://www.flatpress.org/home/static.php?page=donate]petit don[/url]. -[*][url=https://www.flatpress.org/contact/]Signale[/url] les erreurs survenues ou envoie-nous des propositions d\'amélioration. -[*]Les programmeurs sont invités à nous rejoindre sur [url="https://github.com/flatpressblog/flatpress"]GitHub[/url]. -[*]Traduis FlatPress et sa documentation dans [url=https://wiki.flatpress.org/res:language]ta langue[/url]. -[*]Rejoignez la communauté FlatPress sur le [url=https://forum.flatpress.org/]forum de support[/url]. +[*]Soutenez le projet avec un [url=https://www.flatpress.org/home/static.php?page=donate target=_blank rel=external]petit don[/url]. +[*][url=https://www.flatpress.org/contact/ target=_blank rel=external]Signale[/url] les erreurs survenues ou envoie-nous des propositions d\'amélioration. +[*]Les programmeurs sont invités à nous rejoindre sur [url=https://github.com/flatpressblog/flatpress target=_blank rel=external]GitHub[/url]. +[*]Traduis FlatPress et sa documentation dans [url=https://wiki.flatpress.org/res:language target=_blank rel=external]ta langue[/url]. +[*]Rejoignez la communauté FlatPress sur le [url=https://forum.flatpress.org/ target=_blank rel=external]forum de support[/url]. [*]Dis au monde entier à quel point FlatPress est génial! :) [/list] @@ -190,7 +190,7 @@ Tu souhaites en savoir plus sur FlatPress? Amusez-vous bien! :) -[i]L\'équipe de [url=https://www.flatpress.org]FlatPress[/url][/i] +[i]L\'équipe de [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url][/i] '; diff --git a/setup/lang/lang.it-it.php b/setup/lang/lang.it-it.php index c8c24c9..6e8141d 100644 --- a/setup/lang/lang.it-it.php +++ b/setup/lang/lang.it-it.php @@ -48,7 +48,7 @@ $lang ['step1'] = array( Non preoccuparti, non ci vorrà molto!', 'descrl1' => 'Seleziona la tua lingua.', 'descrl2' => 'Non è in elenco?', - 'descrlang' => 'Se non vedi la tua lingua in questo elenco, potresti vedere se qui c\'è un pacchetto di lingua per questa versione: + 'descrlang' => 'Se non vedi la tua lingua in questo elenco, potresti vedere se qui c\'è un pacchetto di lingua per questa versione:
%s
@@ -79,7 +79,7 @@ $lang ['step3'] = array( E grazie per aver scelto FlatPress!' @@ -100,7 +100,7 @@ $lang ['samplecontent'] ['menu'] ['content'] = '[list] [/list]'; $lang ['samplecontent'] ['entry'] ['subject'] = 'Benvenuto su FlatPress!'; -$lang ['samplecontent'] ['entry'] ['content'] = 'Questo è un articolo di prova, inserito per mostrarti alcune delle funzioni di [url=https://www.flatpress.org]FlatPress[/url]. +$lang ['samplecontent'] ['entry'] ['content'] = 'Questo è un articolo di prova, inserito per mostrarti alcune delle funzioni di [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url]. Il tag more ti consente di creare un "salto" tra un estratto e l\'articolo completo. @@ -109,7 +109,7 @@ Il tag more ti consente di creare un "salto" tra un estratto e l\'articolo compl [h4]Aspetto[/h4] -Il modo predefinito dell\'aspetto e del contenuto dell\'articolo è [url=http://wiki.flatpress.org/doc:plugins:bbcode]BBcode[/url] (bulletin board code). BBCode è un modo facile per dare un aspetto elegante ai tuoi articoli. Sono consentiti i codici più comuni, come [b] per [b]grassetto[/b] (html: strong), [i] per [i]corsivo[/i] (html: em), ecc. +Il modo predefinito dell\'aspetto e del contenuto dell\'articolo è [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]BBcode[/url] (bulletin board code). BBCode è un modo facile per dare un aspetto elegante ai tuoi articoli. Sono consentiti i codici più comuni, come [b] per [b]grassetto[/b] (html: strong), [i] per [i]corsivo[/i] (html: em), ecc. [quote]Ci sono anche i blocchi [b]citazione[/b] per mostrare le tue citazioni preferite.[/quote] @@ -117,7 +117,7 @@ Il modo predefinito dell\'aspetto e del contenuto dell\'articolo è [url=http:// Inoltre supporta il contenuto indentato.[/code] -I tag img e url tag hanno inoltre delle opzioni speciali. Puoi saperne di più sul [url=https://wiki.flatpress.org/doc:plugins:bbcode]Wiki di FlatPress[/url]. +I tag img e url tag hanno inoltre delle opzioni speciali. Puoi saperne di più sul [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]Wiki di FlatPress[/url]. [h4]Articoli e Pagine statiche[/h4] @@ -129,24 +129,24 @@ Le pagine statiche sono utili per creare pagine di informazioni generali. Puoi a [h4]Plugins[/h4] -FlatPress è molto personalizzabile e supporta dei [url=https://wiki.flatpress.org/doc:plugins:standard]plugins[/url] per estenderne le funzioni. BBCode stesso è un plugin. +FlatPress è molto personalizzabile e supporta dei [url=https://wiki.flatpress.org/doc:plugins:standard target=_blank rel=external]plugins[/url] per estenderne le funzioni. BBCode stesso è un plugin. Abbiamo creato altri contenuti di esempio per mostrarvi alcune delle funzioni ben nascoste di FP e chicche :) Puoi trovare due [b]pagine statiche[/b] pronte per accettare i tuoi contenuti: [list] [*][url=static.php?page=about]Chi sono[/url] -[*][url=static.php?page=menu]Menu[/url] (nota che i collegamenti in questa pagine appariranno anche sulla barra laterale - questa è una magia del [b]widget blockparser[/b]. Consulta le [url=http://wiki.flatpress.org/doc:faq]FAQ[/url] per questo e altro!) +[*][url=static.php?page=menu]Menu[/url] (nota che i collegamenti in questa pagine appariranno anche sulla barra laterale - questa è una magia del [b]widget blockparser[/b]. Consulta le [url=https://wiki.flatpress.org/doc:faq target=_blank rel=external]FAQ[/url] per questo e altro!) [/list] Con il plugin [b]PhotoSwipe[/b] è ora possibile posizionare le immagini in modo ancora più semplice, sia come float="left"- che come float="right" allineate a una singola immagine, circondata dal testo. -È anche possibile utilizzare l\'elemento \'gallery\' per presentare intere gallerie ai visitatori. Potete scoprire quanto sia facile [url="https://wiki.flatpress.org/res:plugins:photoswipe"]qui[/url]. +È anche possibile utilizzare l\'elemento \'gallery\' per presentare intere gallerie ai visitatori. Potete scoprire quanto sia facile [url=https://wiki.flatpress.org/res:plugins:photoswipe target=_blank rel=external]qui[/url]. [h4]Widget[/h4] Non c\'è un singolo elemento fisso nelle barre laterali. Tutti gli elementi che si trovano nelle barre circondando questo testo sono completamente riposizionabili, e molti di loro sono personalizzabili. Alcun temi forniscono anche uno specifico pannello nel pannello di controllo. -Questi elementi si chiamano [b]widget[/b]. Per saperne di più sui widget e [url=https://wiki.flatpress.org/doc:tips:widgets]alcuni consigli[/url] per ottenere dei bellissimi effetti, dai un\'occhiata sul [url=https://wiki.flatpress.org/]wiki[/url]. +Questi elementi si chiamano [b]widget[/b]. Per saperne di più sui widget e [url=https://wiki.flatpress.org/doc:tips:widgets target=_blank rel=external]alcuni consigli[/url] per ottenere dei bellissimi effetti, dai un\'occhiata sul [url=https://wiki.flatpress.org/ target=_blank rel=external]wiki[/url]. [h4]Temi[/h4] @@ -160,34 +160,34 @@ Con il tema FlatPress-Leggero avete a disposizione 3 modelli di stile, dal class Vuoi saperne di più? [list] -[*]Segui il [url=https://www.flatpress.org/?x]blog ufficiale[/url] per sapere cosa succede nel mondo di FlatPress. -[*]Visita il [url=https://forum.flatpress.org/]forum[/url] per assistenza e chiacchierare un po\'. -[*]Scarica [b]magnifici temi[/b] dagli [url=https://wiki.flatpress.org/res:themes]invii di altri utenti[/url]! -[*]Dai un\'occhiata ai [url=https://wiki.flatpress.org/res:plugins]plugin[/url]. -[*]Scarica [url=https://wiki.flatpress.org/res:language]il pacchetto di traduzione[/url] per la tua lingua. -[*]Potete seguire FlatPress anche su [url=https://twitter.com/FlatPress]X (Twitter)[/url] e [url=https://fosstodon.org/@flatpress]Mastodon[/url]. +[*]Segui il [url=https://www.flatpress.org/?x target=_blank rel=external]blog ufficiale[/url] per sapere cosa succede nel mondo di FlatPress. +[*]Visita il [url=https://forum.flatpress.org/ target=_blank rel=external]forum[/url] per assistenza e chiacchierare un po\'. +[*]Scarica [b]magnifici temi[/b] dagli [url=https://wiki.flatpress.org/res:themes target=_blank rel=external]invii di altri utenti[/url]! +[*]Dai un\'occhiata ai [url=https://wiki.flatpress.org/res:plugins target=_blank rel=external]plugin[/url]. +[*]Scarica [url=https://wiki.flatpress.org/res:language target=_blank rel=external]il pacchetto di traduzione[/url] per la tua lingua. +[*]Potete seguire FlatPress anche su [url=https://twitter.com/FlatPress target=_blank rel=external]X (Twitter)[/url] e [url=https://fosstodon.org/@flatpress target=_blank rel=external]Mastodon[/url]. [/list] [h4]Come posso aiutare?[/h4] [list] -[*]Sostenete il progetto con una [url=http://www.flatpress.org/home/static.php?page=donate]piccola donazione. -[*][url=https://www.flatpress.org/contact/]Contattaci[/url] per segnalare dei bug o suggerirci dei miglioramenti. -[*]Contribuisci allo sviluppo di Flatpress su [url="https://github.com/flatpressblog/flatpress"]GitHub[/url]. -[*]Traduci FlatPress o la documentazione nella [url=https://wiki.flatpress.org/res:language]tua lingua[/url]. -[*]Condividi la tua conoscenza e rimani in contatto con altri utenti di FlatPress sul [url=https://forum.flatpress.org/]forum[/url]. +[*]Sostenete il progetto con una [url=https://www.flatpress.org/home/static.php?page=donate target=_blank rel=external]piccola donazione. +[*][url=https://www.flatpress.org/contact/ target=_blank rel=external]Contattaci[/url] per segnalare dei bug o suggerirci dei miglioramenti. +[*]Contribuisci allo sviluppo di Flatpress su [url=https://github.com/flatpressblog/flatpress target=_blank rel=external]GitHub[/url]. +[*]Traduci FlatPress o la documentazione nella [url=https://wiki.flatpress.org/res:language target=_blank rel=external]tua lingua[/url]. +[*]Condividi la tua conoscenza e rimani in contatto con altri utenti di FlatPress sul [url=https://forum.flatpress.org/ target=_blank rel=external]forum[/url]. [*]Parlane con chi vuoi! :) [/list] [h4]E ora che faccio?[/h4] -Ora puoi [url=login.php]connetterti[/url]per andare al [url=admin.php]Pannello di Controllo[/url] e iniziare a scrivere! +Ora puoi [url=login.php]connetterti[/url] per andare al [url=admin.php]Pannello di Controllo[/url] e iniziare a scrivere! Buon divertimento! :) -[i]Il Team di [url=https://www.flatpress.org]FlatPress[/url][/i] +[i]Il Team di [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url][/i] '; diff --git a/setup/lang/lang.ja-jp.php b/setup/lang/lang.ja-jp.php index 46fdf71..2600c3e 100644 --- a/setup/lang/lang.ja-jp.php +++ b/setup/lang/lang.ja-jp.php @@ -50,7 +50,7 @@ $lang ['step1'] = array( 'descrl1' => 'Select your language.', 'descrl2' => 'Not in the list?', - 'descrlang' => 'If you don\'t see your language in this list, you might want to see if there is a language pack for this version: + 'descrlang' => 'If you don\'t see your language in this list, you might want to see if there is a language pack for this version:
%s
@@ -84,7 +84,7 @@ $lang ['step3'] = array( 最後に, FlatPress を選んでくださって感謝申し上げます!' @@ -105,7 +105,7 @@ $lang ['samplecontent'] ['menu'] ['content'] = '[list] [/list]'; $lang ['samplecontent'] ['entry'] ['subject'] = 'Welcome to FlatPress!'; -$lang ['samplecontent'] ['entry'] ['content'] = 'This is a sample entry, posted to show you some of the features of [url=https://www.flatpress.org]FlatPress[/url]. +$lang ['samplecontent'] ['entry'] ['content'] = 'This is a sample entry, posted to show you some of the features of [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url]. The more tag allows you to create a "jump" between an excerpt and the complete article. @@ -114,7 +114,7 @@ The more tag allows you to create a "jump" between an excerpt and the complete a [h4]Styling[/h4] -The default way to style and format your content is [url=http://wiki.flatpress.org/doc:plugins:bbcode]BBcode[/url] (bulletin board code). BBCode is an easy way to style your posts. Most common codes are allowed. Like [b] for [b]bold[/b] (html: strong), [i] for [i]italics[/i] (html: em), etc. +The default way to style and format your content is [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]BBcode[/url] (bulletin board code). BBCode is an easy way to style your posts. Most common codes are allowed. Like [b] for [b]bold[/b] (html: strong), [i] for [i]italics[/i] (html: em), etc. [quote]There are also [b]quote[/b] blocks to display your favourite quotations.[/quote] @@ -122,7 +122,7 @@ The default way to style and format your content is [url=http://wiki.flatpress.o It also supports indented content.[/code] -img and url tag have also special options. You can find out more on the [url=https://wiki.flatpress.org/doc:plugins:bbcode]FP official website[/url]. +img and url tag have also special options. You can find out more on the [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]FlatPress official website[/url]. [h4]Entries (posts) and Static pages[/h4] @@ -134,24 +134,24 @@ Static pages are useful to create general information pages. You can also make o [h4]Plugins[/h4] -FlatPress is very customizable, and supports [url=https://wiki.flatpress.org/doc:plugins:standard]plugins[/url] to extend its power. BBCode is a plugin itself. +FlatPress is very customizable, and supports [url=https://wiki.flatpress.org/doc:plugins:standard target=_blank rel=external]plugins[/url] to extend its power. BBCode is a plugin itself. We have created some more sample content, to show you some of the FP well hidden functions and gems :) You can find two [b]static pages[/b] ready to accept your contents: [list] [*][url=static.php?page=about]About me[/url] -[*][url=static.php?page=menu]Menu[/url] (notice that the links in this page will appear on your sidebar as well - this is the magic of the [b]blockparser widget[/b]. See the [url=http://wiki.flatpress.org/doc:faq]FAQ[/url] for this and more!) +[*][url=static.php?page=menu]Menu[/url] (notice that the links in this page will appear on your sidebar as well - this is the magic of the [b]blockparser widget[/b]. See the [url=https://wiki.flatpress.org/doc:faq target=_blank rel=external]FAQ[/url] for this and more!) [/list] With the [b]PhotoSwipe plugin[/b] you can now place your images even easier, either as float="left"- or float="right" aligned single image, enclosed by the text. -You can even use the \'gallery\' element to present entire galleries to your visitors. How easy it works, [url="https://wiki.flatpress.org/res:plugins:photoswipe"]you can learn here[/url]. +You can even use the \'gallery\' element to present entire galleries to your visitors. How easy it works, [url=https://wiki.flatpress.org/res:plugins:photoswipe target=_blank rel=external]you can learn here[/url]. [h4]Widgets[/h4] There isn\'t a single fixed element in the sidebar(s). All the elements you can find in the bars surrounding this text are completely positionable, and most of them are customizable as well. Some themes even provide a panel interface in the admin area. -These elements are called [b]widgets[/b]. For more on widgets and [url=https://wiki.flatpress.org/doc:tips:widgets]some tips[/url] to get nice effects, take a look at the [url=https://wiki.flatpress.org/]wiki[/url]. +These elements are called [b]widgets[/b]. For more on widgets and [url=https://wiki.flatpress.org/doc:tips:widgets target=_blank rel=external]some tips[/url] to get nice effects, take a look at the [url=https://wiki.flatpress.org/ target=_blank rel=external]wiki[/url]. [h4]Themes[/h4] @@ -165,23 +165,23 @@ With the FlatPress-Leggero theme you have 3 style templates at your disposal - f Want to see more? [list] -[*]Follow the [url=https://www.flatpress.org/?x]official blog[/url] to know what\'s going on in the FlatPress world. -[*]Visit the [url=https://forum.flatpress.org/]forum[/url] for support and chit-chat. -[*]Get [b]great themes[/b] from [url=https://wiki.flatpress.org/res:themes]other users\' submissions[/url]! -[*]Check out the [url=https://wiki.flatpress.org/res:plugins]plugins[/url]. -[*]Get [url=https://wiki.flatpress.org/res:language]translation pack[/url] for your language. -[*]You can also follow FlatPress on [url=https://twitter.com/FlatPress]X (Twitter)[/url] and [url=https://fosstodon.org/@flatpress]Mastodon[/url]. +[*]Follow the [url=https://www.flatpress.org/?x target=_blank rel=external]official blog[/url] to know what\'s going on in the FlatPress world. +[*]Visit the [url=https://forum.flatpress.org/ target=_blank rel=external]forum[/url] for support and chit-chat. +[*]Get [b]great themes[/b] from [url=https://wiki.flatpress.org/res:themes target=_blank rel=external]other users\' submissions[/url]! +[*]Check out the [url=https://wiki.flatpress.org/res:plugins target=_blank rel=external]plugins[/url]. +[*]Get [url=https://wiki.flatpress.org/res:language target=_blank rel=external]translation pack[/url] for your language. +[*]You can also follow FlatPress on [url=https://twitter.com/FlatPress target=_blank rel=external]X (Twitter)[/url] and [url=https://fosstodon.org/@flatpress target=_blank rel=external]Mastodon[/url]. [/list] [h4]How can I help?[/h4] [list] -[*]Support the project with a [url=http://www.flatpress.org/home/static.php?page=donate]small donation[/url]. -[*][url=https://www.flatpress.org/contact/]Contact us[/url] to report bugs or suggest improvements. -[*]Contribute to the development of FlatPress on [url="https://github.com/flatpressblog/flatpress"]GitHub[/url]. -[*]Translate FlatPress or the documentation into [url=https://wiki.flatpress.org/res:language]your language[/url]. -[*]Share your knowledge and get connected with other FlatPress users on the [url=https://forum.flatpress.org/]forum[/url]. +[*]Support the project with a [url=https://www.flatpress.org/home/static.php?page=donate target=_blank rel=external]small donation[/url]. +[*][url=https://www.flatpress.org/contact/ target=_blank rel=external]Contact us[/url] to report bugs or suggest improvements. +[*]Contribute to the development of FlatPress on [url=https://github.com/flatpressblog/flatpress target=_blank rel=external]GitHub[/url]. +[*]Translate FlatPress or the documentation into [url=https://wiki.flatpress.org/res:language target=_blank rel=external]your language[/url]. +[*]Share your knowledge and get connected with other FlatPress users on the [url=https://forum.flatpress.org/ target=_blank rel=external]forum[/url]. [*]Spread the word! :) [/list] @@ -192,7 +192,7 @@ Now you can [url=login.php]Login[/url] to get to the [url=admin.php]Administrati Have fun! :) -[i]The [url=https://www.flatpress.org]FlatPress[/url] Team[/i] +[i]The [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url] Team[/i] '; diff --git a/setup/lang/lang.nl-nl.php b/setup/lang/lang.nl-nl.php index 553ee50..c7ecf77 100644 --- a/setup/lang/lang.nl-nl.php +++ b/setup/lang/lang.nl-nl.php @@ -48,7 +48,7 @@ $lang ['step1'] = array( Maak je geen zorgen, het zal niet lang duren!', 'descrl1' => 'Kies je taal.', 'descrl2' => 'Niet in de lijst?', - 'descrlang' => 'Als je jouw taal niet in deze lijst ziet, wilt je misschien zien of er een taal pack is voor deze versie: + 'descrlang' => 'Als je jouw taal niet in deze lijst ziet, wilt je misschien zien of er een taal pack is voor deze versie:
%s
@@ -79,7 +79,7 @@ $lang ['step3'] = array( En bedankt dat je gekoen hebt voor FlatPress!' @@ -100,7 +100,7 @@ $lang ['samplecontent'] ['menu'] ['content'] = '[list] [/list]'; $lang ['samplecontent'] ['entry'] ['subject'] = 'Welkom bij FlatPress!'; -$lang ['samplecontent'] ['entry'] ['content'] = 'Dit is een voorbeeld vermelding, om je enkele functies te tonen van [url=https://www.flatpress.org]FlatPress[/url]. +$lang ['samplecontent'] ['entry'] ['content'] = 'Dit is een voorbeeld vermelding, om je enkele functies te tonen van [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url]. Hoe met een tag je in staat stelt om een "sprong" te maken tussen een fragment en het volledige artikel. @@ -109,14 +109,14 @@ Hoe met een tag je in staat stelt om een "sprong" te maken tussen een fragment e [h4]Styling[/h4] -De standaard manier om jouw inhoud te stijlen en op te maken is [url=http://wiki.flatpress.org/doc:plugins:bbcode]BBcode[/url] (bulletin board code). BBCode is een eenvoudige manier om je berichten te stijlen. De meest voorkomende codes zijn toegestaan. Zoals [b] voor [b]bold[/b] (html: strong), [i] voor [i]italics[/i] (html: em), etc. +De standaard manier om jouw inhoud te stijlen en op te maken is [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]BBcode[/url] (bulletin board code). BBCode is een eenvoudige manier om je berichten te stijlen. De meest voorkomende codes zijn toegestaan. Zoals [b] voor [b]bold[/b] (html: strong), [i] voor [i]italics[/i] (html: em), etc. [quote]Er zijn ook [b]citaten[/b] blocks om je favoriete citaten te tonen. [/quote] [code]And \'code\' geeft jouw fragmenten op een monospaced manier weer. Het ondersteunt ook ingesprongen inhoud.[/code] -img en url tag hebben ook speciale opties. Je kunt meer te weten komen over de [url=https://wiki.flatpress.org/doc:plugins:bbcode]FP wiki[/url]. +img en url tag hebben ook speciale opties. Je kunt meer te weten komen over de [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]FP wiki[/url]. [h4]Vermeldingen (berichten) en statische pagina[/h4] @@ -128,24 +128,24 @@ Statische pagina zijn nuttig om algemene informatie te geven. Je kunt van een va [h4]Plugins[/h4] -FlatPress is zeer aanpasbaar en ondersteunt [url=https://wiki.flatpress.org/doc:plugins:standard]plugins[/url] om zijn kracht uit te breiden. BBCode is een plugin op zich zelf. +FlatPress is zeer aanpasbaar en ondersteunt [url=https://wiki.flatpress.org/doc:plugins:standard target=_blank rel=external]plugins[/url] om zijn kracht uit te breiden. BBCode is een plugin op zich zelf. We hebben wat meer voorbeeld inhoud gemaakt, om je enkele van de FP goed verborgen functies en bouwstenen te laten zien :) Je kunt twee [b]statische paginas[/b] vinden die klaar zijn om in je inhoud te accepteren: [list] [*][url=static.php?page=about]About me[/url] -[*][url=static.php?page=menu]Menu[/url] (merk dat de links op deze pagina ook in jouw zijbalk verschijnen - dit is de magie van de [b]blockparser widget[/b]. Zie de [url=http://wiki.flatpress.org/doc:faq]FAQ[/url] voor dit en meer!) +[*][url=static.php?page=menu]Menu[/url] (merk dat de links op deze pagina ook in jouw zijbalk verschijnen - dit is de magie van de [b]blockparser widget[/b]. Zie de [url=https://wiki.flatpress.org/doc:faq target=_blank rel=external]FAQ[/url] voor dit en meer!) [/list] Met de [b]PhotoSwipe plugin[/b] kunt u nu nog gemakkelijker uw afbeeldingen plaatsen, hetzij als float="left"- of float="right" uitgelijnde enkele afbeelding, omgeven door de tekst. -Je kunt zelfs het element "galerij" gebruiken om hele galerijen aan je bezoekers te presenteren. U kunt hier [url="https://wiki.flatpress.org/res:plugins:photoswipe"]zien hoe eenvoudig het is[/url]. +Je kunt zelfs het element "galerij" gebruiken om hele galerijen aan je bezoekers te presenteren. U kunt hier [url=https://wiki.flatpress.org/res:plugins:photoswipe target=_blank rel=external]zien hoe eenvoudig het is[/url]. [h4]Widgets[/h4] Er is geen enkel vast element in de zijbalk(en). Alle elementen die je kunt vinden in de balken die deze tekst aansturen, zijn volledig positioneerbaar en de meeste zijn ook aanpasbaar. Sommige thema\'s bieden zelfs een paneelinterface in het beheergebied. -Deze elementen worden genoemd [b]widgets[/b]. Voor meer over widgets en [url=https://wiki.flatpress.org/doc:tips:widgets]some tips[/url] om leuke effecten te krijgen, kijk dan eens naar de [url=https://wiki.flatpress.org/]wiki[/url]. +Deze elementen worden genoemd [b]widgets[/b]. Voor meer over widgets en [url=https://wiki.flatpress.org/doc:tips:widgets target=_blank rel=external]some tips[/url] om leuke effecten te krijgen, kijk dan eens naar de [url=https://wiki.flatpress.org/ target=_blank rel=external]wiki[/url]. [h4]Thema\'s[/h4] @@ -159,23 +159,23 @@ Met het FlatPress-Leggero thema heb je 3 stijlsjablonen tot je beschikking - van Wil je meer zien? [list] -[*]Volg de [url=https://www.flatpress.org/?x]official blog[/url] om te weten wat is gaande in de FlatPress wereld. -[*]Bezoek de [url=https://forum.flatpress.org/]forum[/url] voor ondersteuning. -[*]Krijg [b]mooie themas[/b] van [url=https://wiki.flatpress.org/res:themes]other users\' submissions[/url]! -[*]Bekijk de [url=https://wiki.flatpress.org/res:plugins]plugins[/url]. -[*]Krijg [url=https://wiki.flatpress.org/res:language]translation pack[/url] voor jouw taal. -[*]Je kunt FlatPress ook volgen op [url=https://twitter.com/FlatPress]X (Twitter)[/url] en [url=https://fosstodon.org/@flatpress]Mastodon[/url]. +[*]Volg de [url=https://www.flatpress.org/?x target=_blank rel=external]official blog[/url] om te weten wat is gaande in de FlatPress wereld. +[*]Bezoek de [url=https://forum.flatpress.org/ target=_blank rel=external]forum[/url] voor ondersteuning. +[*]Krijg [b]mooie themas[/b] van [url=https://wiki.flatpress.org/res:themes target=_blank rel=external]other users\' submissions[/url]! +[*]Bekijk de [url=https://wiki.flatpress.org/res:plugins target=_blank rel=external]plugins[/url]. +[*]Krijg [url=https://wiki.flatpress.org/res:language target=_blank rel=external]translation pack[/url] voor jouw taal. +[*]Je kunt FlatPress ook volgen op [url=https://twitter.com/FlatPress target=_blank rel=external]X (Twitter)[/url] en [url=https://fosstodon.org/@flatpress target=_blank rel=external]Mastodon[/url]. [/list] [h4]Hoe kan ik helpen?[/h4] [list] -[*]Steun het project met een [url=http://www.flatpress.org/home/static.php?page=donate]kleine donatie. -[*][url=https://www.flatpress.org/contact/]Contact ons[/url] om bugs en aanpassingen te melden. -[*]Draag bij aan de ontwikkeling van Flatpress op [url="https://github.com/flatpressblog/flatpress"]GitHub[/url]. -[*]Vertaal FlatPress in de documentatie in [url=https://wiki.flatpress.org/res:language]your language[/url]. -[*]Deel jouw kennis en maak contact met andere FlatPress-gebruikers op de [url=https://forum.flatpress.org/]forum[/url]. +[*]Steun het project met een [url=https://www.flatpress.org/home/static.php?page=donate target=_blank rel=external]kleine donatie. +[*][url=https://www.flatpress.org/contact/ target=_blank rel=external]Contact ons[/url] om bugs en aanpassingen te melden. +[*]Draag bij aan de ontwikkeling van FlatPress op [url=https://github.com/flatpressblog/flatpress target=_blank rel=external]GitHub[/url]. +[*]Vertaal FlatPress in de documentatie in [url=https://wiki.flatpress.org/res:language target=_blank rel=external]your language[/url]. +[*]Deel jouw kennis en maak contact met andere FlatPress-gebruikers op de [url=https://forum.flatpress.org/ target=_blank rel=external]forum[/url]. [*]Verspreid het woord! :) [/list] @@ -186,7 +186,7 @@ Nu kan je [url=login.php]Login[/url] om bij de [url=admin.php]Administration Are Veel plezier! :) -[i]The [url=https://www.flatpress.org]FlatPress[/url] Team[/i] +[i]The [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url] Team[/i] '; diff --git a/setup/lang/lang.pt-br.php b/setup/lang/lang.pt-br.php index 3e5c865..4d16c69 100644 --- a/setup/lang/lang.pt-br.php +++ b/setup/lang/lang.pt-br.php @@ -48,7 +48,7 @@ $lang ['step1'] = array( Não se preocupe, não vai demorar muito!', 'descrl1' => 'Selecione seu idioma.', 'descrl2' => 'Não está na lista?', - 'descrlang' => 'Se você não vê seu idioma nesta lista, convém verificar se há um pacote de idiomas para esta versão: + 'descrlang' => 'Se você não vê seu idioma nesta lista, convém verificar se há um pacote de idiomas para esta versão:
%s
@@ -79,7 +79,7 @@ $lang ['step3'] = array( E obrigado por escolher o FlatPress!' @@ -100,7 +100,7 @@ $lang ['samplecontent'] ['menu'] ['content'] = '[list] [/list]'; $lang ['samplecontent'] ['entry'] ['subject'] = 'Bem vindo ao FlatPress!'; -$lang ['samplecontent'] ['entry'] ['content'] = 'Esta é uma entrada de amostra, postada para mostrar alguns dos recursos do [url=https://www.flatpress.org]FlatPress[/url]. +$lang ['samplecontent'] ['entry'] ['content'] = 'Esta é uma entrada de amostra, postada para mostrar alguns dos recursos do [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url]. A tag \'more\' permite criar um "salto" entre um trecho e o artigo completo. @@ -109,13 +109,13 @@ A tag \'more\' permite criar um "salto" entre um trecho e o artigo completo. [h4]Estilo[/h4] -A maneira padrão de estilizar e formatar seu conteúdo é [url=http://wiki.flatpress.org/doc:plugins:bbcode]BBcode[/url] (bulletin board code). O BBCode é uma maneira fácil de estilizar suas postagens. Os códigos mais comuns são permitidos. Como [b] para [b]negrito[/b] (html: strong), [i] fpara [i]itálico[/i] (html: em), etc. +A maneira padrão de estilizar e formatar seu conteúdo é [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]BBcode[/url] (bulletin board code). O BBCode é uma maneira fácil de estilizar suas postagens. Os códigos mais comuns são permitidos. Como [b] para [b]negrito[/b] (html: strong), [i] fpara [i]itálico[/i] (html: em), etc. [quote]Também existem[b]quote[/b] blocos para exibir suas cotações favoritas. [/quote] [code] E \'code\' exibe seus trechos de maneira monoespaçada. Também suporta conteúdo recuado. [/code] -img e url tag têm opções especiais. Pode descobrir mais no [url=https://wiki.flatpress.org/doc:plugins:bbcode]FP wiki[/url]. +img e url tag têm opções especiais. Pode descobrir mais no [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]FlatPress-Wiki[/url]. [h4]Posts e páginas estáticas[/h4] @@ -127,24 +127,24 @@ Páginas estáticas são úteis para criar páginas de informações gerais. Voc [h4]Plugins[/h4] -O FlatPress é muito personalizável e suporta [url=https://wiki.flatpress.org/doc:plugins:standard]plugins[/url] para ampliar seu poder. BBCode é um plugin em si. +O FlatPress é muito personalizável e suporta [url=https://wiki.flatpress.org/doc:plugins:standard target=_blank rel=external]plugins[/url] para ampliar seu poder. BBCode é um plugin em si. Criamos mais conteúdo de amostra, para mostrar algumas das funções e gemas bem escondidas do FP. :) Pode encontrar duas [b]páginas estáticas[/b] prontas para aceitar seu conteúdo: [list] [*][url=static.php?page=about]Sobre[/url] -[*][url=static.php?page=menu]Menu[/url] (observe que os links nesta página também aparecerão na sua barra lateral - esta é a mágica do widget [b]blockparser[/b]. Consulte [url=http://wiki.flatpress.org/doc: faq ]o FAQ[/url] para isso e muito mais!) +[*][url=static.php?page=menu]Menu[/url] (observe que os links nesta página também aparecerão na sua barra lateral - esta é a mágica do widget [b]blockparser[/b]. Consulte [url=https://wiki.flatpress.org/doc:faq target=_blank rel=external]o FAQ[/url] para isso e muito mais!) [/list] Com o plugin [b]PhotoSwipe[/b] você pode agora colocar suas imagens ainda mais facilmente, seja como float="left"- ou float="right" alinhado uma única imagem, rodeado pelo texto. -Você pode até mesmo usar o elemento "galeria" para apresentar galerias inteiras a seus visitantes. Você pode descobrir como é fácil [url="https://wiki.flatpress.org/res:plugins:photoswipe"]aqui[/url]. +Você pode até mesmo usar o elemento "galeria" para apresentar galerias inteiras a seus visitantes. Você pode descobrir como é fácil [url=https://wiki.flatpress.org/res:plugins:photoswipe target=_blank rel=external]aqui[/url]. [h4]Widgets[/h4] Não há um único elemento fixo nos sidebar(s). Todos os elementos que você pode encontrar nos sidebar nesta página são completamente posicionáveis e a maioria deles também é personalizável. Alguns temas ainda fornecem uma interface de painel na área de administração. -Esses elementos são chamados de [b]widgets[/b]. Para mais informações sobre widgets e [url=https://wiki.flatpress.org/doc: tips: widgets]algumas dicas[/url] para obter bons efeitos, dê uma olhada no [url=https://wiki.flatpress .org/]FP wiki[/url]. +Esses elementos são chamados de [b]widgets[/b]. Para mais informações sobre widgets e [url=https://wiki.flatpress.org/doc:tips:widgets target=_blank rel=external]algumas dicas[/url] para obter bons efeitos, dê uma olhada no [url=https://wiki.flatpress.org/ target=_blank rel=external]FlatPress-Wiki[/url]. [h4]Temas[/h4] @@ -157,23 +157,23 @@ Com o tema FlatPress-Leggero você tem à sua disposição 3 modelos de estilo - Want to see more? [list] -[*]Siga [url=https://www.flatpress.org/? X]o blog oficial[/url] para saber o que está acontecendo no mundo do FlatPress. -[*]Visite [url=https://forum.flatpress.org/]o forum[/url] para obter suporte e bate-papo. -[*]Obtenha [b]ótimos temas[/b] em [url=https://wiki.flatpress.org/res: themes] enviadas de outros usuários[/url]! -[*]Confira [url=https://wiki.flatpress.org/res: plugins]os plugins não oficiais.[/url]! -[*]Obtenha [url=https://wiki.flatpress.org/res: language]o pacote de tradução[/url] para o seu idioma. -[*]Você também pode seguir o FlatPress em [url=https://twitter.com/FlatPress]X (Twitter)[/url] e [url=https://fosstodon.org/@flatpress]Mastodon[/url]. +[*]Siga [url=https://www.flatpress.org/?x target=_blank rel=external]o blog oficial[/url] para saber o que está acontecendo no mundo do FlatPress. +[*]Visite [url=https://forum.flatpress.org/ target=_blank rel=external]o forum[/url] para obter suporte e bate-papo. +[*]Obtenha [b]ótimos temas[/b] em [url=https://wiki.flatpress.org/res:themes target=_blank rel=external] enviadas de outros usuários[/url]! +[*]Confira [url=https://wiki.flatpress.org/res:plugins target=_blank rel=external]os plugins não oficiais.[/url]! +[*]Obtenha [url=https://wiki.flatpress.org/res:language target=_blank rel=external]o pacote de tradução[/url] para o seu idioma. +[*]Você também pode seguir o FlatPress em [url=https://twitter.com/FlatPress target=_blank rel=external]X (Twitter)[/url] e [url=https://fosstodon.org/@flatpress target=_blank rel=external]Mastodon[/url]. [/list] [h4]Como possa ajudar?[/h4] [list] -[*]Apoiar o projeto com uma pequena doação [url=http://www.flatpress.org/home/static.php?page=donate]. -[*][url=https://www.flatpress.org/contact/]Entre em contato conosco.[/url] para relatar erros ou sugerir melhorias. -[*]Contribua para o desenvolvimento do Flatpress no [url="https://github.com/flatpressblog/flatpress"]GitHub[/url]. -[*]Traduza o FlatPress ou a documentação para [url=https://wiki.flatpress.org/res:language]o seu idioma[/url]. -[*]Compartilhe seu conhecimento e conecte-se com outros usuários do FlatPress no [url=https://forum.flatpress.org/]forum[/url]. +[*]Apoiar o projeto com uma pequena [url=https://www.flatpress.org/home/static.php?page=donate target=_blank rel=external]doação[/url]. +[*][url=https://www.flatpress.org/contact/ target=_blank rel=external]Entre em contato conosco[/url] para relatar erros ou sugerir melhorias. +[*]Contribua para o desenvolvimento do FlatPress no [url=https://github.com/flatpressblog/flatpress target=_blank rel=external]GitHub[/url]. +[*]Traduza o FlatPress ou a documentação para [url=https://wiki.flatpress.org/res:language target=_blank rel=external]o seu idioma[/url]. +[*]Compartilhe seu conhecimento e conecte-se com outros usuários do FlatPress no [url=https://forum.flatpress.org/ target=_blank rel=external]forum[/url]. [*]Espalhe a palavra! :-) [/list] @@ -184,7 +184,7 @@ Agora pode [url=login.php]entrar[/url] para acessar [url=admin.php]o painel de c Diverta-se! :-) -[i]A Tripulação de [url=https://www.flatpress.org]FlatPress[/url][/i] +[i]A Tripulação de [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url][/i] '; diff --git a/setup/lang/lang.ru-ru.php b/setup/lang/lang.ru-ru.php index 57498f2..e9ca286 100644 --- a/setup/lang/lang.ru-ru.php +++ b/setup/lang/lang.ru-ru.php @@ -48,7 +48,7 @@ $lang ['step1'] = array( Не волнуйтесь, это не займет у Вас много времени!', 'descrl1' => 'Выберите Ваш язык.', 'descrl2' => 'Нет в списке?', - 'descrlang' => 'Если вы не видите своего языка в этом списке, посмотрите, есть ли языковой пакет для этой версии: + 'descrlang' => 'Если вы не видите своего языка в этом списке, посмотрите, есть ли языковой пакет для этой версии:
%s
@@ -79,7 +79,7 @@ $lang ['step3'] = array( И спасибо, что выбрали FlatPress!' @@ -100,7 +100,7 @@ $lang ['samplecontent'] ['menu'] ['content'] = '[list] [/list]'; $lang ['samplecontent'] ['entry'] ['subject'] = 'FlatPress'; -$lang ['samplecontent'] ['entry'] ['content'] = 'Добро пожаловать во FlatPress! Это примерная запись, опубликованная для того, чтобы показать вам некоторые возможности [url=https://www.flatpress.org]FlatPress[/url]. +$lang ['samplecontent'] ['entry'] ['content'] = 'Добро пожаловать во FlatPress! Это примерная запись, опубликованная для того, чтобы показать вам некоторые возможности [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url]. Тег more позволяет создать "переход" между отрывком и полным текстом статьи. @@ -109,7 +109,7 @@ $lang ['samplecontent'] ['entry'] ['content'] = 'Добро пожаловать [h4]Стилизация[/h4] -По умолчанию стилизация и форматирование содержимого выполняется с помощью [url=https://wiki.flatpress.org/doc:plugins:bbcode]BBcode-разметки[/url] (bulletin board code). BBCode — это простой способ стилизовать ваши сообщения. Допускается использование наиболее распространенных кодов. Например, [b] для [b]жирного[/b] (html: strong), [i] для [i]курсива[/i] (html: em), etc. +По умолчанию стилизация и форматирование содержимого выполняется с помощью [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]BBcode-разметки[/url] (bulletin board code). BBCode — это простой способ стилизовать ваши сообщения. Допускается использование наиболее распространенных кодов. Например, [b] для [b]жирного[/b] (html: strong), [i] для [i]курсива[/i] (html: em), etc. [quote]Также есть [b]quote[/b] для отображения ваших любимых цитат.[/quote] @@ -117,7 +117,7 @@ $lang ['samplecontent'] ['entry'] ['content'] = 'Добро пожаловать Он также поддерживает отступы.[/code] -Теги img и url также имеют специальные опции. Подробнее об этом можно узнать в разделе на [url=https://wiki.flatpress.org/doc:plugins:bbcode]FP wiki[/url]. +Теги img и url также имеют специальные опции. Подробнее об этом можно узнать в разделе на [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]FlatPress-Wiki[/url]. [h4]Записи (посты) и статические страницы[/h4] @@ -129,24 +129,24 @@ $lang ['samplecontent'] ['entry'] ['content'] = 'Добро пожаловать [h4]Плагины[/h4] -FlatPress очень хорошо настраивается и поддерживает [url=https://wiki.flatpress.org/doc:plugins:standard]плагины[/url] для расширения своих возможностей. BBCode является самостоятельным плагином. +FlatPress очень хорошо настраивается и поддерживает [url=https://wiki.flatpress.org/doc:plugins:standard target=_blank rel=external]плагины[/url] для расширения своих возможностей. BBCode является самостоятельным плагином. Мы создали еще несколько примеров контента, чтобы показать вам некоторые из скрытых функций и жемчужин FP :) Вы можете найти две [b]статические страницы[/b], готовые к наполнению Вашим контентом: [list] [*][url=static.php?page=about]Обо мне[/url] -[*][url=static.php?page=menu]Меню[/url] (обратите внимание, что ссылки на этой странице будут появляться и в боковой панели — такова магия [b]виджета blockparser[/b]. Об этом и о многом другом читайте в разделе [url=https://wiki.flatpress.org/doc:faq]FAQ[/url]!) +[*][url=static.php?page=menu]Меню[/url] (обратите внимание, что ссылки на этой странице будут появляться и в боковой панели — такова магия [b]виджета blockparser[/b]. Об этом и о многом другом читайте в разделе [url=https://wiki.flatpress.org/doc:faq target=_blank rel=external]FAQ[/url]!) [/list] С помощью плагина [b]PhotoSwipe[/b] вы можете размещать свои изображения еще проще, либо как float="left", либо как float="right", выровненные по одному изображению, заключенному в текст. -Вы даже можете использовать элемент \'gallery\', чтобы представить посетителям целые галереи. Как это работает, [url="https://wiki.flatpress.org/res:plugins:photoswipe"]вы можете узнать здесь[/url]. +Вы даже можете использовать элемент \'gallery\', чтобы представить посетителям целые галереи. Как это работает, [url=https://wiki.flatpress.org/res:plugins:photoswipe target=_blank rel=external]вы можете узнать здесь[/url]. [h4]Виджеты[/h4] В боковой панели нет ни одного фиксированного элемента. Все элементы, которые вы можете найти в полосах, окружающих этот текст, полностью позиционируются, и большинство из них также настраиваются. Некоторые темы даже предоставляют интерфейс панели в области администрирования. -Эти элементы называются [b]виджетами[/b]. Подробнее о виджетах и [url=https://wiki.flatpress.org/doc:tips:widgets]некоторых советах[/url] по получению красивых эффектов вы можете узнать на [url=https://wiki.flatpress.org/]wiki[/url]. +Эти элементы называются [b]виджетами[/b]. Подробнее о виджетах и [url=https://wiki.flatpress.org/doc:tips:widgets target=_blank rel=external]некоторых советах[/url] по получению красивых эффектов вы можете узнать на [url=https://wiki.flatpress.org/ target=_blank rel=external]wiki[/url]. [h4]Темы[/h4] @@ -160,23 +160,23 @@ FlatPress очень хорошо настраивается и поддержи Хотите узнать больше? [list] -[*]Следите за [url=https://www.flatpress.org/?x]официальным блогом[/url], чтобы знать, что происходит в мире FlatPress. -[*]Посетите [url=https://forum.flatpress.org/]форум[/url], чтобы получить поддержку и пообщаться. -[*]Используйте [b]отличные темы[/b], [url=https://wiki.flatpress.org/res:themes] созданные другими пользователями[/url]! -[*]Посмотрите [url=https://wiki.flatpress.org/res:plugins]плагины[/url]. -[*]Используйте [url=https://wiki.flatpress.org/res:language]языковой пакет[/url] для Вашего языка. -[*]Вы также можете следить за FlatPress на [url=https://twitter.com/FlatPress]X (Twitter)[/url] и [url=https://fosstodon.org/@flatpress]Mastodon[/url]. +[*]Следите за [url=https://www.flatpress.org/?x target=_blank rel=external]официальным блогом[/url], чтобы знать, что происходит в мире FlatPress. +[*]Посетите [url=https://forum.flatpress.org/ target=_blank rel=external]форум[/url], чтобы получить поддержку и пообщаться. +[*]Используйте [b]отличные темы[/b], [url=https://wiki.flatpress.org/res:themes target=_blank rel=external] созданные другими пользователями[/url]! +[*]Посмотрите [url=https://wiki.flatpress.org/res:plugins target=_blank rel=external]плагины[/url]. +[*]Используйте [url=https://wiki.flatpress.org/res:language target=_blank rel=external]языковой пакет[/url] для Вашего языка. +[*]Вы также можете следить за FlatPress на [url=https://twitter.com/FlatPress target=_blank rel=external]X (Twitter)[/url] и [url=https://fosstodon.org/@flatpress target=_blank rel=external]Mastodon[/url]. [/list] [h4]Как я могу помочь?[/h4] [list] -[*]Поддержите проект [url=https://www.flatpress.org/home/static.php?page=donate]небольшим пожертвованием[/url] -[*][url=https://www.flatpress.org/contact/]Свяжитесь с нами[/url], чтобы сообщить об ошибках или предложить улучшения. -[*]Участвуйте в разработке FlatPress на [url="https://github.com/flatpressblog/flatpress"]GitHub[/url]. -[*]Переведите FlatPress или документацию на [url=https://wiki.flatpress.org/res:language]Ваш язык[/url]. -[*]Делитесь своими знаниями и общайтесь с другими пользователями FlatPress на [url=https://forum.flatpress.org/]форуме[/url]. +[*]Поддержите проект [url=https://www.flatpress.org/home/static.php?page=donate target=_blank rel=external]небольшим пожертвованием[/url] +[*][url=https://www.flatpress.org/contact/ target=_blank rel=external]Свяжитесь с нами[/url], чтобы сообщить об ошибках или предложить улучшения. +[*]Участвуйте в разработке FlatPress на [url=https://github.com/flatpressblog/flatpress target=_blank rel=external]GitHub[/url]. +[*]Переведите FlatPress или документацию на [url=https://wiki.flatpress.org/res:language target=_blank rel=external]Ваш язык[/url]. +[*]Делитесь своими знаниями и общайтесь с другими пользователями FlatPress на [url=https://forum.flatpress.org/ target=_blank rel=external]форуме[/url]. [*]Распространяйте информацию! :) [/list] @@ -187,7 +187,7 @@ FlatPress очень хорошо настраивается и поддержи Развлекайтесь! :) -[i]Команда [url=https://www.flatpress.org]FlatPress[/url][/i] +[i]Команда [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url][/i] '; diff --git a/setup/lang/lang.sl-si.php b/setup/lang/lang.sl-si.php index 4c45d9c..c087ffc 100644 --- a/setup/lang/lang.sl-si.php +++ b/setup/lang/lang.sl-si.php @@ -48,7 +48,7 @@ $lang ['step1'] = array( Toda brez skrbi, to ne bo trajalo dolgo!', 'descrl1' => 'Izberite jezik.', 'descrl2' => 'Ni na seznamu?', - 'descrlang' => 'Če na seznamu ne najdete svojega jezika, preverite, ali je na voljo ustrezen jezikovni paket : + 'descrlang' => 'Če na seznamu ne najdete svojega jezika, preverite, ali je na voljo ustrezen jezikovni paket :
%s
@@ -79,7 +79,7 @@ $lang ['step3'] = array( Hvala, ker ste izbrali FlatPress!' @@ -100,7 +100,7 @@ $lang ['samplecontent'] ['menu'] ['content'] = '[list] [/list]'; $lang ['samplecontent'] ['entry'] ['subject'] = 'Dobrodošli v FlatPress!'; -$lang ['samplecontent'] ['entry'] ['content'] = 'To je vzorčna objava, ki vam prikazuje nekatere funkcije [url=https://www.flatpress.org]FlatPress[/url]. +$lang ['samplecontent'] ['entry'] ['content'] = 'To je vzorčna objava, ki vam prikazuje nekatere funkcije [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url]. Element "more" vam omogoča preskok z osnutka članka na celoten članek. @@ -109,7 +109,7 @@ Element "more" vam omogoča preskok z osnutka članka na celoten članek. [h4]Oblikovanje besedila[/h4] -V programu FlatPress vsebino oblikujete s kodo [url=http://wiki.flatpress.org/doc:plugins:bbcode]BBcode[/url] (Bulletin-Board-Code). To je zelo enostavno z uporabo kode BBCode. Primeri? [b] naredi [b]krepko besedilo[/b], [i] [i]besedilo v poševnem tisku[/i]. +V programu FlatPress vsebino oblikujete s kodo [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]BBcode[/url] (Bulletin-Board-Code). To je zelo enostavno z uporabo kode BBCode. Primeri? [b] naredi [b]krepko besedilo[/b], [i] [i]besedilo v poševnem tisku[/i]. [quote]Element [b]quote[/b] lahko uporabite za označevanje citatov. [/quote] @@ -117,7 +117,7 @@ V programu FlatPress vsebino oblikujete s kodo [url=http://wiki.flatpress.org/do Lahko tudi predstavlja vdolbine.[/code] -Elementa \'img\' (slike) in \'url\' (povezave) imata posebne možnosti. Več o tem si lahko preberete v [url=https://wiki.flatpress.org/doc:plugins:bbcode]FlatPress-Wiki[/url]. +Elementa \'img\' (slike) in \'url\' (povezave) imata posebne možnosti. Več o tem si lahko preberete v [url=https://wiki.flatpress.org/doc:plugins:bbcode target=_blank rel=external]FlatPress-Wiki[/url]. [h4]Vnosi (blog članki) in statične strani[/h4] @@ -131,25 +131,25 @@ V [url=admin.php]upravnem območju[/url] lahko ustvarite vnose in statične stra [h4]Vtičniki[/h4] -FlatPress lahko v veliki meri prilagodite svojim potrebam tako, da ga razširite z [url=https://wiki.flatpress.org/doc:plugins:standard]vtičniki[/url]. BBCode je na primer vtičnik. +FlatPress lahko v veliki meri prilagodite svojim potrebam tako, da ga razširite z [url=https://wiki.flatpress.org/doc:plugins:standard target=_blank rel=external]vtičniki[/url]. BBCode je na primer vtičnik. Tukaj je še nekaj vzorčne vsebine, ki vam pokaže še več funkcij FlatPress :) Za vas sta že pripravljeni dve statični strani: [list] [*][url=static.php?page=about]O[/url] -[*][url=static.php?page=menu]Meni[/url] (Vsebina te statične strani se prikaže tudi v stranski vrstici vašega bloga - v tem je čar gradnika [b]Blockparser-Widgets[/b]. Na [url=http://wiki.flatpress.org/]FlatPress-Wiki[/url] najdete informacije o tem in še veliko več!) +[*][url=static.php?page=menu]Meni[/url] (Vsebina te statične strani se prikaže tudi v stranski vrstici vašega bloga - v tem je čar gradnika [b]Blockparser-Widgets[/b]. Na [url=https://wiki.flatpress.org/ target=_blank rel=external]FlatPress-Wiki[/url] najdete informacije o tem in še veliko več!) [/list] Z vtičnikom [b]PhotoSwipe-Plugin[/b] lahko zdaj še lažje postavite svoje slike, bodisi kot float="left"- ali float="right" poravnano posamezno sliko, obdano z besedilom. -Element \'gallery\' lahko uporabite tudi za predstavitev celotnih galerij obiskovalcem. Kako enostavno je to [url="https://wiki.flatpress.org/res:plugins:photoswipe"]tukaj[/url]. +Element \'gallery\' lahko uporabite tudi za predstavitev celotnih galerij obiskovalcem. Kako enostavno je to [url=https://wiki.flatpress.org/res:plugins:photoswipe target=_blank rel=external]tukaj[/url]. [h4]Gradniki[/h4] Nobeden od elementov v stranski vrstici vašega bloga ni fiksiran, lahko jih premikate, odstranjujete in dodajate nove v območju za upravljanje. -Ti elementi se imenujejo [b]Gradniki[/b]. Seveda je tudi na FlatPress Wiki veliko koristnih informacij [url=https://wiki.flatpress.org/doc:tips:widgets]o tej temi[/url]. +Ti elementi se imenujejo [b]Gradniki[/b]. Seveda je tudi na FlatPress Wiki veliko koristnih informacij [url=https://wiki.flatpress.org/doc:tips:widgets target=_blank rel=external]o tej temi[/url]. [h4]Teme[/h4] @@ -162,22 +162,22 @@ S temo FlatPress Leggero imate na voljo 3 slogovne predloge - od klasične do mo Želite izvedeti več o platformi FlatPress? [list] -[*]V [url=https://www.flatpress.org/?x]projektnem blogu[/url] lahko izveste, kaj se trenutno dogaja v projektu FlatPress. -[*]Obiščite [url=https://forum.flatpress.org/]podporni forum[/url] za podporo in stik z drugimi uporabniki FlatPress. -[*]Iz [url=https://wiki.flatpress.org/res:themes]wikija[/url] lahko prenesete odlične [b]teme[/b], ki jih je ustvarila skupnost. -[*]Obstajajo tudi odlični [url=https://wiki.flatpress.org/res:plugins]vtičniki[/url] tam. -[*]FlatPressu lahko sledite tudi na [url=https://twitter.com/FlatPress]X (Twitterju)[/url] in [url=https://fosstodon.org/@flatpress]Mastodon[/url]. +[*]V [url=https://www.flatpress.org/?x target=_blank rel=external]projektnem blogu[/url] lahko izveste, kaj se trenutno dogaja v projektu FlatPress. +[*]Obiščite [url=https://forum.flatpress.org/ target=_blank rel=external]podporni forum[/url] za podporo in stik z drugimi uporabniki FlatPress. +[*]Iz [url=https://wiki.flatpress.org/res:themes target=_blank rel=external]wikija[/url] lahko prenesete odlične [b]teme[/b], ki jih je ustvarila skupnost. +[*]Obstajajo tudi odlični [url=https://wiki.flatpress.org/res:plugins target=_blank rel=external]vtičniki[/url] tam. +[*]FlatPressu lahko sledite tudi na [url=https://twitter.com/FlatPress target=_blank rel=external]X (Twitterju)[/url] in [url=https://fosstodon.org/@flatpress target=_blank rel=external]Mastodon[/url]. [/list] [h4]Kako lahko podpiram FlatPress?[/h4] [list] -[*]Podprite projekt z [url=http://www.flatpress.org/home/static.php?page=donate]majhno donacijo[/url]. -[*][url=https://www.flatpress.org/contact/]Prijavite[/url] nastale napake ali nam pošljite predloge za izboljšave. -[*]Programerji nas lahko podpirajo na [url="https://github.com/flatpressblog/flatpress"]GitHub[/url]. -[*]Prevedite FlatPress in njegovo dokumentacijo v [url=https://wiki.flatpress.org/res:language]vaš jezik[/url]. -[*]Bodite del skupnosti FlatPress na [url=https://forum.flatpress.org/]forumu podpore[/url]. +[*]Podprite projekt z [url=https://www.flatpress.org/home/static.php?page=donate target=_blank rel=external]majhno donacijo[/url]. +[*][url=https://www.flatpress.org/contact/ target=_blank rel=external]Prijavite[/url] nastale napake ali nam pošljite predloge za izboljšave. +[*]Programerji nas lahko podpirajo na [url=https://github.com/flatpressblog/flatpress target=_blank rel=external]GitHub[/url]. +[*]Prevedite FlatPress in njegovo dokumentacijo v [url=https://wiki.flatpress.org/res:language target=_blank rel=external]vaš jezik[/url]. +[*]Bodite del skupnosti FlatPress na [url=https://forum.flatpress.org/ target=_blank rel=external]forumu podpore[/url]. [*]Povejte svetu, kako odličen je FlatPress! :) [/list] @@ -188,7 +188,7 @@ S temo FlatPress Leggero imate na voljo 3 slogovne predloge - od klasične do mo Zabavajte se! :) -[i]Ekipa podjetja [url=https://www.flatpress.org]FlatPress[/url][/i] +[i]Ekipa podjetja [url=https://www.flatpress.org target=_blank rel=external]FlatPress[/url][/i] '; diff --git a/setup/main.php b/setup/main.php index e27a67d..639d900 100644 --- a/setup/main.php +++ b/setup/main.php @@ -1,37 +1,37 @@