File Manager
<?php
$lang['admin']['pagedefaultsupdated'] = 'Page default settings updated';
$lang['admin']['help_function_module_available'] = '<h3>What does this do?</h3>
<p>A plugin to test wether a given module (by name) is installed, and available for use.</p>
<h3>What parameters does it take?</h3>
<ul>
<li><strong>(required)module</strong> - (string) The name of the module.</li>
<li><em>(optional)assign</em> - Assign the output of the plugin to the named smarty variable.</li>
</ul>
<h3>Example:</h3>
{module_available module='News' assign='havenews'}{if $havenews}{cms_module module=News}{/if}
<h3>Note:</h3>
<p>You cannot use the short form of the module call, i.e: <em>{News}</em> in this type of expression.</p>';
$lang['admin']['prettyurls_noeffect'] = 'Pretty URLS are not configured... this url will have no effect';
$lang['admin']['help_function_cms_lang_info'] = '<h3>What does this do?</h3>
<p>This plugin returns an object containing the information that CMSMS has about the selected language. This can include locale information, encodings, language aliases etc.</p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)lang</em> - The language to return information for. If the lang parameter is not specified then the information for the current CMSMS language is used.</li>
<li><em>(optional)assign</em> - Assign the output of the plugin to the named smarty variable.</li>
</ul>
<h3>Example:</h3>
<pre>{cms_lang_info assign='nls'}{$nls->locale()}</pre>
<h3>See Also:</h3>
<p>the CmsNls class documentation.</p>';
$lang['admin']['help_function_cms_set_language'] = '<h3>What does this do?</h3>
<p>This plugin attempts to set the current language for use by translation strings and date formatting to the desired language. The language specified must be known to CMSMS (The nls file must exist). When this function is called, (and unless overridden in the config.php) an attempt will be made to set the locale to the local associated with the language. The locale for the language must be installed on the server.</p>
<h3>What parameters does it take?</h3>
<ul>
<li><strong>(required)lang</strong> - The desired language. The language must be known to the CMSMS installation (nls file must exist).</li>
</ul>';
$lang['admin']['help_function_cms_get_language'] = '<h3>What does this do?</h3>
<p>This plugin returns the current CMSMS language name. The language is used for translation strings and date formatting.</p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)assign</em> - Assign the output of the plugin to the named smarty variable.</li>
</ul>';
$lang['admin']['help_modifier_cms_escape'] = '<h3>What does this do?</h3>
<p>This modifier is used to escape the string in one of many ways. This can be used for converting the string to multiple different display formats, or to make user entered data with special characters displayable on a standard web page.</p>
<h3>Usage:</h3>
<pre><code>{$some_var_with_text|cms_escape[:<escape type>|[<character set>]]}</code></pre>
<h4>Valid escape types:</h4>
<ul>
<li>html <em>(default)</em> - use htmlspecialchars.</li>
<li>htmlall - use htmlentities.</li>
<li>url - raw url encode all entities.</li>
<li>urlpathinfo - Similar to the url escape type, but also encode /.</li>
<li>quotes - Escape unescaped single quotes.</li>
<li>hex - Escape every character into hex.</li>
<li>hexentity - Hex encode every character.</li>
<li>decentity - Decimal encode every character.</li>
<li>javascript - Escape quotes, backslashes, newlines etc.</li>
<li>mail - Encode an email address into something that is safe to display.</li>
<li>nonstd - Escape non standard characters, such as document quotes.</li>
</ul>
<h4>Character Set::</h4>
<p>If the character set is not specified, utf-8 is assumed. The character set is only applicable to the "html" and "htmlall" escape types.</p>';
$lang['admin']['help_modifier_cms_date_format'] = '<h3>What does this do?</h3>
<p>This modifier is used to format dates in a suitable format. It uses the standard strftime parameters. If no format string is specified, the system will use the date format string user preference (for logged in users) or the system date format preference.</p>
<p>This modifier is capable of understanding dates in many formats. i.e: date-time strings output from the database or integer timestamps generated by the time() function.</p>
<h3>Usage:</h3>
<pre><code>{$some_date_var|cms_date_format[:<format string>]}</code></pre>
<h3>Example:</h3>
<pre><code>{'2012-03-24 22:44:22'|cms_date_format}</code></pre>';
$lang['admin']['help_modifier_summarize'] = '<h3>What does this do?</h3>
<p>This modifier is used to truncate a long sequence of text to a limited number of "words".</p>
<h3>Usage:</h3>
<pre><code>{$some_var_with_long_text|summarize:<number>}</code></pre>
<h3>Example:</h3>
<p>The following example would strip all html tags from the content and truncate it after 50 words.</p>
<pre><code>{content|strip_tags|summarize:50}</code></pre>';
$lang['admin']['module_param_lang'] = '<strong>Deprecated</strong> - Override the current language that is used for selecting translated strings.';
$lang['admin']['server_db_grants'] = 'Check database access levels';
$lang['admin']['error_nograntall_found'] = 'Could not find a suitable "GRANT ALL" permission. This may mean you could have problems installing or removing modules. Or even adding and deleting items, including pages';
$lang['admin']['msg_grantall_found'] = 'Found a "GRANT ALL" statement that appears to be suitable';
$lang['admin']['curlversion'] = 'Test curl version';
$lang['admin']['curl'] = 'Test for the curl library';
$lang['admin']['test_curl'] = 'Test for curl availability';
$lang['admin']['test_curlversion'] = 'Test Curl Version';
$lang['admin']['curl_versionstr'] = 'version %s, minimum recommended version is %s';
$lang['admin']['lines_in_error'] = '%d lines with errors';
$lang['admin']['no_files_scanned'] = 'No files were scanned during the verification process (maybe the file is invalid)';
$lang['admin']['stylesheetnotfound'] = 'Stylesheet %d not found';
$lang['admin']['sysmain_updateurls'] = 'Update Routes';
$lang['admin']['sysmain_confirmupdateurls'] = 'Are you sure you want to refresh the route database';
$lang['admin']['routesrebuilt'] = 'The database routes are rebuilt';
$lang['admin']['text_changeowner'] = 'Set Selected Pages to a different User';
$lang['admin']['changeowner'] = 'Change Owner';
$lang['admin']['xmlreader_class'] = 'Checking for the XMLReader class';
$lang['admin']['info_smarty_cacheudt'] = 'If enabled, all calls to user defined tags will be cached. This will be useful for tags that display the output of database queries. You can disable caching using the nocache parameter in the udt call. i.e: <code>{myusertag nocache}</code>';
$lang['admin']['prompt_smarty_cacheudt'] = 'Cache UDT Calls';
$lang['admin']['always'] = 'Always';
$lang['admin']['never'] = 'Never';
$lang['admin']['moduledecides'] = 'Module Decides';
$lang['admin']['info_smarty_cachemodules'] = 'Select how to cache tags in various templates that call module actions. If enabled, all module calls will be cached. This may have negative effects on some modules, or modules with forms. <em>(note: you can override this using the nocache option as described in the smarty manual)</em>. If disabled no module calls will be cached which may have an effect on performance. If you select to allow the module to decide, the default is that caching is not performed. The module can override this, and you can disable caching using the nocache parameter when calling the module.';
$lang['admin']['prompt_smarty_cachemodules'] = 'Cache module calls';
$lang['admin']['info_smarty_compilecheck'] = 'If disabled, smarty will not check the modification dates of templates to see if they have been modified. This can significantly improve performance. However performing any template change (or even some content changes) may require a cache clearing';
$lang['admin']['prompt_smarty_compilecheck'] = 'Do a Compilation Check';
$lang['admin']['info_smarty_options'] = 'The following options have effect only when the above caching options are enabled';
$lang['admin']['info_smarty_caching2'] = 'When enabled, the output from various plugins will be cached to increase performance. This only applies to output on content pages marked as cachable, and only for non-admin users. Note, this functionality may interfere with the behavior of some modules or plugins, or plugins that use non-inline forms. This option has no effect for users of PHP 5.2.x';
$lang['admin']['prompt_use_smartycaching'] = 'Enable Smarty Caching';
$lang['admin']['smarty_settings'] = 'Smarty Settings';
$lang['admin']['help_function_cms_init_editor'] = '<h3>What does this do?</h3>
<p>This plugin is used to initialize the selected wysiwyg editor for display when wysiwyg functionalities are required for frontend data submission. This module will find the selected frontend wysiwyg, determine if it has been requested, and if so generate the appropriate html code <em>(usually javascript links)</em> so that the wysiwyg will initialize properly when the page is loaded. If no wysiwyg editors have been requested for the frontend request this plugin will produce no output.</p>
<h3>How do I use it?</h3>
<p>The first thing you must do is select the frontend WYSIWYG editor to use in the global settings page of the admin console. Next If you use frontend wysiwyg editors on numerous pages, it may be best to place the {cms_init_editor} plugin directly into your page template. If you only require the wysiwyg editor to be enabled on a limited amount of pages you may just place it into the "Page Specific Metadata" field in each page.</p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)wysiwyg</em> - Specify the name of the wysiwyg editor module to initialize. Use with caution. If you have a different wysiwyg editor selected in the global settings, this will force the specified editor to be initialized.</li>
<li><em>(optional)force=0</em> - Normally this plugin will not initialize the specified (or detected) editor if it has not been marked as "active". This parameter will override that behavior.</li>
<li><em>(optional)assign</em> - Assign the output of the plugin to the named smarty variable.</li>
</ul>';
$lang['admin']['info_pagedefaults'] = 'This form allows specifying various options as to the initial settings when creating new content pages. The items in this page have no effect when editing existing pages';
$lang['admin']['default_contenttype'] = 'Default Content Type';
$lang['admin']['info_default_contenttype'] = 'Applicable when adding new content objects, this control specifies the type that is selected by default. Please ensure that the selected item is not one of the "disallowed types".';
$lang['admin']['error_contenttype'] = 'The content type associated with this page is invalid or not permitted';
$lang['admin']['info_disallowed_contenttypes'] = 'Select which content types to remove from the content type dropdown when editing or adding content. Use CTRL+Click to select, unselect items. Having no selected items will indicate that all content types are allowed. <em>(applies to all users)</em>';
$lang['admin']['disallowed_contenttypes'] = 'Content Types that are NOT allowed';
$lang['admin']['search_module'] = 'Search module';
$lang['admin']['info_search_module'] = 'Select the module that should be used to index words for searching, and will provide the site search capabilities';
$lang['admin']['filecreatedirbadchars'] = 'Invalid characters were detected in the submitted directory name';
$lang['admin']['modulehelp_yourlang'] = 'View in Your Language';
$lang['admin']['info_umask'] = 'The "umask" is an octal value that is used to specify the default permission for newly created files (this is used for files in the cache directory, and uploaded files. For more information see the appropriate <a href="http://en.wikipedia.org/wiki/Umask">wikipedia article.</a>';
$lang['admin']['general_operation_settings'] = 'General Operation Settings';
$lang['admin']['info_checkversion'] = 'If enabled, the system will perform a daily check for a new release of CMSMS';
$lang['admin']['checkversion'] = 'Allow periodic checks for new versions';
$lang['admin']['actioncontains'] = 'Action Contains';
$lang['admin']['filterapplied'] = 'Current Filter';
$lang['admin']['automatedtask_success'] = 'Automated task performed';
$lang['admin']['siteprefsupdated'] = 'Global Settings Updated';
$lang['admin']['ip_addr'] = 'IP Address';
$lang['admin']['warn_admin_ipandcookies'] = 'Warning: Admin activities use cookies and tracks your IP address';
$lang['admin']['event_desc_loginfailed'] = 'Sent after a user failed to login into the admin panel';
$lang['admin']['event_help_loginfailed'] = '<p>Sent after a user failed to login into the admin panel.</p>';
$lang['admin']['modulehelp_english'] = 'View In English';
$lang['admin']['nopluginabout'] = 'No about information available for this plugin';
$lang['admin']['nopluginhelp'] = 'No help available for this plugin';
$lang['admin']['moduleupgraded'] = 'Upgrade Successful';
$lang['admin']['added_css'] = 'Added Stylesheet';
$lang['admin']['toggle'] = 'Toggle';
$lang['admin']['added_group'] = 'Added Group';
$lang['admin']['expanded_xml'] = 'Expanded XML file consisting of %s %s';
$lang['admin']['installed_mod'] = 'Installed version %s';
$lang['admin']['uninstalled_mod'] = 'Uninstalled module %s';
$lang['admin']['upgraded_mod'] = '%s Upgraded from Version %s to %s';
$lang['admin']['edited_gcb'] = 'Edited Global Content Block';
$lang['admin']['edited_content'] = 'Edited Content';
$lang['admin']['added_content'] = 'Added Content';
$lang['admin']['added_css_association'] = 'Added Stylesheet Association';
$lang['admin']['deleted_group'] = 'Deleted Group';
$lang['admin']['deleted_content'] = 'Deleted Content';
$lang['admin']['edited_user'] = 'Edited User';
$lang['admin']['edited_udt'] = 'Edited User Defined Tag';
$lang['admin']['content_copied'] = 'Content Item Copied to %s';
$lang['admin']['deleted_template'] = 'Deleted Template';
$lang['admin']['added_udt'] = 'Added User Defined Tag';
$lang['admin']['deleted_udt'] = 'Deleted User Defined Tag';
$lang['admin']['added_gcb'] = 'Added Global Content Block';
$lang['admin']['edited_group'] = 'Edited Group';
$lang['admin']['deleted_css_association'] = 'Deleted Stylesheet Association';
$lang['admin']['user_logout'] = 'User Logout';
$lang['admin']['user_login'] = 'User Login';
$lang['admin']['login_failed'] = 'User Login Failed';
$lang['admin']['deleted_css'] = 'Deleted Stylesheet';
$lang['admin']['uploaded_file'] = 'Uploaded File';
$lang['admin']['created_directory'] = 'Created Directory';
$lang['admin']['deleted_file'] = 'Deleted File';
$lang['admin']['deleted_directory'] = 'Deleted Directory';
$lang['admin']['edited_template'] = 'Edited Template';
$lang['admin']['deleted_user'] = 'Deleted User';
$lang['admin']['deleted_module'] = 'Permanently removed %s';
$lang['admin']['deleted_gcb'] = 'Deleted Global Content Block';
$lang['admin']['added_user'] = 'Added User';
$lang['admin']['edited_user_preferences'] = 'Edited User Preferences';
$lang['admin']['added_template'] = 'Added Template';
$lang['admin']['event_desc_stylesheetpostcompile'] = 'Sent after a stylesheet is compiled through smarty';
$lang['admin']['event_desc_stylesheetprecompile'] = 'Sent before a stylesheet is compiled through smarty';
$lang['admin']['confirm_uploadmodule'] = 'Are you sure you would like to upload the selected XML file. Incorrectly uploading a module file may break a functioning website';
$lang['admin']['error_module_mincmsversion'] = 'This module requires a newer version of CMS Made Simple';
$lang['admin']['info_browser_cache_expiry'] = 'Specify the amount of time (in minutes) that browsers should cache pages for. Setting this value to 0 disables the functionality';
$lang['admin']['browser_cache_expiry'] = 'Browser Cache Expiry Period <em>(minutes)</em>';
$lang['admin']['info_browser_cache'] = 'Applicable only to cachable pages, this setting indicates that browsers should be allowed to cache the pages for an amount of time. If enabled repeat visitors to your site may not immediately see changes to the content of the pages.';
$lang['admin']['allow_browser_cache'] = 'Allow Browser to Cache Pages';
$lang['admin']['server_cache_settings'] = 'Server Cache Settings';
$lang['admin']['browser_cache_settings'] = 'Browser Cache Settings';
$lang['admin']['help_function_browser_lang'] = '<h3>What does this do?</h3>
<p>This plugin detects and outputs the language that the users browser accepts, and cross references it with a list of allowed languages to determine a language value for the session.</p>
<h3>How do I use it?</h3>
<p>Insert the tag early into your page template <em>(it can go above the <head> section if you want)</em> and provide it the name of the default language, and the accepted languages (only two character language names are accepted), then do something with the result. i.e:</p>
<pre><code>{browser_lang accepted="de,fr,en,es" default=en assign=tmp}{session_put var=lang val=$tmp}</code></pre>
<p><em>({session_put} is a plugin provided by the CGSimpleSmarty module)</em></p>
<h3>What Parameters does it Take?</h3>
<ul>
<li><strong>accepted <em>(required)</em></strong><br/> - A comma separated list of two character language names that are accepted.</li>
<li>default<br/>- <em>(optional)</em> A default language to output if no accepted language was supported by the browser. en is used if no other value is specified.</li>
<li>assign<br/>- <em>(optional)</em> The name of the smarty variable to assign the results to. If not specified the results of this function are returned.</li>
</ul>';
$lang['admin']['info_target'] = 'This option may used by the Menu Manager to indicate when and how new frames or windows should be opened. Some menu manager templates may ignore this option.';
$lang['admin']['close'] = 'Close';
$lang['admin']['open'] = 'Open';
$lang['admin']['revert'] = 'Revert all changes';
$lang['admin']['autoclearcache2'] = 'Remove cache files that are older than the specified number of days';
$lang['admin']['root'] = 'Root';
$lang['admin']['info_content_autocreate_flaturls'] = 'This will set all URLs to the same value as the Page Alias. Note: The two values will not be synchronised after first being set';
$lang['admin']['content_autocreate_flaturls'] = 'Automatically created URL's are flat';
$lang['admin']['content_autocreate_urls'] = 'Automatically create page URL's';
$lang['admin']['content_mandatory_urls'] = 'Page URL's are required';
$lang['admin']['content_imagefield_path'] = 'Path for image field';
$lang['admin']['info_content_imagefield_path'] = 'Relative to the image uploads path, specify a directory name that contains the paths containing files for the image field';
$lang['admin']['content_thumbnailfield_path'] = 'Path for thumbnail field';
$lang['admin']['info_content_thumbnailfield_path'] = 'Relative to the image uploads path, specify a directory name that contains the paths containing files for the image field. Usually this will be the same as the path above.';
$lang['admin']['contentimage_path'] = 'Path for {content_image} tag';
$lang['admin']['info_contentimage_path'] = 'Relative to the uploads path, specify a directory name that contains the paths containing files for the {content_image} tag. This value is used as a default for the dir parameter';
$lang['admin']['editcontent_settings'] = 'Content Editing Settings';
$lang['admin']['help_page_url'] = 'Specify an alternate URL (relative to the root of your website) that can be used to uniquely identify this page. i.e: path/to/mypage. The page url is only useful when pretty urls are enabled.';
$lang['admin']['help_page_alias'] = 'The alias is used as an alternate to the page id to uniquely identify a page. It must be unique across all pages. The alias is also used to assist in building the URL for the page';
$lang['admin']['help_page_searchable'] = 'This setting indicates whether the content of this page should be indexed by the Search module';
$lang['admin']['help_page_cachable'] = 'Performance can be increased by setting as many pages as possible to cachable. However this cannot be used for pages where content may change on a per request basis';
$lang['admin']['sitedownexcludeadmins'] = 'Exclude users logged in to the CMSMS admin console';
$lang['admin']['your_ipaddress'] = 'Your IP Address is';
$lang['admin']['use_wysiwyg'] = 'Use WYSIWYG';
$lang['admin']['contenttype_redirlink'] = 'Redirecting Link';
$lang['admin']['yes'] = 'Yes';
$lang['admin']['no'] = 'No';
$lang['admin']['listcontent_showalias'] = 'Display the "Alias" column';
$lang['admin']['listcontent_showurl'] = 'Display the "URL" column';
$lang['admin']['listcontent_showtitle'] = 'Display the Page Title or Menu Text';
$lang['admin']['listcontent_settings'] = 'Content List Settings';
$lang['admin']['lctitle_page'] = 'The title of existing content items';
$lang['admin']['lctitle_alias'] = 'The alias of existing content items. Some content items do not have aliases';
$lang['admin']['lctitle_url'] = 'The URL suffix for the content item. If set';
$lang['admin']['lctitle_template'] = 'The selected template for the content item. Some content items do not have templates';
$lang['admin']['lctitle_owner'] = 'The owner of the content item';
$lang['admin']['lctitle_active'] = 'Indicates whether the content item is active. Inactive items cannot be displayed.';
$lang['admin']['lctitle_default'] = 'Specify the content item that is accessed when the root url is requested. Only one item can be default';
$lang['admin']['lctitle_move'] = 'Allows arranging your content hierarchy';
$lang['admin']['lctitle_multiselect'] = 'Select all visible items / Select none';
$lang['admin']['invalid_url2'] = 'The page URL specified is invalid. It should contain only alphanumeric characters, or - or /. Extensions must contain only alphanumeric chars and be less than 5 characters in length. It is also possible that the URL specified is already in use.';
$lang['admin']['page_url'] = 'Page URL';
$lang['admin']['runuserplugin'] = 'Run User Plugin';
$lang['admin']['output'] = 'Output';
$lang['admin']['run'] = 'Run';
$lang['admin']['run_udt'] = 'Run this User Defined Tag';
$lang['admin']['stylesheetcopied'] = 'Stylesheet Copied';
$lang['admin']['templatecopied'] = 'Template Copied';
$lang['admin']['ecommerce_desc'] = 'Modules for providing E-commerce capabilities';
$lang['admin']['ecommerce'] = 'E-Commerce';
$lang['admin']['help_function_content_module'] = '<h3>What does this do?</h3>
<p>This content block type allows interfacing with different modules to create different content block types.</p>
<p>Some modules can define content block types for use in module templates. i.e: The FrontEndUsers module may define a group list content block type. It will then indicate how you can use the content_module tag to utilize that block type within your templates.</p>
<p><strong>Note:</strong> This block type must be used only with compatible modules. You should not use this in any way except for as guided by addon modules.</p>
<p>This tag accepts a few parameters, and passes all other paramters to the module for processing.</p>
<p>Parameters:
<ul>
<li><strong>(required)</strong>module - The name of the module that will provide this content block. This module must be installed and available</li>
<li><strong>(required)</strong>block - The name of the content block.</li>
<li><em>(optional)</em>label - A label for the content block for use when editing the page.</li>
<li><em>(optional)</em> tab - The desired tab to display this field on in the edit form..</li>
<li><em>(optional)</em> assign (string) - Assign the results to a smarty variable with that name.</li>
</ul>
</p>';
$lang['admin']['error_parsing_content_blocks'] = 'An error occurred parsing content blocks (perhaps duplicated block names)';
$lang['admin']['error_no_default_content_block'] = 'No default content block was detected in this template. Please ensure that you have a {content} tag in the page template.';
$lang['admin']['help_function_cms_stylesheet'] = ' <h3>What does this do?</h3>
<p>A replacement for the {stylesheet} tag, this tag provides caching of css files by generating static files in the tmp/cache directory, and smarty processing of the individual stylesheets.</p>
<p>This plugin retrieves stylesheet information from the system. By default, it grabs all of the stylesheets attached to the current template in the order specified by the designer, and combines them into a single stylesheet tag.</p>
<p>Generated stylesheets are uniquely named according to the last modification date in the database, and are only generated if a stylesheet has changed.</p>
<p>This tag is the replacement for the {stylesheet} tag.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page's head section like: <code>{cms_stylesheet}</code></p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)</em> name - Instead of getting all stylesheets for the given page, it will only get one specifically named one, whether it's attached to the current template or not.</li>
<li><em>(optional)</em> nocombine - If set to a non zero value, and there are multiple stylesheets associated with the template, the stylesheets will be output as separate tags rather than combined into a single tag.</li>
<li><em>(optional)</em> nolinks - If set to a non zero value, the stylesheets will be output as a URL without <link> tag.</li>
<li><em>(optional)</em> https - (boolean) indicates wether the ssl_url config entry should be used to prefix stylesheet urls. If not specified, the system will attempt to determine the proper root url based on the secure flag of the page being displayed.</li>
<li><em>(optional)</em> templateid - If templateid is defined, this will return stylesheets associated with that template instead of the current one.</li>
<li><em>(optional)</em> media - <strong>[deprecated]</strong> - When used in conjunction with the name parameter this parameter will allow you to override the media type for that stylesheet. When used in conjunction with the templateid parameter, the media parameter will only output stylesheet tags for those stylesheets that are marked as compatible with the specified media type.</li>
</ul>
<h3>Smarty Processing</h3>
<p>When generating css files this system passes the stylesheets retrieved from the database through smarty. The smarty delimiters have been changed from the CMSMS standard { and } to [[ and ]] respectively to ease transition in stylesheets. This allows creating smarty variables i.e.: [[assign var='red' value='#900']] at the top of the stylesheet, and then using these variables later in the stylesheet, i.e:</p>
<pre>
<code>
h3 .error { color: [[$red]]; }<br/>
</code>
</pre>
<p>Because the cached files are generated in the tmp/cache directory of the CMSMS installation, the CSS relative working directory is not the root of the website. Therefore any images, or other tags that require a url should use the [[root_url]] tag to force it to be an absolute url. i.e:</p>
<pre>
<code>
h3 .error { background: url([[root_url]]/uploads/images/error_background.gif); }<br/>
</code>
</pre>
<p><strong>Note:</strong> Due to the caching nature of the plugin, smarty variables should be placed at the top of EACH stylesheet that is attached to a template.</p>';
$lang['admin']['pseudocron_granularity'] = 'Pseudocron Granularity';
$lang['admin']['info_pseudocron_granularity'] = 'This setting indicates how often the system will attempt to handle regularly scheduled tasks';
$lang['admin']['cron_request'] = 'Each Request';
$lang['admin']['cron_15m'] = '15 Minutes';
$lang['admin']['cron_30m'] = '30 Minutes';
$lang['admin']['cron_60m'] = '1 Hour';
$lang['admin']['cron_120m'] = '2 Hours';
$lang['admin']['cron_3h'] = '3 Hours';
$lang['admin']['cron_6h'] = '6 Hours';
$lang['admin']['cron_12h'] = '12 Hours';
$lang['admin']['cron_24h'] = '24 Hours';
$lang['admin']['adminlog_1day'] = '1 day';
$lang['admin']['adminlog_1week'] = '1 week';
$lang['admin']['adminlog_2weeks'] = '2 weeks';
$lang['admin']['adminlog_1month'] = '1 month';
$lang['admin']['adminlog_3months'] = '3 months';
$lang['admin']['adminlog_6months'] = '6 months';
$lang['admin']['adminlog_manual'] = 'Manual deletion';
$lang['admin']['adminlog_lifetime'] = 'Lifetime of log-entries';
$lang['admin']['info_adminlog_lifetime'] = 'Remove log-entries that are older than the specified period.';
$lang['admin']['filteruser'] = 'Username is';
$lang['admin']['filtername'] = 'Event name contains';
$lang['admin']['filteraction'] = 'Action contains';
$lang['admin']['filterapply'] = 'Apply filters';
$lang['admin']['filterreset'] = 'Reset filters';
$lang['admin']['filters'] = 'Filters';
$lang['admin']['showfilters'] = 'Edit filter';
$lang['admin']['clearcache_taskdescription'] = 'Executed daily, this task will clear cached files that are older than the age preset in the global preferences';
$lang['admin']['clearcache_taskname'] = 'Clear Cached Files';
$lang['admin']['info_autoclearcache'] = 'Specify an integer value. Enter 0 to disable automatic cache clearing';
$lang['admin']['autoclearcache'] = 'Automatically clear the cache every N days';
$lang['admin']['listtemplates_pagelimit'] = 'Eilučių skaičius puslapyje rodant šablonus';
$lang['admin']['liststylesheets_pagelimit'] = 'Eilučių skaičius puslapyje rodant stilius';
$lang['admin']['listgcbs_pagelimit'] = 'Number of rows per page when viewing Global Content Blocks';
$lang['admin']['insecure'] = 'Insecure (HTTP)';
$lang['admin']['secure'] = 'Secure (HTTPS)';
$lang['admin']['secure_page'] = 'Use HTTPS for this page';
$lang['admin']['thumbnail_width'] = 'Miniatiūros plotis';
$lang['admin']['thumbnail_height'] = 'Miniatiūros aukštis';
$lang['admin']['E_STRICT'] = 'Is E_STRICT disabled in error_reporting';
$lang['admin']['test_estrict_failed'] = 'E_STRICT is enabled in the error_reporting';
$lang['admin']['info_estrict_failed'] = 'Some libraries that CMSMS uses do not work well with E_STRICT. Please disable this before continuing';
$lang['admin']['E_DEPRECATED'] = 'Is E_DEPRECATED disabled in error_reporting';
$lang['admin']['test_edeprecated_failed'] = 'E_DEPRECATED is enabled';
$lang['admin']['info_edeprecated_failed'] = 'If E_DEPRECATED is enabled in your error reporting users will see alot of warning messages that could effect the display and functionalty';
$lang['admin']['session_use_cookies'] = 'Sessions are allowed to use Cookies';
$lang['admin']['errorgettingcontent'] = 'Could not retrieve information for the specified content object';
$lang['admin']['errordeletingcontent'] = 'Error deleting content (either this page has children or is the default content)';
$lang['admin']['invalidemail'] = 'Įvestas e. pašto adresas yra netteisingas';
$lang['admin']['info_deletepages'] = 'Note: due to permission restrictions, some of the pages you selected for deletion may not be listed below';
$lang['admin']['info_pagealias'] = 'Šiam tinklapiui nurodykite unikalų trumpinį.';
$lang['admin']['info_autoalias'] = 'Jei šitas laukas tuščias, tai alias'as bus sukurtas automatiškai.';
$lang['admin']['invalidparent'] = 'You must select a parent page (contact your administrator if you do not see this option).';
$lang['admin']['forgotpwprompt'] = 'Enter your admin username. An email will then be sent to the email address associated with that username with new login information';
$lang['admin']['info_basic_attributes'] = 'This field allows you to specify which content properties that users without the "Modify Page Structure" permission are allowed to edit.';
$lang['admin']['basic_attributes'] = 'Pagrindinės savybės';
$lang['admin']['no_permission'] = 'Jūs neturite leidimo vykdyti šią funkciją.';
$lang['admin']['bulk_success'] = 'Masinis veiksmas buvo sėkmingai atnaujintas.';
$lang['admin']['no_bulk_performed'] = 'Jokų masinių veiksmų nebuvo atlikta.';
$lang['admin']['info_preview_notice'] = 'Warning: This preview panel behaves much like a browser window allowing you to navigate away from the initially previewed page. However, if you do that, you may experience unexpected behaviour. If you navigate away from the initial display and return, you may not see the un-committed content until you make a change to the content in the main tab, and then reload this tab. When adding content, if you navigate away from this page, you will be unable to return, and must refresh this panel.';
$lang['admin']['sitedownexcludes'] = 'Nerodyti „svetainė neveikia“ pranešimo šiems adresams';
$lang['admin']['info_sitedownexcludes'] = 'This parameter allows listing a comma separated list of ip addresses or networks that should not be subject to the sitedown mechanism. This allows administrators to work on a site whilst anonymous visitors receive a sitedown message.<br/><br/>Addresses can be specified in the following formats:<br/>
1. xxx.xxx.xxx.xxx -- (exact IP address)<br/>
2. xxx.xxx.xxx.[yyy-zzz] -- (IP address range)<br/>
3. xxx.xxx.xxx.xxx/nn -- (nnn = number of bits, cisco style. i.e: 192.168.0.100/24 = entire 192.168.0 class C subnet)';
$lang['admin']['setup'] = 'Sudėtingesnės parinktys';
$lang['admin']['handle_404'] = 'Custom 404 Handling';
$lang['admin']['sitedown_settings'] = '„Svetainė neveikia“ nuostatos';
$lang['admin']['general_settings'] = 'Pagrindinės nuostatos';
$lang['admin']['help_function_page_attr'] = '<h3>What does this do?</h3>
<p>This tag can be used to return the value of the attributes of a certain page.</p>
<h3>How do I use it?</h3>
<p>Insert the tag into the template like: <code>{page_attr key="extra1"}</code>.</p>
<h3>What parameters does it take?</h3>
<ul>
<li><strong>key [required]</strong> The key to return the attribute of.</li>
</ul>';
$lang['admin']['forge'] = 'Forge';
$lang['admin']['disable_wysiwyg'] = 'Nerodyti WYSIWYG redaktoriaus šiam tinklapiui (nepaisant šablono ir naudotojo nuostatų)';
$lang['admin']['help_function_page_image'] = '<h3>What does this do?</h3>
<p>This tag can be used to return the value of the image or thumbnail fields of a certain page.</p>
<h3>How do I use it?</h3>
<p>Insert the tag into the template like: <code>{page_image}</code>.</p>
<h3>What parameters does it take?</h3>
<ul>
<li>thumbnail - Optionally display the value of the thumbnail property instead of the image property.</li>
</ul>';
$lang['admin']['pagelink_circular'] = 'A page link cannot list another page link as its destination';
$lang['admin']['destinationnotfound'] = 'Pasirinktas tinklapis nerastas arba yra neteisingas';
$lang['admin']['help_function_dump'] = '<h3>What does this do?</h3>
<p>This tag can be used to dump the contents of any smarty variable in a more readable format. This is useful for debugging, and editing templates, to know the format and types of data available.</p>
<h3>How do I use it?</h3>
<p>Insert the tag in the template like <code>{dump item='the_smarty_variable_to_dump'}</code>.</p>
<h3>What parameters does it take?</h3>
<ul>
<li><strong>item (required)</strong> - The smarty variable to dump the contents of.</li>
<li>maxlevel - The maximum number of levels to recurse (applicable only if recurse is also supplied. The default value for this parameter is 3</li>
<li>nomethods - Skip output of methods from objects.</li>
<li>novars - Skip output of object members.</li>
<li>recurse - Recurse a maximum number of levels through the objects providing verbose output for each item until the maximum number of levels is reached.</li>
</ul>';
$lang['admin']['sqlerror'] = 'SQL klaida %s';
$lang['admin']['image'] = 'Vaizdas';
$lang['admin']['thumbnail'] = 'Miniatiūra';
$lang['admin']['searchable'] = 'Šis tinklapis naudojamas paieškai';
$lang['admin']['help_function_content_image'] = '<h3>What does this do?</h3>
<p>This plugin allows template designers to prompt users to select an image file when editing the content of a page. It behaves similarly to the content plugin, for additional content blocks.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your page template like: <code>{content_image block='image1'}</code>.</p>
<h3>What parameters does it take?</h3>
<ul>
<li><strong>(required)</strong> block - The name for this additional content block.
<p>Example:</p>
<pre>{content_image block='image1'}</pre><br/>
</li>
<li><em>(optional)</em> label - A label or prompt for this content block in the edit content page. If not specified, the block name will be used.</li>
<li><em>(optional)</em> dir - The name of a directory (relative to the uploads directory, from which to select image files. If not specified, the uploads directory will be used.
<p>Example: use images from the uploads/image directory.</p>
<pre>{content_image block='image1' dir='images'}</pre><br/>
</li>
<li><em>(optional)</em> class - The css class name to use on the img tag in frontend display.</li>
<li><em>(optional)</em> id - The id name to use on the img tag in frontend display.</li>
<li><em>(optional)</em> name - The tag name to use on the img tag in frontend display.</li>
<li><em>(optional)</em> width - The desired width of the image.</li>
<li><em>(optional)</em> height - The desired height of the image.</li>
<li><em>(optional)</em> alt - Alternative text if the image cannot be found.</li>
</ul>';
$lang['admin']['error_udt_name_chars'] = 'A valid UDT name starts with a letter or underscore, followed by any number of letters, numbers, or underscores.';
$lang['admin']['errorupdatetemplateallpages'] = 'Šablonas neaktyvus';
$lang['admin']['hidefrommenu'] = 'Nerodyti meniu';
$lang['admin']['settemplate'] = 'Nustatyti šabloną';
$lang['admin']['text_settemplate'] = 'Nustatyti kitą šabloną pasirinktiems tinklapiams';
$lang['admin']['cachable'] = 'Kešuojamas';
$lang['admin']['noncachable'] = 'Nekešuojamas';
$lang['admin']['copy_from'] = 'Kopijuoti iš';
$lang['admin']['copy_to'] = 'Kopijuoti į';
$lang['admin']['copycontent'] = 'Kopijuoti turinio elementą';
$lang['admin']['md5_function'] = 'md5 funkcija';
$lang['admin']['tempnam_function'] = 'tempnam funkcija';
$lang['admin']['register_globals'] = 'PHP register_globals';
$lang['admin']['output_buffering'] = 'PHP output_buffering';
$lang['admin']['disable_functions'] = 'PHP disable_functions';
$lang['admin']['xml_function'] = 'Bazinis XML (expat) palaikymas';
$lang['admin']['magic_quotes_gpc'] = 'Magic quotes for Get/Post/Cookie';
$lang['admin']['magic_quotes_gpc_on'] = 'Single-quote, double quote and backslash are escaped automatically. You can to have problems in save templates';
$lang['admin']['magic_quotes_runtime'] = 'Magic quotes in runtime';
$lang['admin']['magic_quotes_runtime_on'] = 'Most functions that return data will have quotes escaped with a backslash. You can to have problems';
$lang['admin']['file_get_contents'] = 'Testuojamas file_get_contents';
$lang['admin']['check_ini_set'] = 'Testuojamas ini_set';
$lang['admin']['check_ini_set_off'] = 'You may have difficulty with some functionality without this capability. This test may fail if safe_mode is enabled';
$lang['admin']['file_uploads'] = 'Failų atsiuntimas';
$lang['admin']['test_remote_url'] = 'Testuoti nutolusį URL';
$lang['admin']['test_remote_url_failed'] = 'Jūs tikriausiai negalite atidaryti failo nutolusiame web serveryje.';
$lang['admin']['test_allow_url_fopen_failed'] = 'When allow url fopen is disabled you will not be able to accessing URL object like file using the ftp or http protocol.';
$lang['admin']['connection_error'] = 'Outgoing http connections do not appear to work! There is a firewall or some ACL for external connections?. This will result in module manager, and potentially other functionality failing.';
$lang['admin']['remote_connection_timeout'] = 'Jungimosi laikas baigėsi';
$lang['admin']['search_string_find'] = 'Susijungimas tvarkoje!';
$lang['admin']['connection_failed'] = 'Susijungimas nepavyko!';
$lang['admin']['remote_response_ok'] = 'Nuotolinis atsakas tvarkoje!';
$lang['admin']['remote_response_404'] = 'Nuotolinis atsakas nerastas!';
$lang['admin']['remote_response_error'] = 'Nuotolinio atsako klaida!';
$lang['admin']['notifications_to_handle'] = 'Jūs turite <b>%d</b> pranešimų';
$lang['admin']['notification_to_handle'] = 'Jūs turite <b>%d</b> pranešimą';
$lang['admin']['notifications'] = 'Pranešimai';
$lang['admin']['dashboard'] = 'Žiūrėti pranešimus';
$lang['admin']['ignorenotificationsfrommodules'] = 'Ignoruoti šių modulių pranešimus';
$lang['admin']['admin_enablenotifications'] = 'Allow users to view notifications<br/><em>(notifications will be displayed on all admin pages)</em>';
$lang['admin']['enablenotifications'] = 'Leisti naudotojo pranešimus administratoriaus sekcijoje';
$lang['admin']['test_check_open_basedir_failed'] = 'Open basedir restrictions are in effect. You may have difficulty with some addon functionality with this restriction';
$lang['admin']['config_writable'] = 'config.php writable. It is more safe if you change permission to read-only';
$lang['admin']['caution'] = 'Dėmesio';
$lang['admin']['create_dir_and_file'] = 'Checking if the httpd process can create a file inside of a directory it created';
$lang['admin']['os_session_save_path'] = 'No check because OS path';
$lang['admin']['unlimited'] = 'Neribota';
$lang['admin']['open_basedir'] = 'PHP Open Basedir';
$lang['admin']['open_basedir_active'] = 'No check because open basedir active';
$lang['admin']['invalid'] = 'Neteisinga';
$lang['admin']['checksum_passed'] = 'All checksums match those in the uploaded file';
$lang['admin']['error_retrieving_file_list'] = 'Klaida guanant failų sąrašą';
$lang['admin']['files_checksum_failed'] = 'Negali būti patikrinta kontrolinė suma failams';
$lang['admin']['failure'] = 'Nesėkmė';
$lang['admin']['help_function_process_pagedata'] = '<h3>What does this do?</h3>
<p>This plugin will process the data in the "pagedata" block of content pages through smarty. It allows you to specify page specific data to smarty without changing the template for each page.</p>
<h3>How do I use it?</h3>
<ol>
<li>Insert smarty assign variables and other smarty logic into the pagedata field of some of your content pages.</li>
<li>Insert the <code>{process_pagedata}</code> tag into the very top of your page template.</li>
</ol>
<br/>
<h3>What parameters does it take?</h3>
<p>None at this time</p>';
$lang['admin']['page_metadata'] = 'Tinklapio specifiniai metaduomenys';
$lang['admin']['pagedata_codeblock'] = 'Šiam tinkalpiui specifiniai „Smarty“ duomenys ar funkcijos';
$lang['admin']['error_uploadproblem'] = 'Atsiuntimo metu įvyko klaida';
$lang['admin']['error_nofileuploaded'] = 'Failai neįkelti';
$lang['admin']['files_failed'] = 'Failai nepraėjo md5sum patikros';
$lang['admin']['files_not_found'] = 'Failai nerasti';
$lang['admin']['info_generate_cksum_file'] = 'Ši funkcija leidžia sugeneruoti ir Jūsų kompiuteryje įrašyti kontrolinių sumų failą, ir vėliau jį naudoti patikrai. Tai turėtų būti padaroma prieš pat „paleidžiant“ svetainę, ir/ar po bet kokio atnaujinimo, ar stambesnių pakeitimų.';
$lang['admin']['info_validation'] = 'This function will compare the checksums found in the uploaded file with the files on the current installation. It can assist in finding problems with uploads, or exactly what files were modified if your system has been hacked. A checksum file is generated for each release of CMS Made simple from version 1.4 on.';
$lang['admin']['download_cksum_file'] = 'Atsisiųsti kontrolinių sumų failą';
$lang['admin']['perform_validation'] = 'Atlikti patvirtinimą';
$lang['admin']['upload_cksum_file'] = 'Įkelti kontrolinių sumų failą';
$lang['admin']['checksumdescription'] = 'Patikrinkite CMS failų nepažeistumą, palygindami jų kontrolines sumas su žinomomis iš anksčiau';
$lang['admin']['system_verification'] = 'Sistemos Patikrinimas';
$lang['admin']['extra1'] = 'Papildomas tinklapio požymis 1';
$lang['admin']['extra2'] = 'Papildomas tinklapio požymis 2';
$lang['admin']['extra3'] = 'Papildomas tinklapio požymis 3';
$lang['admin']['start_upgrade_process'] = 'Pradėti atnaujinimą';
$lang['admin']['warning_upgrade'] = '<em><strong>Įspėjimas:</strong></em> CMSMS reikia atnaujinti';
$lang['admin']['warning_upgrade_info1'] = 'Jūs dabar naudojate schemos versija %s. ir jums reikia atnaujinti iki %s versijos';
$lang['admin']['warning_upgrade_info2'] = 'Prašome paspausti šią nuorodą: %s.';
$lang['admin']['warning_mail_settings'] = 'Jūsų pašto nuostatos nenustatytos. Tai įtakos jūsų svetainės galimybes siųsti e. pašto žinutes. Jums reiktų eiti <a href="%s">Plėtiniai >> CMSMailer modulis</a> ir nustatyti pašto nuostatas pagal jūsų hostingo informaciją.
';
$lang['admin']['view_page'] = 'Peržiūrėti šį tinklapį naujame lange';
$lang['admin']['off'] = 'Išjungti';
$lang['admin']['on'] = 'Įjungti';
$lang['admin']['invalid_test'] = 'Klaidinta testinė parametrų reikšmė!';
$lang['admin']['copy_paste_forum'] = 'Peržiūrėti tekstinę ataskaita <em>(tinkama kopijuoti į forumo įrašą)</em>';
$lang['admin']['permission_information'] = 'Informacija apie leidimus';
$lang['admin']['server_os'] = 'Serverio Operacinė Sistema';
$lang['admin']['server_api'] = 'Serverio API';
$lang['admin']['server_software'] = 'Serverio Programinė įranga';
$lang['admin']['server_information'] = 'Serverio Informacija';
$lang['admin']['session_save_path'] = 'Sesijos išsaugojimo kelias';
$lang['admin']['max_execution_time'] = 'Maksimalus vykdymo laikas';
$lang['admin']['gd_version'] = 'GD versija';
$lang['admin']['upload_max_filesize'] = 'Maksimalus atsiuntimo dydis';
$lang['admin']['post_max_size'] = 'Maksimalus Įrašo dydis';
$lang['admin']['memory_limit'] = 'PHP Atminities Limitas';
$lang['admin']['server_db_type'] = 'Severio duomenų bazė';
$lang['admin']['server_db_version'] = 'Severio duomenų bazės versija';
$lang['admin']['phpversion'] = 'PHP versija';
$lang['admin']['safe_mode'] = 'PHP Safe moda';
$lang['admin']['php_information'] = 'PHP informacija';
$lang['admin']['cms_install_information'] = 'CMS Įdiegimo informacija';
$lang['admin']['cms_version'] = 'CMS versija';
$lang['admin']['installed_modules'] = 'Įdiegti moduliai';
$lang['admin']['config_information'] = 'Config informacija';
$lang['admin']['systeminfo_copy_paste'] = 'Prašome nukopijuoti šį tekstą į forumo pranešimą';
$lang['admin']['help_systeminformation'] = 'Žemiau patekta informacija yra surinkta iš įvairių šaltinių. Ji padės jums surasti dominančią informacija kai bandysite nustatyti problemą ar prašysite pagalbos CMS Made Simple įdiegimui.';
$lang['admin']['systeminfo'] = 'Sistemos Informacija';
$lang['admin']['systeminfodescription'] = 'Rodo įvairią informacija apie jūsų sistemą kuri gali būt naudinga sprendžiant problemas.';
$lang['admin']['systemmaintenance'] = 'System Maintenance';
$lang['admin']['systemmaintenancedescription'] = 'Various functions for maintaining the health of your system. You can also browse the changelog for all releases.';
$lang['admin']['sysmaintab_database'] = 'Database';
$lang['admin']['sysmaintab_changelog'] = 'Changelog';
$lang['admin']['sysmaintab_content'] = 'Cache and content';
$lang['admin']['sysmain_content_status'] = 'Content status';
$lang['admin']['sysmain_cache_status'] = 'Cache status';
$lang['admin']['sysmain_database_status'] = 'Database status';
$lang['admin']['sysmain_updatehierarchy'] = 'Update page hierarchy positions';
$lang['admin']['sysmain_confirmupdatehierarchy'] = 'Are you sure you want to update page hierarchy positions?';
$lang['admin']['sysmain_update'] = 'Update';
$lang['admin']['sysmain_pagesfound'] = 'pages found';
$lang['admin']['sysmain_hierarchyupdated'] = 'Page hierarchy positions updated';
$lang['admin']['sysmain_nostr_errors'] = 'No structural errors were detected in the database';
$lang['admin']['sysmain_str_error'] = 'Structural error detected in table';
$lang['admin']['sysmain_str_errors'] = 'Structural errors detected in tables';
$lang['admin']['sysmain_tablesfound'] = 'tables found (out of which %d are not seq-tables)';
$lang['admin']['sysmain_repair'] = 'Repair';
$lang['admin']['sysmain_repairtables'] = 'Repair tables';
$lang['admin']['sysmain_tablesrepaired'] = 'Tables repaired';
$lang['admin']['sysmain_optimizetables'] = 'Optimize tables';
$lang['admin']['sysmain_tablesoptimized'] = 'Tables optimized';
$lang['admin']['sysmain_optimize'] = 'Optimize';
$lang['admin']['sysmain_confirmclearcache'] = 'Are you sure you want to clear the cache?';
$lang['admin']['sysmain_nocontenterrors'] = 'No content errors detected';
$lang['admin']['sysmain_pagesmissinalias'] = 'pages missing aliases';
$lang['admin']['sysmain_confirmfixaliases'] = 'Are you sure you want to add aliases to pages missing it?';
$lang['admin']['sysmain_fixaliases'] = 'Add aliases where missed';
$lang['admin']['sysmain_aliasesfixed'] = 'aliases fixed';
$lang['admin']['sysmain_pagesinvalidtypes'] = 'pages with invalid content type';
$lang['admin']['sysmain_confirmfixtypes'] = 'Are you sure you want to convert all with invalid content into standard content pages?';
$lang['admin']['sysmain_fixtypes'] = 'Convert into standard content pages';
$lang['admin']['sysmain_typesfixed'] = 'page content types fixed';
$lang['admin']['welcome_user'] = 'Būk pasveikintas';
$lang['admin']['itsbeensincelogin'] = 'Praėjo %s nuo paskutinio apsilankymo';
$lang['admin']['days'] = 'dienos';
$lang['admin']['day'] = 'diena';
$lang['admin']['hours'] = 'valandos';
$lang['admin']['hour'] = 'valanda';
$lang['admin']['minutes'] = 'minutės';
$lang['admin']['minute'] = 'minutė';
$lang['admin']['help_css_max_age'] = 'Šis parametras turėtų būt nustatytas aukštas statinėms svetainėms ir nustatytas 0 kuriamoms svetainėms';
$lang['admin']['css_max_age'] = 'Maksimalus laikas (sekundėmis) kiek naršyklei leidžiama podėlyje laikyti stiliaus aprašus';
$lang['admin']['error'] = 'Klaida';
$lang['admin']['new_version_available'] = '<em>Pranešimas:</em> Išleista nauja CMS Made Simple versija. Prašome pranešti svetainės administratoriui.';
$lang['admin']['master_admintheme'] = 'Įprasta administratoriaus tema (prisijugimo tinklapiui ir naujiems nariams)';
$lang['admin']['contenttype_separator'] = 'Skirtukas';
$lang['admin']['contenttype_sectionheader'] = 'Sektoriaus antraštė';
$lang['admin']['contenttype_content'] = 'Turinys';
$lang['admin']['contenttype_pagelink'] = 'Vidinė svetainės nuoroda';
$lang['admin']['nogcbwysiwyg'] = 'Neleisti WYSIWYG redaktoriaus html intarpuose';
$lang['admin']['destination_page'] = 'Paskirties tinklapis';
$lang['admin']['additional_params'] = 'Papildomi parametrai';
$lang['admin']['help_function_current_date'] = ' <h3>Ką jis daro?</h3>
<p>Išveda šios dienos data. Jei formatavimas nepakeistas išvestis bus panaši į: 'Jan 01, 2008'.</p>
<h3>Kaip jį naudoti?</h3>
<p>Tiesiog į šabloną ar tinklapį įterpkite: <code>{current_date format="%A %d-%b-%y %T %Z"}</code></p>
<h3>Kokie parametrai egzistuoja?</h3>
<ul>
<li><em>(optional)</em>format - Date/Time format using parameters from php's strftime function. See <a href="http://php.net/strftime" target="_blank">here</a> for a parameter list and information.</li>
<li><em>(optional)</em>ucword - If true return uppercase the first character of each word.</li>
</ul>
</p>';
$lang['admin']['help_function_valid_xhtml'] = '<h3>Ką jis daro?</h3>
<p>Returns a link to the w3c HTML validator.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{valid_xhtml}</code></p>
<h3>What parameters does it take?</h3>
<p>
<ul>
<li><em>(optional)</em> url (string) - The URL used for validation, if none is given http://validator.w3.org/check/referer is used.</li>
<li><em>(optional)</em> class (string) - If set, this will be used as class attribute for the link (a) element</li>
<li><em>(optional)</em> target (string) - If set, this will be used as target attribute for the link (a) element</li>
<li><em>(optional)</em> image (true/false) - If set to false, a text link will be used instead of an image/icon.</li>
<li><em>(optional)</em> text (string) - If set, this will be used for the link text or alternate text for the image. Default is 'valid XHTML 1.0 Transitional'.<br /> When an image is used, the given string will also be used for the image alt attribute (by default, this can be overridden by using the 'alt' parameter).</li>
<li><em>(optional)</em> image_class (string) - Only if 'image' is not set to false. If set, this will be used as class attribute for the image (img) element</li>
<li><em>(optional)</em> src (string) - Only if 'image' is not set to false. The icon to show. Default is http://www.w3.org/Icons/valid-xhtml10</li>
<li><em>(optional)</em> width (string) - Only if 'image' is not set to false. The image width. Default is 88 (width of http://www.w3.org/Icons/valid-xhtml10)</li>
<li><em>(optional)</em> height (string) - Only if 'image' is not set to false. The image height. Default is 31 (height of http://www.w3.org/Icons/valid-xhtml10)</li>
<li><em>(optional)</em> alt (string) - Only if 'image' is not set to false. The alternate text ('alt' attribute) for the image (element). If none is given the link text will be used.</li>
</ul>
</p>';
$lang['admin']['help_function_valid_css'] = '<h3>Ką jis daro?</h3>
<p>Returns a link to the w3c CSS validator.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{valid_css}</code></p>
<h3>What parameters does it take?</h3>
<p>
<ul>
<li><em>(optional)</em> url (string) - The URL used for validation, if none is given http://jigsaw.w3.org/css-validator/check/referer is used.</li>
<li><em>(optional)</em> class (string) - If set, this will be used as class attribute for the link (a) element</li>
<li><em>(optional)</em> target (string) - If set, this will be used as target attribute for the link (a) element</li>
<li><em>(optional)</em> image (true/false) - If set to false, a text link will be used instead of an image/icon.</li>
<li><em>(optional)</em> text (string) - If set, this will be used for the link text or alternate text for the image. Default is 'Valid CSS 2.1'.<br /> When an image is used, the given string will also be used for the image alt attribute (by default, this can be overridden by using the 'alt' parameter).</li>
<li><em>(optional)</em> image_class (string) - Only if 'image' is not set to false. If set, this will be used as class attribute for the image (img) element</li>
<li><em>(optional)</em> src (string) - Only if 'image' is not set to false. The icon to show. Default is http://jigsaw.w3.org/css-validator/images/vcss</li>
<li><em>(optional)</em> width (string) - Only if 'image' is not set to false. The image width. Default is 88 (width of http://jigsaw.w3.org/css-validator/images/vcss)</li>
<li><em>(optional)</em> height (string) - Only if 'image' is not set to false. The image height. Default is 31 (height of http://jigsaw.w3.org/css-validator/images/vcss)</li>
<li><em>(optional)</em> alt (string) - Only if 'image' is not set to false. The alternate text ('alt' attribute) for the image (element). If none is given the link text will be used.</li>
</ul>
</p>';
$lang['admin']['help_function_title'] = ' <h3>Ką jis daro?</h3>
<p>Išveda tinklapio pavadinimą.</p>
<h3>Kaip jį naudoti?</h3>
<p>Tiesiog į šabloną ar tinklapį įterpkite: <code>{title}</code></p>
<h3>Kokie parametrai egzistuoja?</h3>
<p><em>(optional)</em> assign (string) - Assign the results to a smarty variable with that name.</p>';
$lang['admin']['help_function_stylesheet'] = '<h3>Ką jis daro?</h3>
<p>Gets stylesheet information from the system. By default, it grabs all of the stylesheets attached to the current template.</p>
<h3>Kaip jį naudoti?</h3>
<p>Just insert the tag into your template/page's head section like: <code>{stylesheet}</code></p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)</em>name - Instead of getting all stylesheets for the given page, it will only get one spefically named one, whether it's attached to the current template or not.</li>
<li><em>(optional)</em>media - If name is defined, this allows you set a different media type for that stylesheet.</li>
</ul>
</p>';
$lang['admin']['help_function_sitename'] = '<h3>Ką jis daro?</h3>
<p>Shows the name of the site. This is defined during install and can be modified in the Global Settings section of the admin panel.</p>
<h3>Kaip jį naudoti?</h3>
<p>Just insert the tag into your template/page like: <code>{sitename}</code></p>
<h3>What parameters does it take?</h3>
<p><em>(optional)</em> assign (string) - Assign the results to a smarty variable with that name.</p>';
$lang['admin']['help_function_search'] = '<h3>Ką jis daro?</h3>
<p>This is actually just a wrapper tag for the <a href="listmodules.php?action=showmodulehelp&module=Search">Search module</a> to make the tag syntax easier.
Instead of having to use <code>{cms_module module='Search'}</code> you can now just use <code>{search}</code> to insert the module in a template.
</p>
<h3>Kaip jį naudoti?</h3>
<p>Just put <code>{search}</code> in a template where you want the search input box to appear. For help about the Search module, please refer to the <a href="listmodules.php?action=showmodulehelp&module=Search">Search module help</a>.';
$lang['admin']['help_function_root_url'] = ' <h3>Ką jis daro?</h3>
<p>Prints the root url location for the site.</p>
<h3>Kaip jį naudoti?</h3>
<p>Just insert the tag into your template/page like: <code>{root_url}</code></p>
<h3>What parameters does it take?</h3>
<p>None at this time.</p>';
$lang['admin']['help_function_repeat'] = '<h3>Ką jis daro?</h3>
<p>Repeats a specified sequence of characters, a specified number of times</p>
<h3>Kaip jį naudoti?</h3>
<p>Insert a tag similar to the following into your template/page, like this: <code>{repeat string='repeat this ' times='3'}</code>
<h3>What parameters does it take?</h3>
<ul>
<li>string='text' - The string to repeat</li>
<li>times='num' - The number of times to repeat it.</li>
</ul>';
$lang['admin']['help_function_recently_updated'] = '<h3>Ką jis daro?</h3>
<p>Outputs a list of recently updated pages.</p>
<h3>Kaip jį naudoti?</h3>
<p>Just insert the tag into your template/page like: <code>{recently_updated}</code></p>
<h3>What parameters does it take?</h3>
<ul>
<li><p><em>(optional)</em> number='10' - Number of updated pages to show.</p><p>Example: <pre>{recently_updated number='15'}</pre></p></li>
<li><p><em>(optional)</em> leadin='Last changed' - Text to show left of the modified date.</p><p>Example: <pre>{recently_updated leadin='Last Changed'}</pre></p></li>
<li><p><em>(optional)</em> showtitle='true' - Shows the titleattribute if it exists as well (true|false).</p><p>Example: <pre>{recently_updated showtitle='true'}</pre></p></li>
<li><p><em>(optional)</em> css_class='some_name' - Warp a div tag with this class around the list.</p><p>Example: <pre>{recently_updated css_class='some_name'}</pre></p></li>
<li><p><em>(optional)</em> dateformat='d.m.y h:m' - default is d.m.y h:m , use the format you whish (php -date- format)</p><p>Example: <pre>{recently_updated dateformat='D M j G:i:s T Y'}</pre></p></li>
</ul>
<p>or combined:</p>
<pre>{recently_updated number='15' showtitle='false' leadin='Last Change: ' css_class='my_changes' dateformat='D M j G:i:s T Y'}</pre>';
$lang['admin']['help_function_print'] = '<h3>Ką jis daro?</h3>
<p>This is actually just a wrapper tag for the <a href="listmodules.php?action=showmodulehelp&module=Printing">Printing module</a> to make the tag syntax easier.
Instead of having to use <code>{cms_module module='Printing'}</code> you can now just use <code>{print}</code> to insert the module on pages and templates.
</p>
<h3>Kaip jį naudoti?</h3>
<p>Just put <code>{print}</code> on a page or in a template. For help about the Printing module, what parameters it takes etc., please refer to the <a href="listmodules.php?action=showmodulehelp&module=Printing">Printing module help</a>.';
$lang['admin']['login_info_title'] = 'Informacija';
$lang['admin']['login_info'] = 'From this point should take into consideration the following parameters';
$lang['admin']['login_info_params'] = '<ol>
<li>Cookies enabled in your browser</li>
<li>Javascript enabled in your browser </li>
<li>Windows popup active to the following address:</li>
</ol>';
$lang['admin']['help_function_news'] = ' <h3>Ką jis daro?</h3>
<p>This is actually just a wrapper tag for the <a href="listmodules.php?action=showmodulehelp&module=News">News module</a> to make the tag syntax easier.
Instead of having to use <code>{cms_module module='News'}</code> you can now just use <code>{news}</code> to insert the module on pages and templates.
</p>
<h3>Kaip jį naudoti?</h3>
<p>Just put <code>{news}</code> on a page or in a template. For help about the News module, what parameters it takes etc., please refer to the <a href="listmodules.php?action=showmodulehelp&module=News">News module help</a>.';
$lang['admin']['help_function_modified_date'] = '<h3>Ką jis daro?</h3>
<p>Prints the date and time the page was last modified. If no format is given, it will default to a format similar to 'Jan 01, 2004'.</p>
<h3>Kaip jį naudoti?</h3>
<p>Just insert the tag into your template/page like: <code>{modified_date format="%A %d-%b-%y %T %Z"}</code></p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)</em>format - Date/Time format using parameters from php's strftime function. See <a href="http://php.net/strftime" target="_blank">here</a> for a parameter list and information.</li>
</ul>';
$lang['admin']['help_function_metadata'] = ' <h3>Ką jis daro?</h3>
<p>Displays the metadata for this page. Both global metdata from the global settings page and metadata for each page will be shown.</p>
<h3>Kaip jį naudoti?</h3>
<p>Just insert the tag into your template like: <code>{metadata}</code></p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)</em>showbase (true/false) - If set to false, the base tag will not be sent to the browser. Defaults to true if use_hierarchy is set to true in config.php.</li>
</ul>';
$lang['admin']['help_function_menu_text'] = ' <h3>Ką jis daro?</h3>
<p>Prints the menu text of the page.</p>
<h3>Kaip jį naudoti?</h3>
<p>Just insert the tag into your template/page like: <code>{menu_text}</code></p>
<h3>What parameters does it take?</h3>
<p>None at this time.</p>';
$lang['admin']['help_function_menu'] = '<h3>Ką jis daro?</h3>
<p>This is actually just a wrapper tag for the <a href="listmodules.php?action=showmodulehelp&module=MenuManager">Menu Manager module</a> to make the tag syntax easier.
Instead of having to use <code>{cms_module module='MenuManager'}</code> you can now just use <code>{menu}</code> to insert the module on pages and templates.
</p>
<h3>Kaip jį naudoti?</h3>
<p>Just put <code>{menu}</code> on a page or in a template. For help about the Menu Manager module, what parameters it takes etc., please refer to the <a href="listmodules.php?action=showmodulehelp&module=MenuManager">Menu Manager module help</a>.';
$lang['admin']['help_function_last_modified_by'] = '<h3>Ką jis daro?</h3>
<p>Prints last person that edited this page. If no format is given, it will default to a ID number of user .</p>
<h3>Kaip jį naudoti?</h3>
<p>Just insert the tag into your template/page like: <code>{last_modified_by format="fullname"}</code></p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)</em>format - id, username, fullname</li>
</ul>';
$lang['admin']['help_function_image'] = ' <h3>What does this do?</h3>
<p>Creates an image tag to an image stored within your images directory</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{image src="something.jpg"}</code></p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(required)</em> <tt>src</tt> - Image filename within your images directory.</li>
<li><em>(optional)</em> <tt>width</tt> - Width of the image within the page. Defaults to true size.</li>
<li><em>(optional)</em> <tt>height</tt> - Height of the image within the page. Defaults to true size.</li>
<li><em>(optional)</em> <tt>alt</tt> - Alt text for the image -- needed for xhtml compliance. Defaults to filename.</li>
<li><em>(optional)</em> <tt>class</tt> - CSS class for the image.</li>
<li><em>(optional)</em> <tt>title</tt> - Mouse over text for the image. Defaults to Alt text.</li>
<li><em>(optional)</em> <tt>addtext</tt> - Additional text to put into the tag</li>
</ul>';
$lang['admin']['help_function_html_blob'] = '<h3>Ką jis daro?</h3>
<p>See the help for global_content for a description.</p>';
$lang['admin']['help_function_google_search'] = '<h3>Ką jis daro?</h3>
<p>Search's your website using Google's search engine.</p>
<h3>Kaip jį naudoti?</h3>
<p>Just insert the tag into your template/page like: <code>{google_search}</code><br>
<br>
Note: Google needs to have your website indexed for this to work. You can submit your website to google <a href="http://www.google.com/addurl.html">here</a>.</p>
<h3>What if I want to change the look of the textbox or button?</h3>
<p>The look of the textbox and button can be changed via css. The textbox is given an id of textSearch and the button is given an id of buttonSearch.</p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)</em> domain - This tells google the website domain to search. This script tries to determine this automatically.</li>
<li><em>(optional)</em> buttonText - The text you want to display on the search button. The default is "Search Site".</li>
</ul>
</p>';
$lang['admin']['help_function_global_content'] = '<h3>Ką jis daro?</h3>
<p>Inserts a global content block into your template or page.</p>
<h3>Kaip jį naudoti?</h3>
<p>Just insert the tag into your template/page like: <code>{global_content name='myblob'}</code>, where name is the name given to the block when it was created.</p>
<h3>What parameters does it take?</h3>
<ul>
<li>name - The name of the global content block to display.</li>
</ul>';
$lang['admin']['help_function_get_template_vars'] = ' <h3>Ką jis daro?</h3>
<p>Dumps all the known smarty variables into your page</p>
<h3>Kaip jį naudoti?</h3>
<p>Just insert the tag into your template/page like: <code>{get_template_vars}</code></p>
<h3>What parameters does it take?</h3>
<p>None at this time</p>';
$lang['admin']['help_function_uploads_url'] = ' <h3>What does this do?</h3>
<p>Prints the uploads url location for the site.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{uploads_url}</code></p>
<h3>What parameters does it take?</h3>
<p><em>(optional)</em> assign (string) - Assign the results to a smarty variable with that name.</p>';
$lang['admin']['help_function_embed'] = '<h3>Ką jis daro?</h3>
<p>Enable inclusion (embeding) of any other application into the CMS. The most usual use could be a forum.
This implementation is using IFRAMES so older browsers can have problems. Sorry bu this is the only known way
that works without modifing the embeded application.</p>
<h3>Kaip jį naudoti?</h3>
<p>Just insert the tag into your template/page like: <code>{embed url=http://www.google.com/}</code><br></p>
<h4>Example to make the iframe larger</h4>
<p>Add the following to your style sheet:</p>
<pre>#myframe { height: 600px; }</pre>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(required)</em>url - the url to be included
<li><em>(optional)</em>header=true - this will generate the header code for good resizing of the IFRAME.</li>
</ul>
<p>You must include in your page content {embed url=..} and in the "Metadata:" section (advanced tab) you must put {embed header=true}. Also be sure to put this in between the "head" tags of your template: {metadata}</p>';
$lang['admin']['help_function_description'] = '<h3>Ką jis daro?</h3>
<p>Prints the description (title attribute) of the page.</p>
<h3>Kaip jį naudoti?</h3>
<p>Just insert the tag into your template/page like: <code>{description}</code></p>
<h3>What parameters does it take?</h3>
<p>None at this time.</p>';
$lang['admin']['help_function_created_date'] = '<h3>Ką jis daro?</h3>
<p>Prints the date and time the page was created. If no format is given, it will default to a format similar to 'Jan 01, 2004'.</p>
<h3>Kaip jį naudoti?</h3>
<p>Just insert the tag into your template/page like: <code>{created_date format="%A %d-%b-%y %T %Z"}</code></p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)</em>format - Date/Time format using parameters from php's strftime function. See <a href="http://php.net/strftime" target="_blank">here</a> for a parameter list and information.</li>
</ul>';
$lang['admin']['help_function_content'] = '<h3>Ką jis daro?</h3>
<p>This is where the content for your page will be displayed. It's inserted into the template and changed based on the current page being displayed.</p>
<h3>Kaip jį naudoti?</h3>
<p>Just insert the tag into your template like: <code>{content}</code>.</p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)</em>block - Allows you to have more than one content block per page. When multiple content tags are put on a template, that number of edit boxes will be displayed when the page is edited.
<p>Example:</p>
<pre>{content block="Second Content Block"}</pre>
<p>Now, when you edit a page there will a textarea called "Second Content Block".</li>
<li><em>(optional)</em>wysiwyg (true/false) - If set to false, then a wysiwyg will never be used while editing this block. If true, then it acts as normal. Only works when block parameter is used.</li>
<li><em>(optional)</em>oneline (true/false) - If set to true, then only one edit line will be shown while editing this block. If false, then it acts as normal. Only works when block parameter is used.</li>
<li><em>(optional)</em>assign - Assigns the content to a smarty parameter, which you can then use in other areas of the page, or use to test whether content exists in it or not.
<p>Example of passing page content to a User Defined Tag as a parameter:</p>
<pre>
{content assign=pagecontent}
{table_of_contents thepagecontent="$pagecontent"}
</pre>
</li>
</ul>';
$lang['admin']['help_function_contact_form'] = ' <h2>NOTE: This plugin is deprecated</h2>
<p>This smarty plugin is deprecated, and may not be included with further versions of CMS Made Simple. We recommend you use the formbuilder module and it's included contact form.</p>
<h3>Ką jis daro?</h3>
<p>Display's a contact form. This can be used to allow others to send an email message to the address specified.</p>
<h3>Kaip jį naudoti?</h3>
<p>Just insert the tag into your template/page like: <code>{contact_form email="yourname@yourdomain.com"}</code><br>
<br>
If you would like to send an email to multiple adresses, seperate each address with a comma.</p>
<h3>What parameters does it take?</h3>
<ul>
<li>email - The email address that the message will be sent to.</li>
<li><em>(optional)</em>style - true/false, use the predefined styles. Default is true.</li>
<li><em>(optional)</em>subject_get_var - string, allows you to specify which _GET var to use as the default value for subject.
<p>Example:</p>
<pre>{contact_form email="yourname@yourdomain.com" subject_get_var="subject"}</pre>
<p>Then call the page with the form on it like this: /index.php?page=contact&subject=test+subject</p>
<p>And the following will appear in the "Subject" box: "test subject"
</li>
<li><em>(optional)</em>captcha - true/false, use Captcha response test (Captcha module must be installed). Default is false.</li>
</ul>
</p>';
$lang['admin']['help_function_cms_versionname'] = '<h3>Ką jis daro?</h3>
<p>This tag is used to insert the current version name of CMS into your template or page. It doesn't display any extra besides the version name.</p>
<h3>Kaip jį naudoti?</h3>
<p>This is just a basic tag plugin. You would insert it into your template or page like so: <code>{cms_versionname}</code>
<h3>What parameters does it take?</h3>
<p>It takes no parameters.</p>';
$lang['admin']['help_function_cms_version'] = ' <h3>Ką jis daro?</h3>
<p>This tag is used to insert the current version number of CMS into your template or page. It doesn't display any extra besides the version number.</p>
<h3>Kaip jį naudoti?</h3>
<p>This is just a basic tag plugin. You would insert it into your template or page like so: <code>{cms_version}</code>
<h3>What parameters does it take?</h3>
<p>It takes no parameters.</p>';
$lang['admin']['about_function_cms_selflink'] = ' <p>Author: Ted Kulp <tedkulp@users.sf.net></p>
<p>Version: 1.1</p>
<p>Modified: Martin B. Vestergaard <mbv@nospam.dk></p>
<p>Version: 1.41</p>
<p>Modified: Russ Baldwin</p>
<p>Version: 1.42</p>
<p>Modified: Marcus Bointon <coolbru@users.sf.net></p>
<p>Version: 1.43</p>
<p>Modified: Tatu Wikman <tsw@backspace.fi></p>
<p>Version: 1.44</p>
<p>Modified: Hans Mogren <http://hans.bymarken.net/></p>
<p>Version: 1.45</p>
<p>
Change History:<br/>
1.46 - Fixes a problem with too many queries when using the dir=start option.<br/>
1.45 - Added a new option for "dir", "up", for links to the parent page e.g. dir="up" (Hans Mogren).<br />
1.44 - Added new parameters "ext" and "ext_info" to allow external links with class="external" and info text after the link, ugly hack but works thinking about rewriting this(Tatu Wikman)<br />
1.43 - Added new parameters "image" and "imageonly" to allow attachment of images to be used for page links, either instead of or in addition to text links. (Marcus Bointon)<br />
1.42 - Added new parameter "anchorlink" and a new option for "dir" namely, "anchor", for internal page links. e.g. dir="anchor" anchorlink="internal_link". (Russ)<br />
1.41 - added new parameter "href" (LeisureLarry)<br />
1.4 - fixed bug next/prev linking to non-content pages. (Thanks Teemu Koistinen for this fix)<br />
1.3 - added option "more"<br />
1.2 - by Martin B. Vestergaard
<ul>
<li>changed default text to Page Name (was Page Alias)</li>
<li>added option dir=next/prev to display next or previous item in the hirachy - thanks to 100rk</li>
<li>added option class to add a class= statement to the a-tag.</li>
<li>added option menu to display menu-text in sted of Page Name</li>
<li>added option lang to display link-labels in different languages</li>
</ul>
1.1 - Changed to new content system<br />
1.0 - Initial release
</p>';
$lang['admin']['help_function_cms_selflink'] = ' <h3>Ką jis daro?</h3>
<p>Creates a link to another CMSMS content page inside your template or content. Can also be used for external links with the ext parameter.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{cms_selflink page="1"}</code> or <code>{cms_selflink page="alias"}</code></p>
<h3>What parameters does it take?</h3>
<p>
<ul>
<li><em>(optional)</em> <tt>page</tt> - Page ID or alias to link to.</li>
<li><em>(optional)</em> <tt>dir anchor (internal links)</tt> - New option for an internal page link. If this is used then <tt>anchorlink</tt> should be set to your link. </li> <!-- Russ - 25-04-2006 -->
<li><em>(optional)</em> <tt>anchorlink</tt> - New paramater for an internal page link. If this is used then <tt>dir ="anchor"</tt> should also be set. No need to add the #, because it is added automatically.</li> <!-- Russ - 25-04-2006 -->
<li><em>(optional)</em> <tt>urlparam</tt> - Specify additional parameters to the URL. <strong>Do not use this in conjunction with the <em>anchorlink</em> parameter</em></strong>
<li><em>(optional)</em> <tt>tabindex ="a value"</tt> - Set a tabindex for the link.</li> <!-- Russ - 22-06-2005 -->
<li><em>(optional)</em> <tt>dir start/next/prev/up (previous)</tt> - Links to the default start page or the next or previous page, or the parent page (up). If this is used <tt>page</tt> should not be set.</li> <!-- mbv - 21-06-2005 -->
<B>Note!</B> Only one of the above may be used in the same cms_selflink statement!!
<li><em>(optional)</em> <tt>text</tt> - Text to show for the link. If not given, the Page Name is used instead.</li>
<li><em>(optional)</em> <tt>menu 1/0</tt> - If 1 the Menu Text is used for the link text instead of the Page Name</li> <!-- mbv - 21-06-2005 -->
<li><em>(optional)</em> <tt>target</tt> - Optional target for the a link to point to. Useful for frame and javascript situations.</li>
<li><em>(optional)</em> <tt>class</tt> - Class for the <a> link. Useful for styling the link.</li> <!-- mbv - 21-06-2005 -->
<li><em>(optional)</em> <tt>lang</tt> - Display link-labels ("Next Page"/"Previous Page") in different languages (0 for no label.) Danish (dk), English (en) or French (fr), for now.</li> <!-- mbv - 21-06-2005 -->
<li><em>(optional)</em> <tt>id</tt> - Optional css_id for the <a> link.</li> <!-- mbv - 29-06-2005 -->
<li><em>(optional)</em> <tt>more</tt> - place additional options inside the <a> link.</li> <!-- mbv - 29-06-2005 -->
<li><em>(optional)</em> <tt>label</tt> - Label to use in with the link if applicable.</li>
<li><em>(optional)</em> <tt>label_side left/right</tt> - Side of link to place the label (defaults to "left").</li>
<li><em>(optional)</em> <tt>title</tt> - Text to use in the title attribute. If none is given, then the title of the page will be used for the title.</li>
<li><em>(optional)</em> <tt>rellink 1/0</tt> - Make a relational link for accessible navigation. Only works if the dir parameter is set and should only go in the head section of a template.</li>
<li><em>(optional)</em> <tt>href</tt> - If href is used only the href value is generated (no other parameters possible). <strong>Example:</strong> <a href="{cms_selflink href="alias"}"><img src=""></a></li>
<li><em>(optional)</em> <tt>image</tt> - A url of an image to use in the link. <strong>Example:</strong> {cms_selflink dir="next" image="next.png" text="Next"}</li>
<li><em>(optional)</em> <tt>alt</tt> - Alternative text to be used with image (alt="" will be used if no alt parameter is given).</li>
<li><em>(optional)</em> <tt>imageonly</tt> - If using an image, whether to suppress display of text links. If you want no text in the link at all, also set lang=0 to suppress the label. <B>Example:</B> {cms_selflink dir="next" image="next.png" text="Next" imageonly=1}</li>
<li><em>(optional)</em> <tt>ext</tt> - For external links, will add class="external and info text. <strong>warning:</strong> only text, target and title parameters are compatible with this parameter</li>
<li><em>(optional)</em> <tt>ext_info</tt> - Used together with "ext" defaults to (external link)</li>
</ul>
</p>';
$lang['admin']['about_function_cms_module'] = ' <p>Author: Ted Kulp<tedkulp@users.sf.net></p>
<p>Version: 1.0</p>
<p>
Change History:<br/>
None
</p>';
$lang['admin']['help_function_cms_module'] = '<h3>Ką jis daro?</h3>
<p>This tag is used to insert modules into your templates and pages. If a module is created to be used as a tag plugin (check it's help for details), then you should be able to insert it with this tag.</p>
<h3>Kaip jį naudoti?</h3>
<p>It's just a basic tag plugin. You would insert it into your template or page like so: <code>{cms_module module="somemodulename"}</code>
<h3>What parameters does it take?</h3>
<p>There is only one required parameter. All other parameters are passed on to the module.
<ul>
<li>module - Name of the module to insert. This is not case sensitive.</li>
</ul>
</p>';
$lang['admin']['about_function_breadcrumbs'] = '<p>Author: Marcus Deglos <<a href="mailto:md@zioncore.com">md@zioncore.com</a>></p>
<p>Version: 1.7</p>
<p>
Change History:<br/>
1.1 - Modified to use new content rewrite (wishy)<br />
1.2 - Added parameters: delimiter, initial, and root (arl)<br />
1.3 - Added parameter: classid (tdh / perl4ever)<br />
1.4 - Added parameter currentclassid and fixed some bugs (arl)<br />
1.5 - Modified to use new hierarchy manager<br />
1.6 - Modified to skip any parents that are marked to be "not shown in menu" except for root<br />
1.7 - Added root_url parameter (elijahlofgren)<br />
</p>';
$lang['admin']['help_function_breadcrumbs'] = '<h3>Ką jis daro?</h3>
<p>Prints a breadcrumb trail .</p>
<h3>Kaip jį naudoti?</h3>
<p>Just insert the tag into your template/page like: <code>{breadcrumbs}</code></p>
<h3>What parameters does it take?</h3>
<p>
<ul>
<li><em>(optional)</em> <tt>delimiter</tt> - Text to seperate entries in the list (default ">>").</li>
<li><em>(optional)</em> <tt>initial</tt> - 1/0 If set to 1 start the breadcrumbs with a delimiter (default 0).</li>
<li><em>(optional)</em> <tt>root</tt> - Page alias of a page you want to always appear as the first page in
the list. Can be used to make a page (e.g. the front page) appear to be the root of everything even though it is not.</li>
<li><em>(optional)</em> <tt>root_url</tt> - Override the URL of the root page. Useful for making link be to '/' instead of '/home/'. This requires that the root page be set as the default page.</li>
<li><em>(optional)</em> <tt>classid</tt> - The CSS class for the non current page names, i.e. the first n-1 pages in the list. If the name is a link it is added to the <a href> tags, otherwise it is added to the <span> tags.</li>
<li><em>(optional)</em> <tt>currentclassid</tt> - The CSS class for the <span> tag surrounding the current page name.</li>
<li><em>(optional)</em> <tt>starttext</tt> - Text to append to the front of the breadcrumbs list, something like "You are here".</li>
</ul>
</p>';
$lang['admin']['about_function_anchor'] = ' <p>Author: Ted Kulp<tedkulp@users.sf.net></p>
<p>Version: 1.1</p>
<p>
Change History:<br/>
<strong>Update to version 1.1 from 1.0</strong> <em>2006/07/19</em><br/>
Russ added the means to insert a title, a tabindex and a class for the anchor link. Westis added accesskey and changed parameter names to not include 'anchorlink'.<br/>
</hr>
</p>';
$lang['admin']['help_function_anchor'] = '<h3>Ką jis daro?</h3>
<p>Makes a proper anchor link.</p>
<h3>Kaip jį naudoti?</h3>
<p>Just insert the tag into your template/page like: <code>{anchor anchor='here' text='Scroll Down'}</code></p>
<h3>What parameters does it take?</h3>
<p>
<ul>
<li><tt>anchor</tt> - Where we are linking to. The part after the #.</li>
<li><tt>text</tt> - The text to display in the link.</li>
<li><tt>class</tt> - The class for the link, if any</li>
<li><tt>title</tt> - The title to display for the link, if any.</li>
<li><tt>tabindex</tt> - The numeric tabindex for the link, if any.</li>
<li><tt>accesskey</tt> - The accesskey for the link, if any.</li>
<li><em>(optional)</em> <tt>onlyhref</tt> - Only display the href and not the entire link. No other options will work</li>
</ul>
</p>';
$lang['admin']['help_function_site_mapper'] = '<h3>Ką jis daro?</h3>
<p>This is actually just a wrapper tag for the <a href="listmodules.php?action=showmodulehelp&module=MenuManager">Menu Manager module</a> to make the tag syntax easier, and to simplify creating a sitemap.</p>
<h3>Kaip jį naudoti?</h3>
<p>Just put <code>{site_mapper}</code> on a page or in a template. For help about the Menu Manager module, what parameters it takes etc., please refer to the <a href="listmodules.php?action=showmodulehelp&module=MenuManager">Menu Manager module help</a>.</p>
<p>By default, if no template option is specified the minimal_menu.tpl file will be used.</p>
<p>Any parameters used in the tag are available in the menumanager template as <code>{$menuparams.paramname}</code></p>';
$lang['admin']['help_function_redirect_url'] = '<h3>Ką jis daro?</h3>
<p>This plugin allows you to easily redirect to a specified url. It is handy inside of smarty conditional logic (for example, redirect to a splash page if the site is not live yet).</p>
<h3>Kaip jį naudoti?</h3>
<p>Simply insert this tage into your page or template: <code>{redirect_url to='www.cmsmadesimple.org'}</code></p>';
$lang['admin']['help_function_redirect_page'] = '<h3>Ką jis daro?</h3>
<p>This plugin allows you to easily redirect to another page. It is handy inside of smarty conditional logic (for example, redirect to a login page if the user is not logged in.)</p>
<h3>Kaip jį naudoti?</h3>
<p>Simply insert this tage into your page or template: <code>{redirect_page page='some-page-alias'}</code></p>';
$lang['admin']['help_function_cms_jquery'] = '<h3>What does this do?</h3>
<p>This plugin allows you output the javascript libraries and plugins used from the admin.</p>
<h3>How do I use it?</h3>
<p>Simply insert this tag into your page or template: <code>{cms_jquery}</code></p>
<h3>Sample</h3>
<pre><code>{cms_jquery cdn='true' exclude='jquery.ui.nestedSortable.js' append='uploads/NCleanBlue/js/ie6fix.js'}</code></pre>
<h4><em>Outputs</em></h4>
<pre><code><script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/jquery-ui.min.js"></script>
<script type="text/javascript" src="http://localhost/1.10.x/lib/jquery/js/jquery.json-2.3.js"></script>
<script type="text/javascript" src="uploads/NCleanBlue/js/ie6fix.js"></script>
</code></pre>
<h3><em>Included Defaults</em></h3>
<ul>
<li><tt>jQuery</tt><em>(1.7.2)</em> - jquery.min.js</li>
<li><tt>jQuery UI</tt><em>(1.8.21)</em> - jquery-ui.min.js</li>
<li><tt>nestedSortable</tt>(1.3.4) - jquery.ui.nestedSortable.js</li>
<li><tt>jQuery json</tt><em>(2.3)</em> - jquery.json.min.js</li>
</ul>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional) </em><tt>exclude</tt> - use comma seperated value(CSV) list of scripts you would like to exclude. <code>'jquery.ui.nestedSortable.js,jquery.json.min.js'</code></li>
<li><em>(optional) </em><tt>append</tt> - use comma seperated value(CSV) list of script paths you would like to append. <code>'/uploads/jquery.ui.nestedSortable.js,http://code.jquery.com/jquery-1.7.1.min.js'</code></li>
<li><em>(optional) </em><tt>cdn</tt> - cdn='true' will insert jQuery and jQueryUI Frameworks using Google's Content Delivery Netwok. Default is false.</li>
<li><em>(optional) </em><tt>ssl</tt> - use to use the ssl_url as the base path.</li>
<li><em>(optional) </em><tt>custom_root</tt> - use to set any base path wished.<code>custom_root='http://test.domain.com/'</code> <br/>NOTE: overwrites ssl option and works with the cdn option</li>
<li><em>(optional)</em> <tt>assign</tt> - Assign the results to the named smarty variable.</li>
</ul>
';
$lang['admin']['of'] = 'iš';
$lang['admin']['first'] = 'Pirmas';
$lang['admin']['last'] = 'Paskutinis';
$lang['admin']['adminspecialgroup'] = 'Įspėjimas: Šios grupės narys automatiškai turės visas teises';
$lang['admin']['disablesafemodewarning'] = 'Paslėpti įspėjimus apie 'safe mode' rėžimą';
$lang['admin']['date_format_string'] = 'Datos formatas';
$lang['admin']['date_format_string_help'] = 'formatas funkcijai <em>strftime</em>';
$lang['admin']['last_modified_at'] = 'Paskutinį kartą redaguota';
$lang['admin']['last_modified_by'] = 'Paskutinis redagavo';
$lang['admin']['read'] = 'Skaityti';
$lang['admin']['write'] = 'Rašyti';
$lang['admin']['execute'] = 'Atlikti';
$lang['admin']['group'] = 'Grupė';
$lang['admin']['other'] = 'Kita';
$lang['admin']['event_desc_moduleupgraded'] = 'Siųsti po modulio atnaujinimo';
$lang['admin']['event_help_moduleupgraded'] = '<p>Sent after a module is upgraded.</p>';
$lang['admin']['event_desc_moduleinstalled'] = 'Siųsti po modulio įdiegimo';
$lang['admin']['event_help_moduleinstalled'] = '<p>Sent after a module is installed.</p>';
$lang['admin']['event_desc_moduleuninstalled'] = 'Siųsti po modulio pašalinimo';
$lang['admin']['event_help_moduleuninstalled'] = '<p>Sent after a module is uninstalled.</p>';
$lang['admin']['event_desc_edituserdefinedtagpost'] = 'Siųsti po naudotojo aprašytos žymių atnaujinimo';
$lang['admin']['event_help_edituserdefinedtagpost'] = '<p>Sent after a user defined tag is updated.</p>';
$lang['admin']['event_desc_edituserdefinedtagpre'] = 'Siųsti po ankstesnių naudotojo aprašytos žymių atnaujinimo';
$lang['admin']['event_help_edituserdefinedtagpre'] = '<p>Sent prior to a user defined tag update.</p>';
$lang['admin']['event_desc_deleteuserdefinedtagpre'] = 'Siųsti po ankstesnių naudotojo aprašytos žymių ištrynimo';
$lang['admin']['event_help_deleteuserdefinedtagpre'] = '<p>Sent prior to deleting a user defined tag.</p>';
$lang['admin']['event_desc_deleteuserdefinedtagpost'] = 'Siųsti po naudotojo aprašytos žymių ištrynimo';
$lang['admin']['event_help_deleteuserdefinedtagpost'] = '<p>Sent after a user defined tag is deleted.</p>';
$lang['admin']['event_desc_adduserdefinedtagpost'] = 'Siųsti po naudotojo aprašytos žymių įterpimo';
$lang['admin']['event_help_adduserdefinedtagpre'] = '<p>Sent after a user defined tag is inserted.</p>';
$lang['admin']['event_desc_adduserdefinedtagpre'] = 'Siųsti po ankstesnių naudotojo aprašytos žymių įterpimo';
$lang['admin']['event_help_adduserdefinedtagpost'] = '<p>Sent prior to a user defined tag insert.</p>';
$lang['admin']['global_umask'] = 'Failų kūrimo taisyklės (umask)';
$lang['admin']['errorcantcreatefile'] = 'Nepavyko sukurti failo (teisių problema?)';
$lang['admin']['errormoduleversionincompatible'] = 'Modulis nesuderinamas su šia CMS versija';
$lang['admin']['errormodulenotloaded'] = 'Sistemos klaida. Modulis neįvykdytas';
$lang['admin']['errormodulenotfound'] = 'Sistemos klaida. Modulis nerastas';
$lang['admin']['errorinstallfailed'] = 'Modulio įdiegimas nepavyko';
$lang['admin']['errormodulewontload'] = 'Problema vykdant esamą modulį';
$lang['admin']['frontendlang'] = 'Kalba pagal nutylėjimą';
$lang['admin']['info_edituser_password'] = 'Redaguokite šį lauką norėdami pakeisti naudotojo slaptažodį';
$lang['admin']['info_edituser_passwordagain'] = 'Redaguokite šį lauką norėdami pakeisti naudotojo slaptažodį';
$lang['admin']['originator'] = 'Sukūrėjas';
$lang['admin']['module_name'] = 'Modulio pavadinimas';
$lang['admin']['event_name'] = 'Įvykio pavadinimas';
$lang['admin']['event_description'] = 'Įvykio aprašymas';
$lang['admin']['error_delete_default_parent'] = 'Negalima pašalinti pagrindinio tinklapio arba jo tėvinio elemento.';
$lang['admin']['jsdisabled'] = 'Atsiprašome, ši funkcija reikalauja, kad Javascript būtų įjungtas.';
$lang['admin']['order'] = 'Rikiuoti';
$lang['admin']['reorderpages'] = 'Perrikiuoti tinklapius';
$lang['admin']['reorder'] = 'Perrikiuoti';
$lang['admin']['page_reordered'] = 'Tinklapis sėkmigai perrikiuotas.';
$lang['admin']['pages_reordered'] = 'Tinklapiai sėkmigai perrikiuoti.';
$lang['admin']['sibling_duplicate_order'] = 'Du to paties tėvo vaikiniai elementai negali turėti to paties eilės numerio. Tinklapiai nebuvo perrikiuoti.';
$lang['admin']['no_orders_changed'] = 'Jūs pasirinkote perrikiuoti tinklapius, tačiau nepakeitėte nė vieno jų eilės numerio. Tinklapiai nebuvo perrikiuoti.';
$lang['admin']['order_too_small'] = 'Tinklapio eilės numeris negali būti nulinis. Tinklapiai nebuvo perrikiuoti.';
$lang['admin']['order_too_large'] = 'Tinklapio eilės numeris negali būti didesnis nei to lygio elementų kiekis. Tinklapiai nebuvo perrikiuoti.';
$lang['admin']['user_tag'] = 'Naudotojo žymė';
$lang['admin']['add'] = 'Pridėti';
$lang['admin']['CSS'] = 'CSS';
$lang['admin']['about'] = 'Apie';
$lang['admin']['action'] = 'Veiksmas';
$lang['admin']['actionstatus'] = 'Veiksmas/Būsena';
$lang['admin']['active'] = 'Aktyvus';
$lang['admin']['addcontent'] = 'Įdėti turinį';
$lang['admin']['cantremove'] = 'Negalima pašalinti';
$lang['admin']['changepermissions'] = 'Pakeisti teises';
$lang['admin']['changepermissionsconfirm'] = 'DĖMESIO\n\nŠis veiksmas bandys užtikrinti, kad web serveris turi rašymo teises į visus modulį sudarančius failus.\nAr tikrai norite tęsti?';
$lang['admin']['contentadded'] = 'Turinys sėkmingai išsaugotas duomenų bazėje.';
$lang['admin']['contentupdated'] = 'Turinys sėkmingai atnaujintas';
$lang['admin']['contentdeleted'] = 'Turinys sėkmingai pašalintas iš duomenų bazės.';
$lang['admin']['success'] = 'Įvykdyta sėkmingai';
$lang['admin']['addcss'] = 'Įdėti CSS';
$lang['admin']['addgroup'] = 'Įdėti naują grupę';
$lang['admin']['additionaleditors'] = 'Papildomi redaguotojai';
$lang['admin']['addtemplate'] = 'Įdėti šabloną';
$lang['admin']['adduser'] = 'Įdėti naudotoją';
$lang['admin']['addusertag'] = 'Įdėti naudotojo sukurtą žymę (Tag)';
$lang['admin']['adminaccess'] = 'Leidimas prisijungti administratoriaus teisėmis';
$lang['admin']['adminlog'] = 'Administratoriaus žurnalas';
$lang['admin']['adminlogcleared'] = 'Admino Log sėkmingai išvalytas';
$lang['admin']['adminlogempty'] = 'Admino Log tuščias';
$lang['admin']['adminsystemtitle'] = 'TVS administravimo sistema';
$lang['admin']['adminpaneltitle'] = 'CMS Made Simple valdymas';
$lang['admin']['advanced'] = 'Detaliau';
$lang['admin']['aliasalreadyused'] = 'Pateiktas trumpinys jau panaudotas kitam tinklapiui. Pakeiskte jį kokiu nors kitu.';
$lang['admin']['aliasmustbelettersandnumbers'] = 'Trumpinį turi sudaryti raidės ir skaitmenys';
$lang['admin']['aliasnotaninteger'] = 'Trumpinys negali būti sudarytas vien tik iš skaitmenų';
$lang['admin']['allpagesmodified'] = 'Visi tinklapiai pakeisti!';
$lang['admin']['assignments'] = 'Priskirti naudotojus';
$lang['admin']['associationexists'] = 'Šis sąryšis jau egzistuoja';
$lang['admin']['autoinstallupgrade'] = 'Automatiškai įdiegti arba atnaujinti';
$lang['admin']['back'] = 'Atgal į meniu';
$lang['admin']['backtoplugins'] = 'Atgal į priedų sąrašą';
$lang['admin']['cancel'] = 'Atsisakyti';
$lang['admin']['cantchmodfiles'] = 'Nepavyko pakeisti kai kurių failų teisių';
$lang['admin']['cantremovefiles'] = 'Problema šalinant failus (teisių problema?)';
$lang['admin']['confirmcancel'] = 'Ar tikrai norite atšaukti pakeitimus? Paspauskite „Gerai“, jeigu norite atšaukti pakeitimus. Spauskite „Atsisakyti“, jeigu norite tęsti redagavimą.';
$lang['admin']['canceldescription'] = 'Atšaukti pakeitimus';
$lang['admin']['clearadminlog'] = 'Išvalyti administratoriaus žurnalą';
$lang['admin']['code'] = 'Kodas';
$lang['admin']['confirmdefault'] = 'Ar tikrai norite nustatyti „%s“ kaip svetainės pagrindinį tinklapį?';
$lang['admin']['confirmdeletedir'] = 'Ar tikrai norite pašalinti šį aplanką ir visą jame esantį turinį?';
$lang['admin']['content'] = 'Turinys';
$lang['admin']['contentmanagement'] = 'Turinio valdymas';
$lang['admin']['contenttype'] = 'Turinio tipas';
$lang['admin']['copy'] = 'Kopijuoti';
$lang['admin']['copytemplate'] = 'Kopijuoti šabloną';
$lang['admin']['create'] = 'Sukurti';
$lang['admin']['createnewfolder'] = 'Sukurti naują aplanką';
$lang['admin']['cssalreadyused'] = 'Toks CSS pavadinimas jau egzistuoja';
$lang['admin']['cssmanagement'] = 'CSS valdymas';
$lang['admin']['currentassociations'] = 'Sukurti sąryšiai';
$lang['admin']['currentdirectory'] = 'Sukurti aplankai';
$lang['admin']['currentgroups'] = 'Sukurtos grupės';
$lang['admin']['currentpages'] = 'Sukurti tinklapiai';
$lang['admin']['currenttemplates'] = 'Sukurti šablonai';
$lang['admin']['currentusers'] = 'Sukurti naudotojai';
$lang['admin']['custom404'] = '404 klaidos pranešimas';
$lang['admin']['database'] = 'Duomenų bazė';
$lang['admin']['databaseprefix'] = 'Duomenų bazės prefiksas';
$lang['admin']['databasetype'] = 'Duomenų bazės tipas';
$lang['admin']['date'] = 'Data';
$lang['admin']['default'] = 'Pagrindinis';
$lang['admin']['delete'] = 'Šalinti';
$lang['admin']['deleteconfirm'] = 'Ar tikrai norite pašalinti „%s“?';
$lang['admin']['deleteassociationconfirm'] = 'Ar tikrai norite pašalinti susiejimą su „%s“?';
$lang['admin']['deletecss'] = 'Pašalinti CSS';
$lang['admin']['dependencies'] = 'Priklausomybės';
$lang['admin']['description'] = 'Aprašymas';
$lang['admin']['directoryexists'] = 'Toks aplankas jau egzistuota.';
$lang['admin']['down'] = 'Žemyn';
$lang['admin']['edit'] = 'Redaguoti';
$lang['admin']['editconfiguration'] = 'Redaguoti nuostatas';
$lang['admin']['editcontent'] = 'Redaguoti turinį';
$lang['admin']['editcss'] = 'Redaguoti pakopinių stilių aprašą';
$lang['admin']['editcsssuccess'] = 'Pakopinių stilių aprašas atnaujintas';
$lang['admin']['editgroup'] = 'Redaguoti grupę';
$lang['admin']['editpage'] = 'Redaguoti tinklapį';
$lang['admin']['edittemplate'] = 'Redaguoti šabloną';
$lang['admin']['edittemplatesuccess'] = 'Šablonas atnaujintas';
$lang['admin']['edituser'] = 'Redaguoti naudotoją';
$lang['admin']['editusertag'] = 'Redaguoti naudotojo sukurtą žymę (Tag)';
$lang['admin']['usertagadded'] = 'Naudotojo žymė (Tag) buvo sėkmingai sukurta.';
$lang['admin']['usertagupdated'] = 'Naudotojo žymė (Tag) buvo sėkmingai atnaujinta.';
$lang['admin']['usertagdeleted'] = 'Naudotojo žymė (Tag) buvo sėkmingai pašalinta.';
$lang['admin']['email'] = 'E. pašto adresas';
$lang['admin']['errorattempteddowngrade'] = 'Sistemoje yra įdiegta naujesnė šio modulio versija. Veiksmas atšauktas';
$lang['admin']['errorchildcontent'] = 'Turinys vis dar turi vaikinį turinį. Pirma pašalinkite vaikinį turinį.';
$lang['admin']['errorcopyingtemplate'] = 'Klaida kopijuojant šabloną';
$lang['admin']['errorcouldnotparsexml'] = 'Klaida apdorojant XML failą';
$lang['admin']['errorcreatingassociation'] = 'Klaida kuriant sąryšį';
$lang['admin']['errorcssinuse'] = 'Šį pakopinių stilių aprašą vis dar naudoja šablonas arba tinklapis. Pirma panaikinkite sąryšius.';
$lang['admin']['errordefaultpage'] = 'Negalima pašalinti pagrindinio tinklapio. Nustatykite kitą pagrindinį tinklapį.';
$lang['admin']['errordeletingassociation'] = 'Klaida šalinant susiejimą';
$lang['admin']['errordeletingcss'] = 'Klaida šalinant CSS';
$lang['admin']['errordeletingdirectory'] = 'Nepavyko pašalinti aplanko. Leidimų (teisių) problema?';
$lang['admin']['errordeletingfile'] = 'Nepavyko pašalinti failo. Leidimų (teisių) problema?';
$lang['admin']['errordirectorynotwritable'] = 'Nėra leidimo (teisės) rašyti į aplanką';
$lang['admin']['errordtdmismatch'] = 'Nenurodyta arba nesuderinama DTD versija XML faile';
$lang['admin']['errorgettingcssname'] = 'Klaida gaunant pakopinių stilių aprašo pavadinimą';
$lang['admin']['errorgettingtemplatename'] = 'Klaida gaunant šablono pavadinimą';
$lang['admin']['errorincompletexml'] = 'XML failas nepilnas arba jame yra klaida';
$lang['admin']['uploadxmlfile'] = 'Įdiegti modulį iš XML failo';
$lang['admin']['cachenotwritable'] = 'Trūksta rašymo teisių podėlio aplankui. Nepavyks išvalyti šio aplanko turinio. Suteikite aplankui tmp/cache pilnas skaitymo/rašymo/vykdymo teises (chmod 777). Taip pat gali tekti išjungti „safe mode“.';
$lang['admin']['error_nomodules'] = 'No modules installed! Check Extensions > Modules';
$lang['admin']['modulesnotwritable'] = 'Trūksta rašymo teisių modulių <em>(ir/arba įkeliamų failų)</em> aplankui. Jei norėsite diegti modulius iš XML failų, turite suteikti pilnas skaitymo/rašymo/vykdymo teises (chmod 777) šiems aplankams. Taip pat gali tekti išjungti „safe mode“.';
$lang['admin']['noxmlfileuploaded'] = 'Neįkeltas joks failas. Norėdami įdiegti modulį naudodami XML, turite iš savo kompiuterio įkelti modulio .xml failą.';
$lang['admin']['errorinsertingcss'] = 'Klaida įterpiant pakopinių stilių aprašą';
$lang['admin']['errorinsertinggroup'] = 'Klaida įterpiant grupę';
$lang['admin']['errorinsertingtag'] = 'Klaida įterpiant naudotojo žymę (Tag)';
$lang['admin']['errorinsertingtemplate'] = 'Klaida įterpiant šabloną';
$lang['admin']['errorinsertinguser'] = 'Klaida įterpiant naudotoją';
$lang['admin']['errornofilesexported'] = 'Klaida eksportuojant failus į xml';
$lang['admin']['errorretrievingcss'] = 'Klaida gaunant pakopinių stilių aprašą';
$lang['admin']['errorretrievingtemplate'] = 'Klaida gaunant šabloną';
$lang['admin']['errortemplateinuse'] = 'Šis šablonas vis dar naudojamas tinklapiui. Pirma pašalinkite tinklapį.';
$lang['admin']['errorupdatingcss'] = 'Klaida atnaujinant pakopinių stilių aprašą';
$lang['admin']['errorupdatinggroup'] = 'Klaida atnaujinant grupę';
$lang['admin']['errorupdatingpages'] = 'Klaida atnaujinant tinklapius';
$lang['admin']['errorupdatingtemplate'] = 'Klaida atnaujinant šabloną';
$lang['admin']['errorupdatinguser'] = 'Klaida atnaujinant naudotoją';
$lang['admin']['errorupdatingusertag'] = 'Klaida atnaujinant naudotojo žymę (Tag)';
$lang['admin']['erroruserinuse'] = 'Šis naudotojas vis dar yra turinio tinklapių savininkas. Prieš jį šalindami, pakeiskite tų tinklapių savininką į kitą naudotoją.';
$lang['admin']['eventhandlers'] = 'Įvykių valdymas';
$lang['admin']['eventhandler'] = 'Event Handlers';
$lang['admin']['editeventhandler'] = 'Pridėti įvykių valdiklį';
$lang['admin']['eventhandlerdescription'] = 'Susieti naudotojo žymes su įvykiais';
$lang['admin']['export'] = 'Eksportuoti';
$lang['admin']['event'] = 'Įvykis';
$lang['admin']['false'] = 'Ne';
$lang['admin']['settrue'] = 'Nustatyti į teigiamą';
$lang['admin']['filecreatedirnodoubledot'] = 'Aplanko pavadinime negali būti simbolių „..“.';
$lang['admin']['filecreatedirnoname'] = 'Negalima sukurti aplanko be pavadinimo.';
$lang['admin']['filecreatedirnoslash'] = 'Aplanko pavadinime negali būti simbolių „/“ ir „\“.';
$lang['admin']['filemanagement'] = 'Failų valdymas';
$lang['admin']['filename'] = 'Failo pavadinimas';
$lang['admin']['filenotuploaded'] = 'Failo nepavyko įkelti. Leidimų (teisių) problema?';
$lang['admin']['filesize'] = 'Failo dydis';
$lang['admin']['firstname'] = 'Vardas';
$lang['admin']['groupmanagement'] = 'Grupių valdymas';
$lang['admin']['grouppermissions'] = 'Grupių leidimai';
$lang['admin']['handler'] = 'Priežiūra (naudotojo sukurtų žymių)';
$lang['admin']['headtags'] = 'Head Žymės (Tags)';
$lang['admin']['help'] = 'Pagalba';
$lang['admin']['new_window'] = 'naujas langas';
$lang['admin']['helpwithsection'] = '%s pagalba';
$lang['admin']['helpaddtemplate'] = '<p>Šablonas yra Jūsų svetainės stuburas. Jame aprašoma Jūsų svetainės išvaizda.</p><p>Čia aprašykite tinklapio išdėstymą. Pakopinių stilių sekcijoje pridėkite stilių aprašą, kuriame aprašykite atskirų tinklapio elementų atvaizdavimą.</p>';
$lang['admin']['helplisttemplate'] = '<p>Šis tinklapis Jums leidžia redaguoti, šalinti ir kurti šablonus.</p><p>Norėdami sukurti naują šabloną, paspauskite mygtuką <u>Įdėti naują šabloną</u>. Jeigu norite nustatyti, kad visi turinio tinklapiai naudotų tą patį šabloną, paspauskite nuorodą <u>Nustatyti visus tinklapius</u>.</p><p>Jeigu norite nukopijuoti šabloną, paspauskite piktogramą <u>Kopijuoti</u> – Jūsų bus paprašyta įvesti naujosios šablono kopijos pavadinimą.</p>';
$lang['admin']['home'] = 'Pirmas';
$lang['admin']['homepage'] = 'Pradžios tinklapis';
$lang['admin']['hostname'] = 'Host adresas';
$lang['admin']['idnotvalid'] = 'Duotas id yra neteisingas';
$lang['admin']['imagemanagement'] = 'Paveikslėlių valdymas';
$lang['admin']['informationmissing'] = 'Trūksta informacijos';
$lang['admin']['install'] = 'Įdiegti';
$lang['admin']['invalidcode'] = 'Įvestas neteisingas kodas.';
$lang['admin']['illegalcharacters'] = 'Neteisingi simboliai lauke %s.';
$lang['admin']['invalidcode_brace_missing'] = 'Nelyginis riestinių skliaustelių skaičius';
$lang['admin']['invalidtemplate'] = 'Neteisingas šablonas';
$lang['admin']['itemid'] = 'Elemento ID';
$lang['admin']['itemname'] = 'Elemento pavadinimas';
$lang['admin']['language'] = 'Kalba';
$lang['admin']['lastname'] = 'Pavardė';
$lang['admin']['logout'] = 'Atsijungti';
$lang['admin']['loginprompt'] = 'Įveskite teisingus prisijungimo duomenis norėdami prisijungti prie svetainės administravimo.';
$lang['admin']['logintitle'] = 'CMS Made Simple administratoriaus prisijungimas';
$lang['admin']['menutext'] = 'Meniu tekstas';
$lang['admin']['missingparams'] = 'Keletas parametrų buvo nenurodyti arba klaidingi';
$lang['admin']['modifygroupassignments'] = 'Redaguoti grupės priskyrimus';
$lang['admin']['moduleabout'] = 'Apie %s modulį';
$lang['admin']['modulehelp'] = 'Pagalba %s moduliui';
$lang['admin']['msg_defaultcontent'] = 'Čia įterpkite kodą, kuris bus rodomas kaip numatytasis turinys, kuriant naujus tinklapius';
$lang['admin']['msg_defaultmetadata'] = 'Čia įterpkite kodą, kuris bus rodomas visų naujų tinklapių metadata skiltyje';
$lang['admin']['wikihelp'] = 'Bendruomenės pagalba';
$lang['admin']['moduleinstalled'] = 'Modulis jau įdiegtas';
$lang['admin']['moduleinterface'] = '%s sąsaja';
$lang['admin']['modules'] = 'Moduliai';
$lang['admin']['move'] = 'Perkelti';
$lang['admin']['name'] = 'Vardas';
$lang['admin']['needpermissionto'] = 'Jums reikalingas '%s' leidimas tam, kad įvykdyti šią funkciją.';
$lang['admin']['needupgrade'] = 'Reikia atnaujinti';
$lang['admin']['newtemplatename'] = 'Naujo šablono vardas';
$lang['admin']['next'] = 'Sekantis';
$lang['admin']['noaccessto'] = 'Nėra prieigos prie %s';
$lang['admin']['nocss'] = 'Nėra pakopinių stilių aprašo';
$lang['admin']['noentries'] = 'Nėra įrašų';
$lang['admin']['nofieldgiven'] = 'Neduotas %s!';
$lang['admin']['nofiles'] = 'Nėra failų';
$lang['admin']['nopasswordmatch'] = 'Nesutampa slaptažodžiai';
$lang['admin']['norealdirectory'] = 'Nepateiktas realus aplankas';
$lang['admin']['norealfile'] = 'Nepateiktas realus failas';
$lang['admin']['notinstalled'] = 'Neįdiegtas';
$lang['admin']['overwritemodule'] = 'Perrašyti esamus modulius';
$lang['admin']['owner'] = 'Savininkas';
$lang['admin']['pagealias'] = 'Tinklapio trumpinys';
$lang['admin']['content_id'] = 'Turinio ID';
$lang['admin']['pagedefaults'] = 'Tinklapio nuostatos';
$lang['admin']['pagedefaultsdescription'] = 'Keisti numatytąsias reikšmes naujiems tinklapiams.';
$lang['admin']['parent'] = 'Tėvas';
$lang['admin']['password'] = 'Slaptažodis';
$lang['admin']['passwordagain'] = 'Slaptažodis (pakartoti)';
$lang['admin']['permission'] = 'Leidimas (teisė)';
$lang['admin']['permissions'] = 'Leidimai (teisės)';
$lang['admin']['permissionschanged'] = 'Leidimai (teisės) atnaujinti.';
$lang['admin']['pluginabout'] = 'Apie %s žymę (Tag)';
$lang['admin']['pluginhelp'] = 'Pagalba %s žymei (Tag)';
$lang['admin']['pluginmanagement'] = 'Priedų valdymas';
$lang['admin']['prefsupdated'] = 'Naudotojo nuostatos atnaujintos.';
$lang['admin']['accountupdated'] = 'User account has been updated.';
$lang['admin']['preview'] = 'Peržiūra';
$lang['admin']['previewdescription'] = 'Peržiūrėti pakeitimus';
$lang['admin']['previous'] = 'Ankstesnis';
$lang['admin']['remove'] = 'Pašalinti';
$lang['admin']['removeconfirm'] = 'Šis veiksmas pašalins šio modulio failus.\nAr tikrai norite tęsti?';
$lang['admin']['removecssassociation'] = 'Panaikinti susiejimą su pakopinių stilių aprašu';
$lang['admin']['saveconfig'] = 'Išsaugoti nuostatas';
$lang['admin']['send'] = 'Siųsti';
$lang['admin']['setallcontent'] = 'Nustatyti visus tinklapius';
$lang['admin']['setallcontentconfirm'] = 'Ar tikrai norite nustatyti, kad visi tinklapiai naudotų šį šabloną?';
$lang['admin']['showinmenu'] = 'Rodyti meniu';
$lang['admin']['use_name'] = 'In the parent page dropdown, show the page title instead of the menu text';
$lang['admin']['showsite'] = 'Rodyti svetainę';
$lang['admin']['sitedownmessage'] = 'Pranešimas, jog svetainė neveikia';
$lang['admin']['siteprefs'] = 'Bendrosios nuostatos';
$lang['admin']['status'] = 'Būklė';
$lang['admin']['stylesheet'] = 'Pakopinių stilių aprašas';
$lang['admin']['submit'] = 'Pateikti';
$lang['admin']['submitdescription'] = 'Išsaugoti pakeitimus';
$lang['admin']['tags'] = 'Žymės';
$lang['admin']['template'] = 'Šablonas';
$lang['admin']['templateexists'] = 'Šablono pavadinimas jau egzistuoja';
$lang['admin']['templatemanagement'] = 'Šablonų valdymas';
$lang['admin']['title'] = 'Pavadinimas';
$lang['admin']['tools'] = 'Įrankiai';
$lang['admin']['true'] = 'Taip';
$lang['admin']['setfalse'] = 'Nustatyti į neigiamą';
$lang['admin']['type'] = 'Tipas';
$lang['admin']['typenotvalid'] = 'Netinkamas tipas';
$lang['admin']['uninstall'] = 'Panaikinti';
$lang['admin']['uninstallconfirm'] = 'Ar tikrai norite tai panaikinti?';
$lang['admin']['up'] = 'Į viršų';
$lang['admin']['upgrade'] = 'Atnaujinti';
$lang['admin']['upgradeconfirm'] = 'Ar tikrai norite tai atnaujinti?';
$lang['admin']['uploadfile'] = 'Įkelti failą';
$lang['admin']['url'] = 'URL';
$lang['admin']['useadvancedcss'] = 'Naudokite detalesnį stilių valdymą';
$lang['admin']['user'] = 'Naudotojas';
$lang['admin']['userdefinedtags'] = 'Naudotojo aprašytos žymės (Tags)';
$lang['admin']['usermanagement'] = 'Naudotojų valdymas';
$lang['admin']['username'] = 'Naudotojo vardas';
$lang['admin']['usernameincorrect'] = 'Naudotojo vardas arba slaptažodis neteisingi';
$lang['admin']['userprefs'] = 'Naudotojo nuostatos';
$lang['admin']['useraccount'] = 'Naudotojo paskyra';
$lang['admin']['lang_settings_legend'] = 'Kalbinės nuostatos';
$lang['admin']['content_editor_legend'] = 'Turinio redaktoriaus nuostatos';
$lang['admin']['admin_layout_legend'] = 'Administravimo sąsajos išdėstymo nuostatos';
$lang['admin']['usersassignedtogroup'] = 'Naudotojai priskirti grupei %s';
$lang['admin']['usertagexists'] = 'Žymė šiuo vardu jau egzistuoja. Parinkite Kitą';
$lang['admin']['usewysiwyg'] = 'Naudoti WYSIWYG redaktorių turiniui';
$lang['admin']['version'] = 'Versija';
$lang['admin']['view'] = 'Žiūrėti';
$lang['admin']['welcomemsg'] = 'Sveiki %s';
$lang['admin']['directoryabove'] = 'aukštesniojo lygio aplankas';
$lang['admin']['nodefault'] = 'Nepasirinktas pagrindinis';
$lang['admin']['blobexists'] = 'HTML intarpo pavadinimas jau egzistuoja';
$lang['admin']['blobmanagement'] = 'HTML intarpų valdymas';
$lang['admin']['errorinsertingblob'] = 'Klaida įterpiant HTML intarpą';
$lang['admin']['addhtmlblob'] = 'Įdėti HTML intarpą';
$lang['admin']['edithtmlblob'] = 'Redaguoti HTML intarpą';
$lang['admin']['edithtmlblobsuccess'] = 'HTML intarpas atnaujintas';
$lang['admin']['tagtousegcb'] = 'HTML intarpo iškvietimo kodas';
$lang['admin']['gcb_wysiwyg'] = 'Įjungti GCB WYSIWYG';
$lang['admin']['gcb_wysiwyg_help'] = 'Įjungti WYSIWYG redaktorių kai redaguojami HTML intarpai';
$lang['admin']['filemanager'] = 'Failų tvarkymas';
$lang['admin']['imagemanager'] = 'Paveikslėlių valdymas';
$lang['admin']['encoding'] = 'Kodavimas';
$lang['admin']['clearcache'] = 'Išvalyti laikinąją atmintį';
$lang['admin']['clear'] = 'Išvalyti';
$lang['admin']['cachecleared'] = 'Laikinoji atmintis išvalyta';
$lang['admin']['apply'] = 'Patvirtinti';
$lang['admin']['applydescription'] = 'Išsaugoti pakeitimus ir tęsti redagavimą';
$lang['admin']['none'] = 'Jokio';
$lang['admin']['wysiwygtouse'] = 'Pasirinkite WYSIWYG redaktorių kurį norite naudoti';
$lang['admin']['syntaxhighlightertouse'] = 'Pasirinkite sintaksės žymėtoją';
$lang['admin']['hasdependents'] = 'Turi priklausomybių';
$lang['admin']['missingdependency'] = 'Trūksta priklausomybių';
$lang['admin']['minimumversion'] = 'Minimali versija';
$lang['admin']['minimumversionrequired'] = 'Minimali reikalinga CMSMS versija';
$lang['admin']['maximumversion'] = 'maksimali versija';
$lang['admin']['maximumversionsupported'] = 'Maksimali palaikoma CMSMS versija';
$lang['admin']['depsformodule'] = 'Modulio %s priklausomybės';
$lang['admin']['installed'] = 'Įdiegta';
$lang['admin']['author'] = 'Autorius';
$lang['admin']['changehistory'] = 'Pakeisti istoriją';
$lang['admin']['moduleerrormessage'] = '%s modulio klaidos pranešimas';
$lang['admin']['moduleupgradeerror'] = 'Įvyko klaida atnaujinant modulį.';
$lang['admin']['moduleinstallmessage'] = 'Modulio %s įdiegimo pranešimas';
$lang['admin']['moduleuninstallmessage'] = 'Modulio %s panaikinimo pranešimas';
$lang['admin']['admintheme'] = 'Administravimo tema';
$lang['admin']['addstylesheet'] = 'Įdėti stilių aprašą';
$lang['admin']['editstylesheet'] = 'Redaguoti stilių aprašą';
$lang['admin']['addcssassociation'] = 'Įdėti susiejimą su stilių aprašu';
$lang['admin']['attachstylesheet'] = 'Prijungti šį stilių aprašą';
$lang['admin']['attachtemplate'] = 'Prijungti prie šio šablono';
$lang['admin']['main'] = 'Pagrindinis';
$lang['admin']['pages'] = 'Tinklapiai';
$lang['admin']['page'] = 'Tinklapis';
$lang['admin']['files'] = 'Failai';
$lang['admin']['layout'] = 'Išdėstymas';
$lang['admin']['usersgroups'] = 'Naudotojai ir grupės';
$lang['admin']['extensions'] = 'Plėtiniai';
$lang['admin']['preferences'] = 'Nuostatos';
$lang['admin']['admin'] = 'Svetainės administravimas';
$lang['admin']['viewsite'] = 'Peržiūrėti svetainę';
$lang['admin']['templatecss'] = 'Priskirti šablonus stilių aprašui';
$lang['admin']['plugins'] = 'Priedai';
$lang['admin']['movecontent'] = 'Perstumti tinklapius';
$lang['admin']['module'] = 'Modulis';
$lang['admin']['usertags'] = 'Naudotojo sukurtos žymės (Tags)';
$lang['admin']['htmlblobs'] = 'HTML intarpai';
$lang['admin']['adminhome'] = 'Admin Pagrindinis';
$lang['admin']['liststylesheets'] = 'Pakopinių stilių aprašai';
$lang['admin']['preferencesdescription'] = 'Čia galite nustatyti įvairias svetainės parinktis.';
$lang['admin']['adminlogdescription'] = 'Rodo įrašų žurnalą apie tai kas ir ką darė admin zonoje.';
$lang['admin']['mainmenu'] = 'Pagrindinis meniu';
$lang['admin']['users'] = 'Naudotojai';
$lang['admin']['usersdescription'] = 'Čia valdomi naudotojai.';
$lang['admin']['groups'] = 'Grupės';
$lang['admin']['groupsdescription'] = 'Čia valdomos grupės.';
$lang['admin']['groupassignments'] = 'Grupių priskyrimai';
$lang['admin']['groupassignmentdescription'] = 'Čia Jūs galite priskirti naudotojus į grupes.';
$lang['admin']['groupperms'] = 'Grupių leidimai (teisės)';
$lang['admin']['grouppermsdescription'] = 'Nustatykite leidimus (teises) ir prieigos lygius grupėms';
$lang['admin']['pagesdescription'] = 'Čia galite pridėti ir redaguoti tinklapius bei kitą turinį.';
$lang['admin']['htmlblobdescription'] = 'HTML intarpai yra turinio gabalai kuriuos Jūs galite įterpti į turinį ar šablonus.';
$lang['admin']['templates'] = 'Šablonai';
$lang['admin']['templatesdescription'] = 'Čia galima įdėti ir redaguoti šablonus. Šablonai yra Jūsų svetainės griaučiai – jie valdo svetainės išvaizdą bei elgseną.';
$lang['admin']['stylesheets'] = 'Pakopinių stilių aprašai';
$lang['admin']['stylesheetsdescription'] = 'Čia galima atskirai nuo šablonų tvarkyti pakopinių stilių aprašus.';
$lang['admin']['filemanagerdescription'] = 'Įkelti ir tvarkyti failus.';
$lang['admin']['imagemanagerdescription'] = 'Įkelti, redaguoti ir šalinti paveikslėlius.';
$lang['admin']['moduledescription'] = 'Moduliai praplečia CMS Made Simple sistemą ir prideda funkcionalumo.';
$lang['admin']['tagdescription'] = 'Žymės yra mažos funkcionalumo dalys kurios gali būti įdėtos į turinį ir/arba šabloną.';
$lang['admin']['usertagdescription'] = 'Žymes (tags) galite sukurti naršyklės pagalba atlieka specifines užduotis.';
$lang['admin']['installdirwarning'] = '<em><strong>DĖMESIO:</strong></em> vis dar egzistuoja aplankas „install“. Patariame jį visiškai pašalinti.';
$lang['admin']['subitems'] = 'Sub-elementai';
$lang['admin']['extensionsdescription'] = 'Moduliai, žymės ir kiti rūšiuoti dalykai.';
$lang['admin']['usersgroupsdescription'] = 'Elementai susiję su naudotojais ir grupėmis.';
$lang['admin']['layoutdescription'] = 'Svetainės išdėstymo parinktys.';
$lang['admin']['admindescription'] = 'Svetainės administravimo funkcijos.';
$lang['admin']['contentdescription'] = 'Čia galima įdėti ir redaguoti turinį.';
$lang['admin']['enablecustom404'] = 'Įjungti 404 klaidos pranešimą';
$lang['admin']['enablesitedown'] = 'Įjungti pranešimą, jog svetainė neveikia';
$lang['admin']['enablewysiwyg'] = 'Redaguojant „Svetainė nepasiekiama“ pranešimą, įgalinti vaizdųjį redaktorių.';
$lang['admin']['bookmarks'] = 'Žymekliai';
$lang['admin']['user_created'] = 'Naudotojas sukurtas';
$lang['admin']['forums'] = 'Forumai';
$lang['admin']['wiki'] = 'Wiki';
$lang['admin']['irc'] = 'IRC';
$lang['admin']['team'] = 'Team';
$lang['admin']['documentation'] = 'Documentation';
$lang['admin']['module_help'] = 'Modulio pagalba';
$lang['admin']['managebookmarks'] = 'Valdyti žymeklius';
$lang['admin']['editbookmark'] = 'Redaguoti žymeklį';
$lang['admin']['addbookmark'] = 'Pridėti žymeklį';
$lang['admin']['recentpages'] = 'Nesenai naudoti tinklapiai';
$lang['admin']['groupname'] = 'Grupės pavadinimas';
$lang['admin']['selectgroup'] = 'Pasirinkite grupę';
$lang['admin']['updateperm'] = 'Atnaujinti leidimus (teises)';
$lang['admin']['admincallout'] = 'Administravimo trumpiausi keliai (Shortcuts)';
$lang['admin']['showbookmarks'] = 'Rodyti administratoriaus žymeklius';
$lang['admin']['hide_help_links'] = 'Nerodyti pagalbos nuorodų';
$lang['admin']['hide_help_links_help'] = 'Nerodyti modulio pagalbos nuorodų administravimo sąsajos antraštėje.';
$lang['admin']['showrecent'] = 'Rodyti nesenai naudotus tinklapius';
$lang['admin']['attachtotemplate'] = 'Prijunkite stilių aprašą šablonui';
$lang['admin']['attachstylesheets'] = 'Prijunkite stilių aprašus';
$lang['admin']['indent'] = 'Atitraukti sąrašą nuo krašto, taip išryškinant tinklapių hierarchinį vaizdą';
$lang['admin']['adminindent'] = 'Turinio atvaizdavimas';
$lang['admin']['contract'] = 'Sutraukti grupę';
$lang['admin']['expand'] = 'Išskleisti grupę';
$lang['admin']['expandall'] = 'Išskleisti visas grupes';
$lang['admin']['contractall'] = 'Sutraukti visas grupes';
$lang['admin']['menu_bookmarks'] = '[+]';
$lang['admin']['globalconfig'] = 'Globaliosios nuostatos';
$lang['admin']['adminpaging'] = 'Rodomas turinio elementų skaičius viename puslapyje';
$lang['admin']['nopaging'] = 'Rodyti visus';
$lang['admin']['myprefs'] = 'Mano nuostatos';
$lang['admin']['myprefsdescription'] = 'Čia galite nustatyti administravimo dalies parametrus taip, kaip Jums patinka.';
$lang['admin']['myaccount'] = 'Mano naudotojas';
$lang['admin']['myaccountdescription'] = 'Čia galite pakeisti savo naudotojo asmenines nuostatas.';
$lang['admin']['adminprefs'] = 'Naudotojo nuostatos';
$lang['admin']['adminprefsdescription'] = 'Čia galite keisti specifines svetainės administravimo nuostatas.';
$lang['admin']['managebookmarksdescription'] = 'Čia jūs galite valdyti administratoriaus žymeklius.';
$lang['admin']['options'] = 'Pasirinkimai';
$lang['admin']['langparam'] = 'Šis parametras naudojamas nurodyti kokia kalba bus naudojama svetainėje, kurią matys lankytojas. Ne visi moduliai turi ar reikalauja šio parametro.';
$lang['admin']['parameters'] = 'Parametrai';
$lang['admin']['mediatype'] = 'Media tipas';
$lang['admin']['media_query'] = 'Media Query';
$lang['admin']['media_query_description'] = '<strong>Notice:</strong> When Media Query is used, Media Type selection will be ignored.<br /> Use any valid expression as recommended by <a href="http://www.w3.org/TR/css3-mediaqueries/" rel="external" title="W3C">W3C</a>.';
$lang['admin']['mediatype_'] = 'Nenurodytas joks: aprašas galios visada';
$lang['admin']['mediatype_all'] = 'all : tinkamas visiems prietaisams.';
$lang['admin']['mediatype_aural'] = 'aural : skirtas balso sintezavimo įrenginiams.';
$lang['admin']['mediatype_braille'] = 'braille : skirtas Brailio taktiliniams įrenginiams.';
$lang['admin']['mediatype_embossed'] = 'embossed : skirtas brailio spausdintuvams.';
$lang['admin']['mediatype_handheld'] = 'handheld : skirtas delniniams įrenginiams.';
$lang['admin']['mediatype_print'] = 'print : skirtas spausdintuvams ir spaudinio peržiūros veiksenai.';
$lang['admin']['mediatype_projection'] = 'projection : skirtas prezentacijų rodymui, pavyzdžiui, rodymui per projektorių ar spausdinimui ant skaidrių.';
$lang['admin']['mediatype_screen'] = 'screen : skirtas pirmiausia spalviniams kompiuterių ekranams.';
$lang['admin']['mediatype_tty'] = 'tty : skirtas įrenginiams, atvaizduojantiems fiksuotų matmenų lygiapločių simbolių matricą, pavyzdžiui, teletaipams ir terminalams.';
$lang['admin']['mediatype_speech'] = 'speech : skirtas balso sintezavimo įrenginiams.';
$lang['admin']['mediatype_tv'] = 'tv : skirtas televizoriaus tipo įrenginiams.';
$lang['admin']['assignmentchanged'] = 'Grupių priskyrimai atnaujinti';
$lang['admin']['stylesheetexists'] = 'Stilių aprašas egzistuoja';
$lang['admin']['errorcopyingstylesheet'] = 'Klaida kopijuojant stilių aprašą';
$lang['admin']['copystylesheet'] = 'Kopijuoti stilių aprašą';
$lang['admin']['newstylesheetname'] = 'Naujojo stilių aprašo pavadinimas';
$lang['admin']['target'] = 'Taikinys';
$lang['admin']['xml'] = 'XML';
$lang['admin']['xmlmodulerepository'] = 'URL arba modulio saugyklos soap serveris';
$lang['admin']['metadata'] = 'Meta duomenys';
$lang['admin']['globalmetadata'] = 'Globalūs meta duomenys';
$lang['admin']['titleattribute'] = 'Title atributas';
$lang['admin']['tabindex'] = 'Tab'o indeksas';
$lang['admin']['accesskey'] = 'Priėjimo raktas';
$lang['admin']['sitedownwarning'] = '<strong>DĖMESIO:</strong> Jūsų svetainėje rodomas pranešimas, jog ji neveikia. Šiai problemai išspręsti pašalinkite failą „%s“.';
$lang['admin']['deletecontent'] = 'Pašalinti turinį';
$lang['admin']['deletepages'] = 'Pašalinti šiuos tinklapius?';
$lang['admin']['selectall'] = 'Pasirinkti visus';
$lang['admin']['selecteditems'] = 'Pasirinkti elementai';
$lang['admin']['inactive'] = 'Neaktyvus';
$lang['admin']['deletetemplates'] = 'Pašalinti šablonus';
$lang['admin']['templatestodelete'] = 'Šie šablonai bus pašalinti';
$lang['admin']['wontdeletetemplateinuse'] = 'Šie šablonai yra naudojami ir nebus pašalinti';
$lang['admin']['deletetemplate'] = 'Pašalinti šablonus';
$lang['admin']['stylesheetstodelete'] = 'Šie stilių aprašai bus pašalinti';
$lang['admin']['sitename'] = 'Svetainės pavadinimas';
$lang['admin']['goto'] = 'Grįžti į:';
$lang['admin']['siteadmin'] = 'Svetainės administravimas';
$lang['admin']['images'] = 'Paveikslėlių valdymas';
$lang['admin']['blobs'] = 'HTML intarpai';
$lang['admin']['groupmembers'] = 'Grupės priskyrimai';
$lang['admin']['troubleshooting'] = '(Troubleshooting'as)';
$lang['admin']['event_desc_loginpost'] = 'Nusiųsta prieš naudotojui prisijungiant prie administravimo';
$lang['admin']['event_desc_logoutpost'] = 'Nusiųsta naudotojui atsijungus nuo administravimo';
$lang['admin']['event_desc_adduserpre'] = 'Nusiųsta prieš sukuriant naują naudotoją';
$lang['admin']['event_desc_adduserpost'] = 'Nusiųsta sukūrus naują naudotoją';
$lang['admin']['event_desc_edituserpre'] = 'Nusiųsta prieš išsaugant pakeistus naudotojo duomenis';
$lang['admin']['event_desc_edituserpost'] = 'Nusiųsta išsaugojus pakeistus naudotojo duomenis';
$lang['admin']['event_desc_deleteuserpre'] = 'Nusiųsta prieš pašalinant naudotoją iš sistemos';
$lang['admin']['event_desc_deleteuserpost'] = 'Nusiųsta ištrynus naudotoją iš sistemos';
$lang['admin']['event_desc_addgrouppre'] = 'Nusiųsta prieš sukuriant naują grupę';
$lang['admin']['event_desc_addgrouppost'] = 'Nusiųsta sukūrus naują grupę';
$lang['admin']['event_desc_changegroupassignpre'] = 'Nusiųsta prieš išsaugant grupės priskyrimus';
$lang['admin']['event_desc_changegroupassignpost'] = 'Nusiųsta išsaugojus grupės priskyrimus';
$lang['admin']['event_desc_editgrouppre'] = 'Nusiųsta prieš išsaugant grupės pakeitimus';
$lang['admin']['event_desc_editgrouppost'] = 'Nusiųsta išsaugojus grupės pakeitimus';
$lang['admin']['event_desc_deletegrouppre'] = 'Nusiųsta prieš pašalinant grupę iš sistmos';
$lang['admin']['event_desc_deletegrouppost'] = 'Nusiųsta ištrynus grupę iš sistemos';
$lang['admin']['event_desc_addstylesheetpre'] = 'Nusiųsta prieš sukuriant naują stiliaus aprašą';
$lang['admin']['event_desc_addstylesheetpost'] = 'Nusiųsta sukūrus naują stiliaus aprašą';
$lang['admin']['event_desc_editstylesheetpre'] = 'Nusiųsta prieš išsaugant stiliaus aprašo pakeitimus';
$lang['admin']['event_desc_editstylesheetpost'] = 'Nusiųsta išsaugojus stiliaus aprašo pakeitimus';
$lang['admin']['event_desc_deletestylesheetpre'] = 'Nusiųsta prieš pašalinant stiliaus aprašą iš sistemos';
$lang['admin']['event_desc_deletestylesheetpost'] = 'Nusiųsta ištrynus stilių iš sistemos';
$lang['admin']['event_desc_addtemplatepre'] = 'Nusiųsta prieš sukuriant naują šabloną';
$lang['admin']['event_desc_addtemplatepost'] = 'Nusiųsta sukūrus naują šabloną';
$lang['admin']['event_desc_edittemplatepre'] = 'Nusiųsta prieš išsaugant pakeitimus šalone';
$lang['admin']['event_desc_edittemplatepost'] = 'Nusiųsta išsaugojus šablono pakeitimus';
$lang['admin']['event_desc_deletetemplatepre'] = 'Nusiųsta prieš pašalinant šabloną iš sistemos';
$lang['admin']['event_desc_deletetemplatepost'] = 'Nusiųsta ištrynus šabloną iš sistemos';
$lang['admin']['event_desc_templateprecompile'] = 'Nusiųsta prieš šablono nusiuntimą į smarty apdorojimui';
$lang['admin']['event_desc_templatepostcompile'] = 'Nusiųsta po šablono nusiuntimo į smarty apdorojimui';
$lang['admin']['event_desc_addglobalcontentpre'] = 'Nusiųsta prieš sukuriant naują HTML intarpą';
$lang['admin']['event_desc_addglobalcontentpost'] = 'Nusiųsta sukūrus naują HTML intarpą';
$lang['admin']['event_desc_editglobalcontentpre'] = 'Nusiųsta prieš išsaugant HTML intarpo pakeitimus';
$lang['admin']['event_desc_editglobalcontentpost'] = 'Nusiųsta išsaugojus HTML intarpo pakeitimus';
$lang['admin']['event_desc_deleteglobalcontentpre'] = 'Nusiųsta prieš pašalinant HTML intarpą iš sistemos';
$lang['admin']['event_desc_deleteglobalcontentpost'] = 'Nusiųsta ištrynus HTML intarpą iš sistemos';
$lang['admin']['event_desc_globalcontentprecompile'] = 'Nusiųsta prieš nusiunčiant HTML intarpą į smarty apdorojimui';
$lang['admin']['event_desc_globalcontentpostcompile'] = 'Nusiųsta po HTML intarpo išsiuntimo į smarty apdorojimui';
$lang['admin']['event_desc_contenteditpre'] = 'Nusiųsta prieš išsaugant turinio pakeitimus';
$lang['admin']['event_desc_contenteditpost'] = 'Nusiųsta išsaugojus turinio pakeitimus';
$lang['admin']['event_desc_contentdeletepre'] = 'Nusiųsta prieš pašalinant turinį iš sistemos';
$lang['admin']['event_desc_contentdeletepost'] = 'Nusiųsta ištrynus turinį iš sistemos';
$lang['admin']['event_desc_contentstylesheet'] = 'Nusiųsta prieš stiliaus nusiuntimą į naršyklę';
$lang['admin']['event_desc_contentprecompile'] = 'Nusiųsta prieš nusiunčiant turinį į smarty apdorojimui';
$lang['admin']['event_desc_contentpostcompile'] = 'Nusiųsta po smarty turinio apdorojimo';
$lang['admin']['event_desc_contentpostrender'] = 'Nusiųsta prieš html nusiuntimo į naršyklę';
$lang['admin']['event_desc_smartyprecompile'] = 'Nusiųsta prieš bet kokio turinio, skirto smarty, apdorojimą';
$lang['admin']['event_desc_smartypostcompile'] = 'Nusiųsta po bet kokio turinio, skirto smarty, apdorojimo';
$lang['admin']['event_help_loginpost'] = '<p>Sent after a user logs into the admin panel.</p>
<h4>Parameters</h4>
<ul>
<li>'user' - Reference to the affected user object.</li>
</ul>
';
$lang['admin']['event_help_logoutpost'] = '<p>Sent after a user logs out of the admin panel.</p>
<h4>Parameters</h4>
<ul>
<li>'user' - Reference to the affected user object.</li>
</ul>
';
$lang['admin']['event_help_adduserpre'] = '<p>Sent before a new user is created.</p>
<h4>Parameters</h4>
<ul>
<li>'user' - Reference to the affected user object.</li>
</ul>
';
$lang['admin']['event_help_adduserpost'] = '<p>Sent after a new user is created.</p>
<h4>Parameters</h4>
<ul>
<li>'user' - Reference to the affected user object.</li>
</ul>
';
$lang['admin']['event_help_edituserpre'] = '<p>Sent before edits to a user are saved.</p>
<h4>Parameters</h4>
<ul>
<li>'user' - Reference to the affected user object.</li>
</ul>
';
$lang['admin']['event_help_edituserpost'] = '<p>Sent after edits to a user are saved.</p>
<h4>Parameters</h4>
<ul>
<li>'user' - Reference to the affected user object.</li>
</ul>
';
$lang['admin']['event_help_deleteuserpre'] = '<p>Sent before a user is deleted from the system.</p>
<h4>Parameters</h4>
<ul>
<li>'user' - Reference to the affected user object.</li>
</ul>
';
$lang['admin']['event_help_deleteuserpost'] = '<p>Sent after a user is deleted from the system.</p>
<h4>Parameters</h4>
<ul>
<li>'user' - Reference to the affected user object.</li>
</ul>
';
$lang['admin']['event_help_addgrouppre'] = '<p>Sent before a new group is created.</p>
<h4>Parameters</h4>
<ul>
<li>'group' - Reference to the affected group object.</li>
</ul>
';
$lang['admin']['event_help_addgrouppost'] = '<p>Sent after a new group is created.</p>
<h4>Parameters</h4>
<ul>
<li>'group' - Reference to the affected group object.</li>
</ul>
';
$lang['admin']['event_help_changegroupassignpre'] = '<p>Sent before group assignments are saved.</p>
<h4>Parameters></h4>
<ul>
<li>'group' - Reference to the group object.</li>
<li>'users' - Array of references to user objects belonging to the group.</li>
';
$lang['admin']['event_help_changegroupassignpost'] = '<p>Sent after group assignments are saved.</p>
<h4>Parameters></h4>
<ul>
<li>'group' - Reference to the affected group object.</li>
<li>'users' - Array of references to user objects now belonging to the affected group.</li>
';
$lang['admin']['event_help_editgrouppre'] = '<p>Sent before edits to a group are saved.</p>
<h4>Parameters</h4>
<ul>
<li>'group' - Reference to the affected group object.</li>
</ul>
';
$lang['admin']['event_help_editgrouppost'] = '<p>Sent after edits to a group are saved.</p>
<h4>Parameters</h4>
<ul>
<li>'group' - Reference to the affected group object.</li>
</ul>
';
$lang['admin']['event_help_deletegrouppre'] = '<p>Sent before a group is deleted from the system.</p>
<h4>Parameters</h4>
<ul>
<li>'group' - Reference to the affected group object.</li>
</ul>
';
$lang['admin']['event_help_deletegrouppost'] = '<p>Sent after a group is deleted from the system.</p>
<h4>Parameters</h4>
<ul>
<li>'group' - Reference to the affected group object.</li>
</ul>
';
$lang['admin']['event_help_addstylesheetpre'] = '<p>Sent before a new stylesheet is created.</p>
<h4>Parameters</h4>
<ul>
<li>'stylesheet' - Reference to the affected stylesheet object.</li>
</ul>
';
$lang['admin']['event_help_addstylesheetpost'] = '<p>Sent after a new stylesheet is created.</p>
<h4>Parameters</h4>
<ul>
<li>'stylesheet' - Reference to the affected stylesheet object.</li>
</ul>
';
$lang['admin']['event_help_editstylesheetpre'] = '<p>Sent before edits to a stylesheet are saved.</p>
<h4>Parameters</h4>
<ul>
<li>'stylesheet' - Reference to the affected stylesheet object.</li>
</ul>
';
$lang['admin']['event_help_editstylesheetpost'] = '<p>Sent after edits to a stylesheet are saved.</p>
<h4>Parameters</h4>
<ul>
<li>'stylesheet' - Reference to the affected stylesheet object.</li>
</ul>
';
$lang['admin']['event_help_deletestylesheetpre'] = '<p>Sent before a stylesheet is deleted from the system.</p>
<h4>Parameters</h4>
<ul>
<li>'stylesheet' - Reference to the affected stylesheet object.</li>
</ul>
';
$lang['admin']['event_help_deletestylesheetpost'] = '<p>Sent after a stylesheet is deleted from the system.</p>
<h4>Parameters</h4>
<ul>
<li>'stylesheet' - Reference to the affected stylesheet object.</li>
</ul>
';
$lang['admin']['event_help_addtemplatepre'] = '<p>Sent before a new template is created.</p>
<h4>Parameters</h4>
<ul>
<li>'template' - Reference to the affected template object.</li>
</ul>
';
$lang['admin']['event_help_addtemplatepost'] = '<p>Sent after a new template is created.</p>
<h4>Parameters</h4>
<ul>
<li>'template' - Reference to the affected template object.</li>
</ul>
';
$lang['admin']['event_help_edittemplatepre'] = '<p>Sent before edits to a template are saved.</p>
<h4>Parameters</h4>
<ul>
<li>'template' - Reference to the affected template object.</li>
</ul>
';
$lang['admin']['event_help_edittemplatepost'] = '<p>Sent after edits to a template are saved.</p>
<h4>Parameters</h4>
<ul>
<li>'template' - Reference to the affected template object.</li>
</ul>
';
$lang['admin']['event_help_deletetemplatepre'] = '<p>Sent before a template is deleted from the system.</p>
<h4>Parameters</h4>
<ul>
<li>'template' - Reference to the affected template object.</li>
</ul>
';
$lang['admin']['event_help_deletetemplatepost'] = '<p>Sent after a template is deleted from the system.</p>
<h4>Parameters</h4>
<ul>
<li>'template' - Reference to the affected template object.</li>
</ul>
';
$lang['admin']['event_help_templateprecompile'] = '<p>Sent before a template is sent to smarty for processing.</p>
<h4>Parameters</h4>
<ul>
<li>'template' - Reference to the affected template text.</li>
</ul>
';
$lang['admin']['event_help_templatepostcompile'] = '<p>Sent after a template has been processed by smarty.</p>
<h4>Parameters</h4>
<ul>
<li>'template' - Reference to the affected template text.</li>
</ul>
';
$lang['admin']['event_help_addglobalcontentpre'] = '<p>Sent before a new global content block is created.</p>
<h4>Parameters</h4>
<ul>
<li>'global_content' - Reference to the affected global content block object.</li>
</ul>
';
$lang['admin']['event_help_addglobalcontentpost'] = '<p>Sent after a new global content block is created.</p>
<h4>Parameters</h4>
<ul>
<li>'global_content' - Reference to the affected global content block object.</li>
</ul>
';
$lang['admin']['event_help_editglobalcontentpre'] = '<p>Sent before edits to a global content block are saved.</p>
<h4>Parameters</h4>
<ul>
<li>'global_content' - Reference to the affected global content block object.</li>
</ul>
';
$lang['admin']['event_help_editglobalcontentpost'] = '<p>Sent after edits to a global content block are saved.</p>
<h4>Parameters</h4>
<ul>
<li>'global_content' - Reference to the affected global content block object.</li>
</ul>
';
$lang['admin']['event_help_deleteglobalcontentpre'] = '<p>Sent before a global content block is deleted from the system.</p>
<h4>Parameters</h4>
<ul>
<li>'global_content' - Reference to the affected global content block object.</li>
</ul>
';
$lang['admin']['event_help_deleteglobalcontentpost'] = '<p>Sent after a global content block is deleted from the system.</p>
<h4>Parameters</h4>
<ul>
<li>'global_content' - Reference to the affected global content block object.</li>
</ul>
';
$lang['admin']['event_help_globalcontentprecompile'] = '<p>Sent before a global content block is sent to smarty for processing.</p>
<h4>Parameters</h4>
<ul>
<li>'global_content' - Reference to the affected global content block text.</li>
</ul>
';
$lang['admin']['event_help_globalcontentpostcompile'] = '<p>Sent after a global content block has been processed by smarty.</p>
<h4>Parameters</h4>
<ul>
<li>'global_content' - Reference to the affected global content block text.</li>
</ul>
';
$lang['admin']['event_help_contenteditpre'] = '<p>Sent before edits to content are saved.</p>
<h4>Parameters</h4>
<ul>
<li>'global_content' - Reference to the affected content object.</li>
</ul>
';
$lang['admin']['event_help_contenteditpost'] = '<p>Sent after edits to content are saved.</p>
<h4>Parameters</h4>
<ul>
<li>'content' - Reference to the affected content object.</li>
</ul>
';
$lang['admin']['event_help_contentdeletepre'] = '<p>Sent before content is deleted from the system.</p>
<h4>Parameters</h4>
<ul>
<li>'content' - Reference to the affected content object.</li>
</ul>
';
$lang['admin']['event_help_contentdeletepost'] = '<p>Sent after content is deleted from the system.</p>
<h4>Parameters</h4>
<ul>
<li>'content' - Reference to the affected content object.</li>
</ul>
';
$lang['admin']['event_help_contentstylesheet'] = '<p>Sent before the sytlesheet is sent to the browser.</p>
<h4>Parameters</h4>
<ul>
<li>'content' - Reference to the affected stylesheet text.</li>
</ul>
';
$lang['admin']['event_help_contentprecompile'] = '<p>Sent before content is sent to smarty for processing.</p>
<h4>Parameters</h4>
<ul>
<li>'content' - Reference to the affected content text.</li>
</ul>
';
$lang['admin']['event_help_contentpostcompile'] = '<p>Sent after content has been processed by smarty.</p>
<h4>Parameters</h4>
<ul>
<li>'content' - Reference to the affected content text.</li>
</ul>
';
$lang['admin']['event_help_contentpostrender'] = '<p>Sent before the combined html is sent to the browser.</p>
<h4>Parameters</h4>
<ul>
<li>'content' - Reference to the html text.</li>
</ul>
';
$lang['admin']['event_help_smartyprecompile'] = '<p>Sent before any content destined for smarty is sent to for processing.</p>
<h4>Parameters</h4>
<ul>
<li>'content' - Reference to the affected text.</li>
</ul>
';
$lang['admin']['event_help_smartypostcompile'] = '<p>Sent after any content destined for smarty has been processed.</p>
<h4>Parameters</h4>
<ul>
<li>'content' - Reference to the affected text.</li>
</ul>
';
$lang['admin']['filterbymodule'] = 'Filtruoti pagal modulį';
$lang['admin']['showall'] = 'Rodyti visus';
$lang['admin']['core'] = 'Branduolys';
$lang['admin']['defaultpagecontent'] = 'Įprastas turinio tipas';
$lang['admin']['file_url'] = 'Nuoroda į failą (vietoj URL)';
$lang['admin']['no_file_url'] = 'Joks (Naudoti URL aukščiau)';
$lang['admin']['defaultparentpage'] = 'Įprastas tėvinis tinklapis';
$lang['admin']['error_udt_name_whitespace'] = 'Klaida: Naudotojo sukurtos žymės pavadinimas negali būt su tarpu.';
$lang['admin']['warning_safe_mode'] = '<strong><em>Įspėjimas:</em></strong> PHP „Safe mode“ įjungta. Tai sukels nepatogumų įkeliant failus (taip pat ir paveikslėlius, temas ir modulių XML failus) per naršyklės sąsają. Patartina susisiekti su serverio administratoriais, kad jie išjungtų „safe mode“.';
$lang['admin']['test'] = 'Testas';
$lang['admin']['results'] = 'Rezultatas';
$lang['admin']['untested'] = 'Netestuota';
$lang['admin']['unknown'] = 'Nežinomas';
$lang['admin']['download'] = 'Parsisiųsti';
$lang['admin']['frontendwysiwygtouse'] = 'Priešakinis wysiwyg';
$lang['admin']['backendwysiwygtouse'] = 'Default backend wysiwyg (for new user accounts)';
$lang['admin']['all_groups'] = 'Visos grupės';
$lang['admin']['error_type'] = 'Klaidos tipas';
$lang['admin']['contenttype_errorpage'] = 'Klaidos tinklapis';
$lang['admin']['errorpagealreadyinuse'] = 'Šis klaidos kodas jau naudojamas';
$lang['admin']['404description'] = 'Tinklapis nerastas';
$lang['admin']['usernotfound'] = 'Naudotojas nerastas';
$lang['admin']['passwordchange'] = 'Prašome, pateikti naują slaptažodį';
$lang['admin']['recoveryemailsent'] = 'E. laiškas su tolimesnėmis instrukcijomis išsiųstas įrašytu adresu. Prašome pasitikrinkite jūsų e. pašto dėžutę. ';
$lang['admin']['errorsendingemail'] = 'Įvyko klaida siunčiant e. laišką. Susisiekite su savo administratoriumi.';
$lang['admin']['passwordchangedlogin'] = 'Slaptažodis pakeistas. Prašome prisijungti naudojant naujus prisijungimo duomenis.';
$lang['admin']['nopasswordforrecovery'] = 'Nenurodytas šio naudotojo el. pašto adresas, todėl slaptažodžio priminimas negalimas. Kreipkitės į svetainės administratorių.';
$lang['admin']['lostpw'] = 'Užmiršote slaptažodį?';
$lang['admin']['lostpwemailsubject'] = '[%s] Slaptažodžio priminimas';
$lang['admin']['lostpwemail'] = 'You are recieving this e-mail because a request has been made to change the (%s) password associated with this user account (%s). If you would like to reset the password for this account simply click on the link below or paste it into the url field on your favorite browser:
%s
If you feel this is incorrect or made in error, simply ignore the email and nothing will change.';
$lang['admin']['utma'] = '156861353.1299423357.1356775560.1356775560.1356798791.2';
$lang['admin']['utmz'] = '156861353.1356775560.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)';
$lang['admin']['utmc'] = '156861353';
?>
File Manager Version 1.0, Coded By Lucas
Email: hehe@yahoo.com