1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-19 11:21:30 +02:00

feat(admin-plugin): update Admin plugin #212 #186

Move from JSON to YAML
This commit is contained in:
Awilum
2019-08-21 10:45:55 +03:00
parent 120542f62d
commit 7f9776e517
44 changed files with 287 additions and 7914 deletions

View File

@@ -118,8 +118,8 @@ class EntriesController extends Controller
// If there is any fieldset file then go...
if (count($fieldsets_list) > 0) {
foreach ($fieldsets_list as $fieldset) {
if ($fieldset['type'] == 'file' && $fieldset['extension'] == 'json') {
$fieldset_content = JsonParser::decode(Filesystem::read($fieldset['path']));
if ($fieldset['type'] == 'file' && $fieldset['extension'] == 'yaml') {
$fieldset_content = Parser::decode(Filesystem::read($fieldset['path']), 'yaml');
if (isset($fieldset_content['sections']) && isset($fieldset_content['sections']['main']) && isset($fieldset_content['sections']['main']['fields'])) {
$fieldsets[$fieldset['basename']] = $fieldset_content['title'];
}
@@ -281,8 +281,8 @@ class EntriesController extends Controller
// If there is any template file then go...
if (count($_fieldsets) > 0) {
foreach ($_fieldsets as $fieldset) {
if ($fieldset['type'] == 'file' && $fieldset['extension'] == 'json') {
$fieldset_content = JsonParser::decode(Filesystem::read($fieldset['path']));
if ($fieldset['type'] == 'file' && $fieldset['extension'] == 'yaml') {
$fieldset_content = Parser::decode(Filesystem::read($fieldset['path']), 'yaml');
if (isset($fieldset_content['sections']) && isset($fieldset_content['sections']['main']) && isset($fieldset_content['sections']['main']['fields'])) {
$fieldsets[$fieldset['basename']] = $fieldset_content['title'];
}
@@ -715,8 +715,8 @@ class EntriesController extends Controller
Arr::delete($entry, 'modified_at');
// Fieldsets for current entry template
$fieldsets_path = PATH['site'] . '/fieldsets/' . (isset($entry['fieldset']) ? $entry['fieldset'] : 'default') . '.json';
$fieldsets = JsonParser::decode(Filesystem::read($fieldsets_path));
$fieldsets_path = PATH['site'] . '/fieldsets/' . (isset($entry['fieldset']) ? $entry['fieldset'] : 'default') . '.yaml';
$fieldsets = Parser::decode(Filesystem::read($fieldsets_path), 'yaml');
is_null($fieldsets) and $fieldsets = [];
if ($type == 'source') {
@@ -887,16 +887,11 @@ class EntriesController extends Controller
// Data from POST
$data = $request->getParsedBody();
if (v::json()->validate($data['data'])) {
// Update entry
if (Filesystem::write(PATH['entries'] . '/' . $id . '/entry.json', $data['data'])) {
$this->flash->addMessage('success', __('admin_message_entry_changes_saved'));
} else {
$this->flash->addMessage('error', __('admin_message_entry_changes_not_saved'));
}
// Update entry
if (Filesystem::write(PATH['entries'] . '/' . $id . '/entry.yaml', $data['data'])) {
$this->flash->addMessage('success', __('admin_message_entry_changes_saved'));
} else {
$this->flash->addMessage('error', __('admin_message_json_invalid'));
$this->flash->addMessage('error', __('admin_message_entry_changes_not_saved'));
}
} else {
// Result data to save

View File

@@ -124,18 +124,12 @@ class FieldsetsController extends Controller
$id = $request->getParsedBody()['id'];
$data = $request->getParsedBody()['data'];
if (v::json()->validate($data)) {
if ($this->fieldsets->update($request->getParsedBody()['id'], Parser::decode($data, 'yaml'))) {
$this->flash->addMessage('success', __('admin_message_fieldset_saved'));
} else {
$this->flash->addMessage('error', __('admin_message_fieldset_was_not_saved'));
}
return $response->withRedirect($this->router->pathFor('admin.fieldsets.edit') . '?id=' . $id);
if ($this->fieldsets->update($request->getParsedBody()['id'], Parser::decode($data, 'yaml'))) {
$this->flash->addMessage('success', __('admin_message_fieldset_saved'));
} else {
$this->flash->addMessage('error', __('admin_message_fieldset_was_not_saved'));
}
$this->flash->addMessage('error', __('admin_message_json_invalid'));
return $response->withRedirect($this->router->pathFor('admin.fieldsets.edit') . '?id=' . $id);
}

View File

@@ -62,9 +62,9 @@ class PluginsController extends Controller
$data = $request->getParsedBody();
// Update settings
$plugin_settings = JsonParser::decode(Filesystem::read(PATH['plugins'] . '/' . $data['plugin-key'] . '/' . 'settings.json'));
$plugin_settings = JsonParser::decode(Filesystem::read(PATH['plugins'] . '/' . $data['plugin-key'] . '/' . 'settings.yaml'));
Arr::set($plugin_settings, 'enabled', ($data['plugin-status'] === 'true'));
Filesystem::write(PATH['plugins'] . '/' . $data['plugin-key'] . '/' . 'settings.json', JsonParser::encode($plugin_settings));
Filesystem::write(PATH['plugins'] . '/' . $data['plugin-key'] . '/' . 'settings.yaml', JsonParser::encode($plugin_settings));
// Clear doctrine cache
$this->cache->clear('doctrine');

View File

@@ -38,7 +38,7 @@ class SettingsController extends Controller
$themes = [];
foreach (Filesystem::listContents(PATH['themes']) as $theme) {
if ($theme['type'] !== 'dir' || ! Filesystem::has($theme['path'] . '/' . 'theme.json')) {
if ($theme['type'] !== 'dir' || ! Filesystem::has($theme['path'] . '/' . 'theme.yaml')) {
continue;
}
@@ -49,7 +49,7 @@ class SettingsController extends Controller
$system_locales = $this->plugins->getLocales();
$locales = [];
foreach ($available_locales as $locale) {
if ($locale['type'] !== 'file' || $locale['extension'] !== 'json') {
if ($locale['type'] !== 'file' || $locale['extension'] !== 'yaml') {
continue;
}
@@ -141,7 +141,7 @@ class SettingsController extends Controller
Arr::set($data, 'entries.media.upload_images_width', (int) $data['entries']['media']['upload_images_width']);
Arr::set($data, 'entries.media.upload_images_height', (int) $data['entries']['media']['upload_images_height']);
if (Filesystem::write(PATH['config']['site'] . '/settings.json', JsonParser::encode(array_merge($this->registry->get('settings'), $data)))) {
if (Filesystem::write(PATH['config']['site'] . '/settings.yaml', JsonParser::encode(array_merge($this->registry->get('settings'), $data)))) {
$this->flash->addMessage('success', __('admin_message_settings_saved'));
} else {
$this->flash->addMessage('error', __('admin_message_settings_was_not_saved'));

View File

@@ -64,9 +64,9 @@ class ThemesController extends Controller
$data = $request->getParsedBody();
// Update current theme settings
$theme_settings = JsonParser::decode(Filesystem::read(PATH['themes'] . '/' . $data['theme-id'] . '/' . 'settings.json'));
$theme_settings = JsonParser::decode(Filesystem::read(PATH['themes'] . '/' . $data['theme-id'] . '/' . 'settings.yaml'));
Arr::set($theme_settings, 'enabled', ($data['theme-status'] === 'true'));
Filesystem::write(PATH['themes'] . '/' . $data['theme-id'] . '/' . 'settings.json', JsonParser::encode($theme_settings));
Filesystem::write(PATH['themes'] . '/' . $data['theme-id'] . '/' . 'settings.yaml', JsonParser::encode($theme_settings));
// Get themes list
$themes_list = $this->themes->getThemes();
@@ -78,7 +78,7 @@ class ThemesController extends Controller
continue;
}
if (! Filesystem::has($theme_settings_file = PATH['themes'] . '/' . $theme['dirname'] . '/settings.json')) {
if (! Filesystem::has($theme_settings_file = PATH['themes'] . '/' . $theme['dirname'] . '/settings.yaml')) {
continue;
}
@@ -89,9 +89,9 @@ class ThemesController extends Controller
}
// Update theme in the site settings
$settings = JsonParser::decode(Filesystem::read(PATH['config']['site'] . '/settings.json'));
$settings = JsonParser::decode(Filesystem::read(PATH['config']['site'] . '/settings.yaml'));
Arr::set($settings, 'theme', $data['theme-id']);
Filesystem::write(PATH['config']['site'] . '/settings.json', JsonParser::encode($settings));
Filesystem::write(PATH['config']['site'] . '/settings.yaml', JsonParser::encode($settings));
// clear cache
$this->cache->clear('doctrine');

View File

@@ -66,7 +66,7 @@ class UsersController extends Controller
{
$data = $request->getParsedBody();
if (Filesystem::has($_user_file = PATH['site'] . '/accounts/' . $data['username'] . '.json')) {
if (Filesystem::has($_user_file = PATH['site'] . '/accounts/' . $data['username'] . '.yaml')) {
$user_file = JsonParser::decode(Filesystem::read($_user_file));
if (password_verify(trim($data['password']), $user_file['hashed_password'])) {
Session::set('username', $user_file['username']);
@@ -121,10 +121,10 @@ class UsersController extends Controller
// Get POST data
$data = $request->getParsedBody();
if (! Filesystem::has($_user_file = PATH['site'] . '/accounts/' . $this->slugify->slugify($data['username']) . '.json')) {
if (! Filesystem::has($_user_file = PATH['site'] . '/accounts/' . $this->slugify->slugify($data['username']) . '.yaml')) {
Filesystem::createDir(PATH['site'] . '/accounts/');
if (Filesystem::write(
PATH['site'] . '/accounts/' . $data['username'] . '.json',
PATH['site'] . '/accounts/' . $data['username'] . '.yaml',
JsonParser::encode([
'username' => $this->slugify->slugify($data['username']),
'hashed_password' => password_hash($data['password'], PASSWORD_BCRYPT),
@@ -170,7 +170,7 @@ class UsersController extends Controller
$users = [];
foreach ($users_list as $user) {
if ($user['type'] !== 'file' || $user['extension'] !== 'json') {
if ($user['type'] !== 'file' || $user['extension'] !== 'yaml') {
continue;
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Admin",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Cancel",
"admin_create": "Create",
"admin_debugging": "Debugging",
"admin_email": "Email",
"admin_flextype_version": "Flextype Version",
"admin_information": "Information",
"admin_installed": "Installed",
"admin_keywords": "Keywords",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Login",
"admin_entries": "Entries",
"admin_extends": "Extends",
"admin_plugins": "Plugins",
"admin_themes": "Themes",
"admin_help": "Help",
"admin_getting_help": "Getting Help",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Logout",
"admin_profile": "Profile",
"admin_view_site": "View Site",
"admin_snippets": "Snippets",
"admin_not_installed": "Not Installed",
"admin_off": "Off",
"admin_on": "On",
"admin_add": "Add",
"admin_entry_attributes": "Entry Attributes",
"admin_fieldset_for_template": "Fieldset for template",
"admin_content": "Content",
"admin_create_new_entry": "Create New Entry",
"admin_date": "Date",
"admin_draft": "Draft",
"admin_edit": "Edit",
"admin_blocks": "Blocks",
"admin_media": "Media",
"admin_settings": "Settings",
"admin_templates": "Templates",
"admin_entry": "Entry",
"admin_fieldset": "Fieldset",
"admin_source": "Source",
"admin_upload": "Upload",
"admin_hidden": "Hidden",
"admin_image_preview": "Image preview",
"admin_move": "Move",
"admin_parent_entry": "Entry parent",
"admin_preview": "Preview",
"admin_publish": "Publish",
"admin_rename": "Rename",
"admin_save_entry": "Save entry",
"admin_template": "Template",
"admin_title": "Title",
"admin_url": "Url",
"admin_view": "View",
"admin_visibility": "Visibility",
"admin_visible": "Visible",
"admin_password": "Password",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP Version",
"admin_author_url": "Author url",
"admin_bugs": "Bugs",
"admin_description": "Description",
"admin_get_more_plugins": "Get More Plugins",
"admin_homepage": "Homepage",
"admin_info": "Info",
"admin_license": "License",
"admin_status": "Status",
"admin_disabled": "disabled",
"admin_enabled": "enabled",
"admin_version": "Version",
"admin_role": "Role",
"admin_save": "Save",
"admin_security_check_results": "Security check results",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "Clear cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "Author email",
"admin_author_name": "Author name",
"admin_site_description": "Site description",
"admin_site_keywords": "Site keywords",
"admin_site_robots": "Robots",
"admin_site_title": "Site title",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Locale",
"admin_entry_main": "Main entry",
"admin_theme": "Theme",
"admin_timezone": "Timezone",
"admin_username": "Username",
"admin_create_user": "Create User",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Delete Category",
"admin_create_new_item": "Create New Item",
"admin_delete": "Delete",
"admin_order": "Order",
"admin_edit_category": "Edit category",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Create New Template",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Duplicate",
"admin_summary": "Summary",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Partial",
"admin_clone": "Clone",
"admin_create_new_snippet": "Create New Snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Create New Template",
"admin_message_template_created": "Template created",
"admin_message_template_deleted": "Template deleted",
"admin_message_template_renamed": "Template renamed",
"admin_message_template_duplicated": "Template duplicated",
"admin_message_template_saved": "Template saved",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet saved",
"admin_message_snippet_created": "Snippet created",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet deleted",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Copy",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "المُدير",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "إلغاء",
"admin_create": "إنشاء",
"admin_debugging": "وضع تصحيح الأخطاء",
"admin_email": "البريد الإلكتروني",
"admin_flextype_version": "نسخة Flextype",
"admin_information": "معلومات",
"admin_installed": "المثبت",
"admin_keywords": "كلمات مفتاحية",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "تسجيل الدخول",
"admin_entries": "عناصر",
"admin_extends": "تمديد",
"admin_plugins": "الإضافات",
"admin_themes": "الثيمات",
"admin_help": "المساعدة",
"admin_getting_help": "الحصول على مساعدة",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "تسجيل الخروج",
"admin_profile": "الملفّ الشّخصي",
"admin_view_site": "عرض الموقع",
"admin_snippets": "أكواد",
"admin_not_installed": "غير مثبت",
"admin_off": "إيقاف",
"admin_on": "تشغيل",
"admin_add": "أضف",
"admin_entry_attributes": "سمات الادخال",
"admin_fieldset_for_template": "مجموعة الحقول للقالب",
"admin_content": "المحتوى",
"admin_create_new_entry": "إنشاء مدخل جديد",
"admin_date": "التاريخ",
"admin_draft": "مسودة",
"admin_edit": "تعديل",
"admin_blocks": "المحظورون",
"admin_media": "وسائط",
"admin_settings": "الإعدادات",
"admin_templates": "قوالب",
"admin_entry": "مدخل",
"admin_fieldset": "حقول",
"admin_source": "المصدر",
"admin_upload": "رفع",
"admin_hidden": "مخفي",
"admin_image_preview": "معاينة الصورة (Automatic Translation)",
"admin_move": "نقل",
"admin_parent_entry": "دخول الأصل",
"admin_preview": "المعاينة",
"admin_publish": "نَشر",
"admin_rename": "إعادة تسمية",
"admin_save_entry": "حفظ الدخل",
"admin_template": "قالب",
"admin_title": "العنوان",
"admin_url": "الرابط",
"admin_view": "View",
"admin_visibility": "Visibility",
"admin_visible": "Visible",
"admin_password": "Password",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP Version",
"admin_author_url": "Author url",
"admin_bugs": "Bugs",
"admin_description": "Description",
"admin_get_more_plugins": "Get More Plugins",
"admin_homepage": "Homepage",
"admin_info": "Info",
"admin_license": "License",
"admin_status": "Status",
"admin_disabled": "disabled",
"admin_enabled": "enabled",
"admin_version": "Version",
"admin_role": "Role",
"admin_save": "Save",
"admin_security_check_results": "Security check results",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "Clear cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "Author email",
"admin_author_name": "Author name",
"admin_site_description": "Site description",
"admin_site_keywords": "Site keywords",
"admin_site_robots": "Robots",
"admin_site_title": "Site title",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Locale",
"admin_entry_main": "Main entry",
"admin_theme": "Theme",
"admin_timezone": "Timezone",
"admin_username": "Username",
"admin_create_user": "Create User",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Delete Category",
"admin_create_new_item": "Create New Item",
"admin_delete": "Delete",
"admin_order": "Order",
"admin_edit_category": "Edit category",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Create New Template",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Duplicate",
"admin_summary": "Summary",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Partial",
"admin_clone": "Clone",
"admin_create_new_snippet": "Create New Snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Create New Template",
"admin_message_template_created": "Template created",
"admin_message_template_deleted": "Template deleted",
"admin_message_template_renamed": "Template renamed",
"admin_message_template_duplicated": "Template duplicated",
"admin_message_template_saved": "Template saved",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet saved",
"admin_message_snippet_created": "Snippet created",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet deleted",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Copy",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Admin",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Cancel",
"admin_create": "Create",
"admin_debugging": "Debugging",
"admin_email": "Email",
"admin_flextype_version": "Flextype Version",
"admin_information": "Information",
"admin_installed": "Installed",
"admin_keywords": "Keywords",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Login",
"admin_entries": "Entries",
"admin_extends": "Extends",
"admin_plugins": "Plugins",
"admin_themes": "Themes",
"admin_help": "Help",
"admin_getting_help": "Getting Help",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Logout",
"admin_profile": "Profile",
"admin_view_site": "View Site",
"admin_snippets": "Snippets",
"admin_not_installed": "Not Installed",
"admin_off": "Off",
"admin_on": "On",
"admin_add": "Add",
"admin_entry_attributes": "Entry Attributes",
"admin_fieldset_for_template": "Fieldset for template",
"admin_content": "Content",
"admin_create_new_entry": "Create New Entry",
"admin_date": "Date",
"admin_draft": "Draft",
"admin_edit": "Edit",
"admin_blocks": "Blocks",
"admin_media": "Media",
"admin_settings": "Settings",
"admin_templates": "Templates",
"admin_entry": "Entry",
"admin_fieldset": "Fieldset",
"admin_source": "Source",
"admin_upload": "Upload",
"admin_hidden": "Hidden",
"admin_image_preview": "Image preview",
"admin_move": "Move",
"admin_parent_entry": "Entry parent",
"admin_preview": "Preview",
"admin_publish": "Publish",
"admin_rename": "Rename",
"admin_save_entry": "Save entry",
"admin_template": "Template",
"admin_title": "Title",
"admin_url": "Url",
"admin_view": "View",
"admin_visibility": "Visibility",
"admin_visible": "Visible",
"admin_password": "Password",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP Version",
"admin_author_url": "Author url",
"admin_bugs": "Bugs",
"admin_description": "Description",
"admin_get_more_plugins": "Get More Plugins",
"admin_homepage": "Homepage",
"admin_info": "Info",
"admin_license": "License",
"admin_status": "Status",
"admin_disabled": "disabled",
"admin_enabled": "enabled",
"admin_version": "Version",
"admin_role": "Role",
"admin_save": "Save",
"admin_security_check_results": "Security check results",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "Clear cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "Author email",
"admin_author_name": "Author name",
"admin_site_description": "Site description",
"admin_site_keywords": "Site keywords",
"admin_site_robots": "Robots",
"admin_site_title": "Site title",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Locale",
"admin_entry_main": "Main entry",
"admin_theme": "Theme",
"admin_timezone": "Timezone",
"admin_username": "Username",
"admin_create_user": "Create User",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Delete Category",
"admin_create_new_item": "Create New Item",
"admin_delete": "Delete",
"admin_order": "Order",
"admin_edit_category": "Edit category",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Create New Template",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Duplicate",
"admin_summary": "Summary",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Partial",
"admin_clone": "Clone",
"admin_create_new_snippet": "Create New Snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Create New Template",
"admin_message_template_created": "Template created",
"admin_message_template_deleted": "Template deleted",
"admin_message_template_renamed": "Template renamed",
"admin_message_template_duplicated": "Template duplicated",
"admin_message_template_saved": "Template saved",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet saved",
"admin_message_snippet_created": "Snippet created",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet deleted",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Copy",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Admin",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Zpět",
"admin_create": "Vytvořit",
"admin_debugging": "Zobrazování chybových hlášek",
"admin_email": "E-mail",
"admin_flextype_version": "Verze Flextype",
"admin_information": "Information",
"admin_installed": "Instalováno",
"admin_keywords": "Klíčová slova",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Přihlášení",
"admin_entries": "Entries",
"admin_extends": "Extends",
"admin_plugins": "Plugins",
"admin_themes": "Themes",
"admin_help": "Help",
"admin_getting_help": "Getting Help",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Logout",
"admin_profile": "Profile",
"admin_view_site": "Zobrazit web",
"admin_snippets": "Výstřižky kódu",
"admin_not_installed": "Není instalováno",
"admin_off": "zakázáno",
"admin_on": "povoleno",
"admin_add": "Přidat",
"admin_entry_attributes": "Entry Attributes",
"admin_fieldset_for_template": "Fieldset for template",
"admin_content": "Obsah",
"admin_create_new_entry": "Create New Entry",
"admin_date": "Datum",
"admin_draft": "Draft",
"admin_edit": "Upravit",
"admin_blocks": "Blocks",
"admin_media": "Media",
"admin_settings": "Nastavení",
"admin_templates": "Šablony",
"admin_entry": "Entry",
"admin_fieldset": "Datové pole",
"admin_source": "Source",
"admin_upload": "Upload",
"admin_hidden": "Hidden",
"admin_image_preview": "Image preview",
"admin_move": "Přesunout",
"admin_parent_entry": "Entry parent",
"admin_preview": "Náhled",
"admin_publish": "Publish",
"admin_rename": "Přejmenovat",
"admin_save_entry": "Save entry",
"admin_template": "Šablona",
"admin_title": "Název",
"admin_url": "Url",
"admin_view": "View",
"admin_visibility": "Viditelnost",
"admin_visible": "Visible",
"admin_password": "Heslo",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP Version",
"admin_author_url": "Author url",
"admin_bugs": "Bugs",
"admin_description": "Popis",
"admin_get_more_plugins": "Get More Plugins",
"admin_homepage": "Homepage",
"admin_info": "Info",
"admin_license": "License",
"admin_status": "Status",
"admin_disabled": "disabled",
"admin_enabled": "enabled",
"admin_version": "Version",
"admin_role": "Role",
"admin_save": "Uložit",
"admin_security_check_results": "Výsledek bezpečnostního testu",
"admin_security_check_results_debug": "Zobrazování chybových hlášek představuje velké bezpečnostní riziko. Proto důrazně doporučujeme na produkčním webu zobrazování chybových hlášek zakázat!",
"admin_security_check_results_htaccess": "Soubor .htaccess je zapisovatelný. Doporučujeme odstranit všechna práva k zápisu. <br>Na unix systémech to můžete udělat pomocí příkazu: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "Soubor index.php je zapisovatelný. Doporučujeme odstranit všechna práva k zápisu. <br>Na unix systémech to můžete udělat pomocí příkazu: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "Clear cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "Author email",
"admin_author_name": "Author name",
"admin_site_description": "Site description",
"admin_site_keywords": "Site keywords",
"admin_site_robots": "Robots",
"admin_site_title": "Site title",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Locale",
"admin_entry_main": "Main entry",
"admin_theme": "Theme",
"admin_timezone": "Timezone",
"admin_username": "Uživatelské jméno",
"admin_create_user": "Create User",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Delete Category",
"admin_create_new_item": "Create New Item",
"admin_delete": "Delete",
"admin_order": "Order",
"admin_edit_category": "Edit category",
"admin_fieldsets": "Datová pole",
"admin_template_create_new": "Vytvořit novou šablonu",
"admin_create_new_fieldset": "Vytvořit nové datové pole",
"admin_duplicate": "Duplikovat",
"admin_summary": "Souhrn",
"admin_snippet": "Výstřižek kódu",
"admin_type": "Typ",
"admin_partial": "Partial",
"admin_clone": "Duplikovat",
"admin_create_new_snippet": "Vytvořit nový výstřižek kódu",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Vytvořit novou šablonu",
"admin_message_template_created": "Šablona byla vytvořena",
"admin_message_template_deleted": "Šablona byla odstraněna",
"admin_message_template_renamed": "Šablona byla přejmenována",
"admin_message_template_duplicated": "Šablona byla duplikována",
"admin_message_template_saved": "Šablona byla uložena",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Výstřižek kódu uložen",
"admin_message_snippet_created": "Výstřižek kódu vytvořen",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Výstřižek kódu odstraněn",
"admin_message_snippet_renamed": "Výstřižek kódu přejmenován",
"admin_message_snippet_duplicated": "Výstřižek kódu duplikován",
"admin_message_fieldset_saved": "Datové pole uloženo",
"admin_message_fieldset_created": "Datové pole vytvořeno",
"admin_message_fieldset_deleted": "Datové pole odstraněno",
"admin_message_fieldset_renamed": "Datové pole přejmenováno",
"admin_message_fieldset_duplicated": "Datové pole duplikováno",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Soubory cache byly odstraněny",
"admin_message_entry_changes_saved": "Změny byly uloženy",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Stránka byla duplikována",
"admin_message_entry_created": "Stránka byla vytvořena",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Stránka byla odstraněna",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "Soubor byl odstraněn",
"admin_message_entry_file_uploaded": "Soubor byl v pořádku nahrán",
"admin_message_entry_file_not_uploaded": "Soubor nebyl nahrán",
"admin_message_entry_moved": "Stránka byla přesunuta",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Stránka byla přejmenována",
"admin_message_settings_saved": "Nastavení uloženo",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Špatné uživatelské jméno nebo heslo",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Vložený kód",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Zkopírovat",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Jméno",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Administrator",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Fortryd",
"admin_create": "Opret",
"admin_debugging": "Debugging",
"admin_email": "E-mail",
"admin_flextype_version": "Flextype version",
"admin_information": "Information",
"admin_installed": "Installeret",
"admin_keywords": "Søgeord",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Log på",
"admin_entries": "Poster",
"admin_extends": "Udvider",
"admin_plugins": "Plugins",
"admin_themes": "Temaer",
"admin_help": "Hjælp",
"admin_getting_help": "Få hjælp",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Log ud",
"admin_profile": "Profil",
"admin_view_site": "Vis websted",
"admin_snippets": "Snippets",
"admin_not_installed": "Ikke installeret",
"admin_off": "Af",
"admin_on": "Til",
"admin_add": "Tilføj",
"admin_entry_attributes": "Indtastningsattributter",
"admin_fieldset_for_template": "Fieldset til skabelon",
"admin_content": "Indhold",
"admin_create_new_entry": "Opret ny post",
"admin_date": "Dato",
"admin_draft": "Kladde",
"admin_edit": "Rediger",
"admin_blocks": "Blokke",
"admin_media": "Medier",
"admin_settings": "Indstillinger",
"admin_templates": "Skabeloner",
"admin_entry": "Post",
"admin_fieldset": "Feltsæt",
"admin_source": "Kilde",
"admin_upload": "Upload",
"admin_hidden": "Skjult",
"admin_image_preview": "Billedeeksermpel",
"admin_move": "Flyt",
"admin_parent_entry": "Postens parent",
"admin_preview": "Forhåndsvisning",
"admin_publish": "Udgiv",
"admin_rename": "Omdøb",
"admin_save_entry": "Gem post",
"admin_template": "Skabelon",
"admin_title": "Titel",
"admin_url": "Url",
"admin_view": "Vis",
"admin_visibility": "Synlighed",
"admin_visible": "Synlig",
"admin_password": "Kodeord",
"admin_php_built_on": "PHP bygget den",
"admin_php_version": "PHP-version",
"admin_author_url": "Forfatter url",
"admin_bugs": "Fejl",
"admin_description": "Beskriveslse",
"admin_get_more_plugins": "Installer flere udvidelser",
"admin_homepage": "Hjemmeside",
"admin_info": "Info",
"admin_license": "Licens",
"admin_status": "Status",
"admin_disabled": "deaktiveret",
"admin_enabled": "aktiveret",
"admin_version": "Version",
"admin_role": "Rolle",
"admin_save": "Gem",
"admin_security_check_results": "Sikkerhedstjek resultater",
"admin_security_check_results_debug": "På grund af mængden af infomationer en fejl kan give hackere når DISPLAY ERRORS TRUE, anbefaler vi kraftigt at sætte DISPLAY ERRORS FALSE på produktions systemer.",
"admin_security_check_results_htaccess": "Flextype .htaccess filen er fundet skrivebar. Vi anbefaler at du fjerner alle skrive rettigheder. <br>Du kan gøre dette på UNIX systemer med: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "Flextype index.php filen er fundet skrivebar. Vi anbefaler at du fjerner alle skrive rettigheder. <br>Du kan gøre dette på UNIX systemer med: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Webside",
"admin_clear_cache": "Ryd cache",
"admin_error404_title": "Fejl404 post titel",
"admin_error404_description": "Fejl404 post beskrivelse",
"admin_error404_content": "Fejl404 post indhold",
"admin_error404_template": "Fejl404 post skabelon",
"admin_heading": "Indstillinger",
"admin_general": "Generelt",
"admin_error_404_page": "Fejl 404 side",
"admin_cache": "Cache",
"admin_author_email": "Forfatter e-mail",
"admin_author_name": "Forfatter navn",
"admin_site_description": "Hjemmesidens beskrivelse",
"admin_site_keywords": "Hjemmesidens søgeord",
"admin_site_robots": "Robotter",
"admin_site_title": "Hjemmesidens titel",
"admin_system": "System",
"admin_cache_driver": "Cache-driver",
"admin_cache_enabled": "Cache slået til",
"admin_cache_lifetime": "Cache levetid",
"admin_cache_prefix": "Cache-præfiks",
"admin_charset": "Tegnsæt",
"admin_date_format": "Datoformat",
"admin_errors_display": "Vis fejl",
"admin_locale": "Landestandard",
"admin_entry_main": "Hoved post",
"admin_theme": "Tema",
"admin_timezone": "Tidszone",
"admin_username": "Brugernavn",
"admin_create_user": "Opret bruger",
"admin_create_new_user": "Opret ny bruger",
"admin_web_server": "Webserver",
"admin_web_server_php_interface": "WebServer til PHP Interface",
"admin_create_new_category": "Opret ny kategori",
"admin_delete_category": "Slet kategori",
"admin_create_new_item": "Opret ny",
"admin_delete": "Slet",
"admin_order": "Rækkefølge",
"admin_edit_category": "Rediger kategori",
"admin_fieldsets": "Feltsæt",
"admin_template_create_new": "Opret ny skabelon",
"admin_create_new_fieldset": "Oprette nyt feltsæt",
"admin_duplicate": "Dupliker",
"admin_summary": "Resumé",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Delvis",
"admin_clone": "Klon",
"admin_create_new_snippet": "Opret ny Snippet",
"admin_message_snippet_was_not_deleted": "Snippet blev ikke slettet",
"admin_message_snippet_was_not_renamed": "Snippet blev ikke omdøbt",
"admin_message_snippet_was_not_duplicated": "Snippet blev ikke duplikeret",
"admin_message_snippet_was_not_saved": "Snippet blev ikke gemt",
"admin_create_new_template": "Opret ny skabelon",
"admin_message_template_created": "Skabelon oprettet",
"admin_message_template_deleted": "Skabelon slettet",
"admin_message_template_renamed": "Skabelon omdøbt",
"admin_message_template_duplicated": "Skabelon duplikeret",
"admin_message_template_saved": "Skabelon gemt",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet gemt",
"admin_message_snippet_created": "Snippet oprettet",
"admin_message_snippet_was_not_created": "Snippet blev ikke oprettet",
"admin_message_snippet_deleted": "Snippet slettet",
"admin_message_snippet_renamed": "Snippet omdøbt",
"admin_message_snippet_duplicated": "Snippet duplikeret",
"admin_message_fieldset_saved": "Feltsæt gemt",
"admin_message_fieldset_created": "Feltsæt oprettet",
"admin_message_fieldset_deleted": "Feltsæt slettet",
"admin_message_fieldset_renamed": "Feltsæt omdøbt",
"admin_message_fieldset_duplicated": "Feltsæt duplikeret",
"admin_message_entry_duplicated": "Post duplikeret",
"admin_message_entry_was_not_duplicated": "Post blev ikke duplikeret",
"admin_message_cache_files_deleted": "Cache filer slettet",
"admin_message_entry_changes_saved": "Ændringerne blev gemt",
"admin_message_entry_changes_not_saved": "Ændringerne blev ikke gemt",
"admin_message_entry_cloned": "Post klonet",
"admin_message_entry_created": "Post oprettet",
"admin_message_entry_was_not_created": "Posten blev ikke oprettet",
"admin_message_entry_deleted": "Post slettet",
"admin_message_entry_was_not_renamed": "Posten blev ikke omdøbt",
"admin_message_entry_was_not_deleted": "Posten blev ikke slettet",
"admin_message_entry_file_deleted": "Fil slettet korrekt",
"admin_message_entry_file_uploaded": "Filen blev uploadet korrekt",
"admin_message_entry_file_not_uploaded": "Filen bliver ikke uploaded",
"admin_message_entry_moved": "Post flyttet",
"admin_message_entry_was_not_moved": "Posten blev ikke flyttet",
"admin_message_entry_renamed": "Post omdøbt",
"admin_message_settings_saved": "Indstillinger gemt",
"admin_message_settings_was_not_saved": "Indstillinger blev ikke gemt",
"admin_message_wrong_username_password": "Forkert brugernavn eller adgangskode",
"admin_quality": "Kvalitet",
"admin_width": "Bredde",
"admin_height": "Højde",
"admin_accept_file_types": "Acceptér filtyper",
"admin_embeded_code": "Indkapslet kode",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP-kode",
"admin_choose_files_to_upload": "Vælg fil",
"admin_browse_files": "Gennemse",
"admin_copy": "Kopier",
"admin_admin_panel": "Administrationspanel",
"admin_light": "Lys",
"admin_dark": "Mørk",
"admin_name": "Navn",
"admin_memcached_server": "Memcachet-server",
"admin_memcached_port": "Memcache-port",
"admin_redis_socket": "Redis socket",
"admin_redis_password": "Redis adgangskode",
"admin_redis_server": "Redis-server",
"admin_redis_port": "Redis-port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 tabel",
"admin_error_name_empty_input": "Navnet skal være en alfanumerisk værdi (fra 1 tegn)",
"admin_error_title_empty_input": "Titlen skal være en alfanumerisk værdi (fra 1 tegn)",
"admin_entries_visible": "Synlig",
"admin_entries_draft": "Kladde",
"admin_entries_hidden": "Skjult",
"admin_menu_item_title": "Titel",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Destination",
"admin_menu_item_order": "Rækkefølge",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Administrator",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Abbrechen",
"admin_create": "Erstellen",
"admin_debugging": "Debuggen",
"admin_email": "E-Mail",
"admin_flextype_version": "Flextype Version",
"admin_information": "Informationen",
"admin_installed": "Installiert",
"admin_keywords": "Schlagwörter",
"admin_documentation": "Dokumentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Login",
"admin_entries": "Einträge",
"admin_extends": "Erweiterungen",
"admin_plugins": "Plugins",
"admin_themes": "Themes",
"admin_help": "Hilfe",
"admin_getting_help": "Dokumentation",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Ausloggen",
"admin_profile": "Profil",
"admin_view_site": "Seite ansehen",
"admin_snippets": "Schnipsel",
"admin_not_installed": "Nicht installiert",
"admin_off": "Aus",
"admin_on": "An",
"admin_add": "Hinzufügen",
"admin_entry_attributes": "Eintragsattribute",
"admin_fieldset_for_template": "Fieldset für Vorlage",
"admin_content": "Inhalt",
"admin_create_new_entry": "Neuen Eintrag erstellen",
"admin_date": "Datum",
"admin_draft": "Entwurf",
"admin_edit": "Bearbeiten",
"admin_blocks": "Blöcke",
"admin_media": "Medien",
"admin_settings": "Einstellungen",
"admin_templates": "Vorlagen",
"admin_entry": "Eintrag",
"admin_fieldset": "Felder",
"admin_source": "Quelle",
"admin_upload": "Hochladen",
"admin_hidden": "Versteckt",
"admin_image_preview": "Bildvorschau",
"admin_move": "Verschieben",
"admin_parent_entry": "Übergeordneter Eintrag",
"admin_preview": "Vorschau",
"admin_publish": "Veröffentlichen",
"admin_rename": "Umbenennen",
"admin_save_entry": "Eintrag speichern",
"admin_template": "Vorlage",
"admin_title": "Titel",
"admin_url": "Url",
"admin_view": "Ansehen",
"admin_visibility": "Sichtbarkeit",
"admin_visible": "Sichtbar",
"admin_password": "Passwort",
"admin_php_built_on": "Basiert auf PHP",
"admin_php_version": "PHP Version",
"admin_author_url": "Autor Url",
"admin_bugs": "Fehler",
"admin_description": "Beschreibung",
"admin_get_more_plugins": "Mehr Plugins finden",
"admin_homepage": "Startseite",
"admin_info": "Info",
"admin_license": "Lizenz",
"admin_status": "Status",
"admin_disabled": "deaktiviert",
"admin_enabled": "aktiviert",
"admin_version": "Version",
"admin_role": "Rolle",
"admin_save": "Speichern",
"admin_security_check_results": "Ergebnisse der Sicherheitsprüfung",
"admin_security_check_results_debug": "Aufgrund des Typs und der Menge an Informationen die das Anzeigen von Fehlern an böswillige Besucher ausgeben könnte empfehlen wir ausdrücklich auf Produktivinstallationen diese Option zu deaktivieren.",
"admin_security_check_results_htaccess": "Die Flextype .htaccess Datei ist schreibbar. Wir empfehlen alle Schreib-Berechtigungen zu entfernen. Du kannst dies auf Unix-Systemen mit \"chmod a-w :path\" tun.",
"admin_security_check_results_index": "Die Flextype index.php Datei ist schreibbar. Wir empfehlen alle Schreib-Berechtigungen zu entfernen. Du kannst dies auf Unix-Systemen mit \"chmod a-w :path\" tun.",
"admin_server": "Server",
"admin_site": "Seite",
"admin_clear_cache": "Cache löschen",
"admin_error404_title": "Fehler 404 Eintrag Titel",
"admin_error404_description": "Fehler 404 Eintrag Beschreibung",
"admin_error404_content": "Fehler 404 Eintrag Inhalt",
"admin_error404_template": "Fehler 404 Eintrag Vorlage",
"admin_heading": "Einstellungen",
"admin_general": "Allgemein",
"admin_error_404_page": "Fehler 404 Eintrag",
"admin_cache": "Cache",
"admin_author_email": "Autor E-Mail",
"admin_author_name": "Autor Name",
"admin_site_description": "Seitenbeschreibung",
"admin_site_keywords": "Seitenschlagwörter",
"admin_site_robots": "Robots",
"admin_site_title": "Seitentitel",
"admin_system": "System",
"admin_cache_driver": "Cachetreiber",
"admin_cache_enabled": "Cache aktiviert",
"admin_cache_lifetime": "Cache Lebenszeit",
"admin_cache_prefix": "Cache Prefix",
"admin_charset": "Zeichensatz",
"admin_date_format": "Datumsformat",
"admin_errors_display": "Fehler anzeigen",
"admin_locale": "Sprache",
"admin_entry_main": "Startseite",
"admin_theme": "Theme",
"admin_timezone": "Zeitzone",
"admin_username": "Benutzername",
"admin_create_user": "Benutzer erstellen",
"admin_create_new_user": "Neuen Benutzer anlegen",
"admin_web_server": "Webserver",
"admin_web_server_php_interface": "PHP-Schnittstelle",
"admin_create_new_category": "Neue Kategorie anlegen",
"admin_delete_category": "Kategorie löschen",
"admin_create_new_item": "Neuen Eintrag erstellen",
"admin_delete": "Löschen",
"admin_order": "Reihenfolge",
"admin_edit_category": "Kategorie bearbeiten",
"admin_fieldsets": "Felder",
"admin_template_create_new": "Neue Vorlage erstellen",
"admin_create_new_fieldset": "Neues Fieldset erstellen",
"admin_duplicate": "Duplizieren",
"admin_summary": "Zusammenfassung",
"admin_snippet": "Schnipsel",
"admin_type": "Typ",
"admin_partial": "Blöcke",
"admin_clone": "Duplizieren",
"admin_create_new_snippet": "Neuen Schnipsel erstellen",
"admin_message_snippet_was_not_deleted": "Snippet wurde nicht gelöscht",
"admin_message_snippet_was_not_renamed": "Snippet wurde nicht umbenannt",
"admin_message_snippet_was_not_duplicated": "Snippet wurde nicht dupliziert",
"admin_message_snippet_was_not_saved": "Snippet wurde nicht gespeichert",
"admin_create_new_template": "Neue Vorlage erstellen",
"admin_message_template_created": "Vorlage erstellt",
"admin_message_template_deleted": "Vorlage gelöscht",
"admin_message_template_renamed": "Vorlage umbenannt",
"admin_message_template_duplicated": "Vorlage dupliziert",
"admin_message_template_saved": "Vorlage gespeichert",
"admin_message_template_was_not_created": "Template wurde nicht umbenannt",
"admin_message_partial_was_not_created": "Block wurde nicht umbenannt",
"admin_message_partial_created": "Block erstellt",
"admin_message_partial_deleted": "Block gelöscht",
"admin_message_partial_was_not_deleted": "Block wurde nicht gelöscht",
"admin_message_snippet_saved": "Schnipsel gespeichert",
"admin_message_snippet_created": "Schnipsel erstellt",
"admin_message_snippet_was_not_created": "Snippet wurde nicht erstellt",
"admin_message_snippet_deleted": "Schnipsel gelöscht",
"admin_message_snippet_renamed": "Schnipsel umbenannt",
"admin_message_snippet_duplicated": "Schnipsel dupliziert",
"admin_message_fieldset_saved": "Fieldset gespeichert",
"admin_message_fieldset_created": "Fieldset erstellt",
"admin_message_fieldset_deleted": "Fieldset gelöscht",
"admin_message_fieldset_renamed": "Fieldset umbenannt",
"admin_message_fieldset_duplicated": "Fieldset dupliziert",
"admin_message_entry_duplicated": "Eintrag dupliziert",
"admin_message_entry_was_not_duplicated": "Eintrag wurde nicht dupliziert",
"admin_message_cache_files_deleted": "Cache Dateien gelöscht",
"admin_message_entry_changes_saved": "Änderungen erfolgreich gespeichert",
"admin_message_entry_changes_not_saved": "Änderungen nicht gespeichert",
"admin_message_entry_cloned": "Eintrag dupliziert",
"admin_message_entry_created": "Eintrag erstellt",
"admin_message_entry_was_not_created": "Eintrag wurde nicht erstellt",
"admin_message_entry_deleted": "Eintrag gelöscht",
"admin_message_entry_was_not_renamed": "Eintrag wurde nicht umbenannt",
"admin_message_entry_was_not_deleted": "Eintrag wurde nicht gelöscht",
"admin_message_entry_file_deleted": "Datei erfolgreich gelöscht",
"admin_message_entry_file_uploaded": "Datei erfolgreich hochgeladen",
"admin_message_entry_file_not_uploaded": "Datei konnte nicht hochgeladen werden",
"admin_message_entry_moved": "Eintrag verschoben",
"admin_message_entry_was_not_moved": "Eintrag wurde nicht verschoben",
"admin_message_entry_renamed": "Eintrag umbenannt",
"admin_message_settings_saved": "Einstellungen gespeichert",
"admin_message_settings_was_not_saved": "Einstellungen wurden nicht gespeichert",
"admin_message_wrong_username_password": "Benutzername oder Passwort falsch",
"admin_quality": "Qualität",
"admin_width": "Breite",
"admin_height": "Höhe",
"admin_accept_file_types": "Erlaubte Dateitypen",
"admin_embeded_code": "Eingebetteter Code",
"admin_shortcode": "Kurzcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Datei auswählen",
"admin_browse_files": "Durchsuchen",
"admin_copy": "Kopieren",
"admin_admin_panel": "Admin Panel",
"admin_light": "Hell",
"admin_dark": "Dunkel",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Passwort",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Datenbank",
"admin_sqlite3_table": "SQLite3 Tabelle",
"admin_error_name_empty_input": "Name muss ein alphanumerischer Wert sein (mindestens 1 Zeichen)",
"admin_error_title_empty_input": "Titel muss ein alphanumerischer Wert sein (mindestens 1 Zeichen)",
"admin_entries_visible": "Sichtbar",
"admin_entries_draft": "Entwurf",
"admin_entries_hidden": "Versteckt",
"admin_menu_item_title": "Titel",
"admin_menu_item_url": "URL",
"admin_menu_item_target": "Ziel",
"admin_menu_item_order": "Reihenfolge",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Admin",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Cancel",
"admin_create": "Create",
"admin_debugging": "Debugging",
"admin_email": "Email",
"admin_flextype_version": "Flextype Version",
"admin_information": "Information",
"admin_installed": "Installed",
"admin_keywords": "Keywords",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Login",
"admin_entries": "Entries",
"admin_extends": "Extends",
"admin_plugins": "Plugins",
"admin_themes": "Themes",
"admin_help": "Help",
"admin_getting_help": "Getting Help",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Logout",
"admin_profile": "Profile",
"admin_view_site": "View Site",
"admin_snippets": "Snippets",
"admin_not_installed": "Not Installed",
"admin_off": "Off",
"admin_on": "On",
"admin_add": "Add",
"admin_entry_attributes": "Entry Attributes",
"admin_fieldset_for_template": "Fieldset for template",
"admin_content": "Content",
"admin_create_new_entry": "Create New Entry",
"admin_date": "Date",
"admin_draft": "Draft",
"admin_edit": "Edit",
"admin_blocks": "Blocks",
"admin_media": "Media",
"admin_settings": "Settings",
"admin_templates": "Templates",
"admin_entry": "Entry",
"admin_fieldset": "Fieldset",
"admin_source": "Source",
"admin_upload": "Upload",
"admin_hidden": "Hidden",
"admin_image_preview": "Image preview",
"admin_move": "Move",
"admin_parent_entry": "Entry parent",
"admin_preview": "Preview",
"admin_publish": "Publish",
"admin_rename": "Rename",
"admin_save_entry": "Save entry",
"admin_template": "Template",
"admin_title": "Title",
"admin_url": "Url",
"admin_view": "View",
"admin_visibility": "Visibility",
"admin_visible": "Visible",
"admin_password": "Password",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP Version",
"admin_author_url": "Author url",
"admin_bugs": "Bugs",
"admin_description": "Description",
"admin_get_more_plugins": "Get More Plugins",
"admin_homepage": "Homepage",
"admin_info": "Info",
"admin_license": "License",
"admin_status": "Status",
"admin_disabled": "disabled",
"admin_enabled": "enabled",
"admin_version": "Version",
"admin_role": "Role",
"admin_save": "Save",
"admin_security_check_results": "Security check results",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "Clear cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "Author email",
"admin_author_name": "Author name",
"admin_site_description": "Site description",
"admin_site_keywords": "Site keywords",
"admin_site_robots": "Robots",
"admin_site_title": "Site title",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Locale",
"admin_entry_main": "Main entry",
"admin_theme": "Theme",
"admin_timezone": "Timezone",
"admin_username": "Username",
"admin_create_user": "Create User",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Delete Category",
"admin_create_new_item": "Create New Item",
"admin_delete": "Delete",
"admin_order": "Order",
"admin_edit_category": "Edit category",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Create New Template",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Duplicate",
"admin_summary": "Summary",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Partial",
"admin_clone": "Clone",
"admin_create_new_snippet": "Create New Snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Create New Template",
"admin_message_template_created": "Template created",
"admin_message_template_deleted": "Template deleted",
"admin_message_template_renamed": "Template renamed",
"admin_message_template_duplicated": "Template duplicated",
"admin_message_template_saved": "Template saved",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet saved",
"admin_message_snippet_created": "Snippet created",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet deleted",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Copy",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,249 +0,0 @@
{
"admin": "Admin",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Cancel",
"admin_create": "Create",
"admin_debugging": "Debugging",
"admin_email": "Email",
"admin_flextype_version": "Flextype Version",
"admin_information": "Information",
"admin_installed": "Installed",
"admin_keywords": "Keywords",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Login",
"admin_entries": "Entries",
"admin_extends": "Extends",
"admin_plugins": "Plugins",
"admin_themes": "Themes",
"admin_help": "Help",
"admin_getting_help": "Getting Help",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Logout",
"admin_profile": "Profile",
"admin_view_site": "View Site",
"admin_snippets": "Snippets",
"admin_not_installed": "Not Installed",
"admin_off": "Off",
"admin_on": "On",
"admin_add": "Add",
"admin_entry_attributes": "Entry Attributes",
"admin_fieldset_for_template": "Fieldset for template",
"admin_content": "Content",
"admin_create_new_entry": "Create New Entry",
"admin_date": "Date",
"admin_draft": "Draft",
"admin_edit": "Edit",
"admin_blocks": "Blocks",
"admin_media": "Media",
"admin_settings": "Settings",
"admin_templates": "Templates",
"admin_entry": "Entry",
"admin_fieldset": "Fieldset",
"admin_source": "Source",
"admin_upload": "Upload",
"admin_hidden": "Hidden",
"admin_image_preview": "Image preview",
"admin_move": "Move",
"admin_parent_entry": "Entry parent",
"admin_preview": "Preview",
"admin_publish": "Publish",
"admin_rename": "Rename",
"admin_save_entry": "Save entry",
"admin_template": "Template",
"admin_title": "Title",
"admin_url": "Url",
"admin_view": "View",
"admin_visibility": "Visibility",
"admin_visible": "Visible",
"admin_password": "Password",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP Version",
"admin_author_url": "Author url",
"admin_bugs": "Bugs",
"admin_description": "Description",
"admin_get_more_plugins": "Get More Plugins",
"admin_homepage": "Homepage",
"admin_info": "Info",
"admin_license": "License",
"admin_status": "Status",
"admin_disabled": "disabled",
"admin_enabled": "enabled",
"admin_version": "Version",
"admin_role": "Role",
"admin_save": "Save",
"admin_security_check_results": "Security check results",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "Clear cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "Author email",
"admin_author_name": "Author name",
"admin_site_description": "Site description",
"admin_site_keywords": "Site keywords",
"admin_site_robots": "Robots",
"admin_site_title": "Site title",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Locale",
"admin_entry_main": "Main entry",
"admin_theme": "Theme",
"admin_timezone": "Timezone",
"admin_username": "Username",
"admin_create_user": "Create User",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Delete Category",
"admin_create_new_item": "Create New Item",
"admin_delete": "Delete",
"admin_order": "Order",
"admin_edit_category": "Edit category",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Create New Template",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Duplicate",
"admin_summary": "Summary",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Partial",
"admin_clone": "Clone",
"admin_create_new_snippet": "Create New Snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Create New Template",
"admin_message_template_created": "Template created",
"admin_message_template_deleted": "Template deleted",
"admin_message_template_renamed": "Template renamed",
"admin_message_template_duplicated": "Template duplicated",
"admin_message_template_saved": "Template saved",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet saved",
"admin_message_snippet_created": "Snippet created",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet deleted",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Copy",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_twig_auto_reload": "Twig auto reload",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -0,0 +1,245 @@
admin: Admin
admin_welcome: Welcome
admin_create_new_user_welcome: To finish setup and secure your site, please create the first user by entering the necessary information below.
admin_cancel: Cancel
admin_create: Create
admin_debugging: Debugging
admin_email: Email
admin_flextype_version: Flextype Version
admin_information: Information
admin_installed: Installed
admin_keywords: Keywords
admin_documentation: Documentation
admin_memcache_server: Memcache Server
admin_memcache_port: Memcache Port
admin_login: Login
admin_entries: Entries
admin_extends: Extends
admin_plugins: Plugins
admin_themes: Themes
admin_help: Help
admin_getting_help: Getting Help
admin_message_json_invalid: Invalid JSON
admin_logout: Logout
admin_profile: Profile
admin_view_site: View Site
admin_snippets: Snippets
admin_not_installed: Not Installed
admin_off: 'Off'
admin_on: 'On'
admin_add: Add
admin_entry_attributes: Entry Attributes
admin_fieldset_for_template: Fieldset for template
admin_content: Content
admin_create_new_entry: Create New Entry
admin_date: Date
admin_draft: Draft
admin_edit: Edit
admin_blocks: Blocks
admin_media: Media
admin_settings: Settings
admin_templates: Templates
admin_entry: Entry
admin_fieldset: Fieldset
admin_source: Source
admin_upload: Upload
admin_hidden: Hidden
admin_image_preview: Image preview
admin_move: Move
admin_parent_entry: Entry parent
admin_preview: Preview
admin_publish: Publish
admin_rename: Rename
admin_save_entry: Save entry
admin_template: Template
admin_title: Title
admin_url: Url
admin_view: View
admin_visibility: Visibility
admin_visible: Visible
admin_password: Password
admin_php_built_on: PHP Built On
admin_php_version: PHP Version
admin_author_url: Author url
admin_bugs: Bugs
admin_description: Description
admin_get_more_plugins: Get More Plugins
admin_homepage: Homepage
admin_info: Info
admin_license: License
admin_status: Status
admin_disabled: disabled
admin_enabled: enabled
admin_version: Version
admin_role: Role
admin_save: Save
admin_security_check_results: Security check results
admin_security_check_results_debug: Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.
admin_security_check_results_htaccess: 'The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>'
admin_security_check_results_index: 'The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>'
admin_server: Server
admin_site: Site
admin_clear_cache: Clear cache
admin_error404_title: Error404 entry title
admin_error404_description: Error404 entry description
admin_error404_content: Error404 entry content
admin_error404_template: Error404 entry template
admin_heading: Settings
admin_general: General
admin_error_404_page: Error 404 page
admin_cache: Cache
admin_author_email: Author email
admin_author_name: Author name
admin_site_description: Site description
admin_site_keywords: Site keywords
admin_site_robots: Robots
admin_site_title: Site title
admin_system: System
admin_cache_driver: Cache driver
admin_cache_enabled: Cache enabled
admin_cache_lifetime: Cache lifetime
admin_cache_prefix: Cache prefix
admin_charset: Charset
admin_date_format: Date format
admin_errors_display: Display errors
admin_locale: Locale
admin_entry_main: Main entry
admin_theme: Theme
admin_timezone: Timezone
admin_username: Username
admin_create_user: Create User
admin_create_new_user: Create New User
admin_web_server: Web Server
admin_web_server_php_interface: WebServer to PHP Interface
admin_create_new_category: Create New Category
admin_delete_category: Delete Category
admin_create_new_item: Create New Item
admin_delete: Delete
admin_order: Order
admin_edit_category: Edit category
admin_fieldsets: Fieldsets
admin_template_create_new: Create New Template
admin_create_new_fieldset: Create New Fieldset
admin_duplicate: Duplicate
admin_summary: Summary
admin_snippet: Snippet
admin_type: Type
admin_partial: Partial
admin_clone: Clone
admin_create_new_snippet: Create New Snippet
admin_message_snippet_was_not_deleted: Snippet was not deleted
admin_message_snippet_was_not_renamed: Snippet was not renamed
admin_message_snippet_was_not_duplicated: Snippet was not duplicated
admin_message_snippet_was_not_saved: Snippet was not saved
admin_create_new_template: Create New Template
admin_message_template_created: Template created
admin_message_template_deleted: Template deleted
admin_message_template_renamed: Template renamed
admin_message_template_duplicated: Template duplicated
admin_message_template_saved: Template saved
admin_message_template_was_not_created: Template was not renamed
admin_message_partial_was_not_created: Partial was not renamed
admin_message_partial_created: Partial created
admin_message_partial_deleted: Partial deleted
admin_message_partial_was_not_deleted: Partial was not deleted
admin_message_snippet_saved: Snippet saved
admin_message_snippet_created: Snippet created
admin_message_snippet_was_not_created: Snippet was not created
admin_message_snippet_deleted: Snippet deleted
admin_message_snippet_renamed: Snippet renamed
admin_message_snippet_duplicated: Snippet duplicated
admin_message_fieldset_saved: Fieldset saved
admin_message_fieldset_created: Fieldset created
admin_message_fieldset_deleted: Fieldset deleted
admin_message_fieldset_renamed: Fieldset renamed
admin_message_fieldset_duplicated: Fieldset duplicated
admin_message_entry_duplicated: Entry duplicated
admin_message_entry_was_not_duplicated: Entry was not duplicated
admin_message_cache_files_deleted: Cache files deleted
admin_message_entry_changes_saved: Changes successfully saved
admin_message_entry_changes_not_saved: Changes not saved
admin_message_entry_cloned: Entry cloned
admin_message_entry_created: Entry created
admin_message_entry_was_not_created: Entry was not created
admin_message_entry_deleted: Entry deleted
admin_message_entry_was_not_renamed: Entry was not renamed
admin_message_entry_was_not_deleted: Entry was not deleted
admin_message_entry_file_deleted: File successfully deleted
admin_message_entry_file_uploaded: File successfully uploaded
admin_message_entry_file_not_uploaded: File was not uploaded
admin_message_entry_moved: Entry moved
admin_message_entry_was_not_moved: Entry was not moved
admin_message_entry_renamed: Entry renamed
admin_message_settings_saved: Settings saved
admin_message_settings_was_not_saved: Settings was not saved
admin_message_wrong_username_password: Wrong username or password
admin_quality: Quality
admin_width: Width
admin_height: Height
admin_accept_file_types: Accept file types
admin_embeded_code: Embeded Code
admin_shortcode: Shortcode
admin_php_code: PHP Code
admin_choose_files_to_upload: Choose file
admin_browse_files: Browse
admin_copy: Copy
admin_admin_panel: Admin Panel
admin_light: Light
admin_dark: Dark
admin_name: Name
admin_memcached_server: Memcached Server
admin_memcached_port: Memcached Port
admin_redis_socket: Redis Socket
admin_redis_password: Redis Password
admin_redis_server: Redis Server
admin_redis_port: Redis Port
admin_sqlite3_database: SQLite3 Database
admin_sqlite3_table: SQLite3 Table
admin_error_name_empty_input: Name has to be an alphanumeric value (from 1 chars)
admin_error_title_empty_input: Title has to be an alphanumeric value (from 1 chars)
admin_entries_visible: Visible
admin_entries_draft: Draft
admin_entries_hidden: Hidden
admin_menu_item_title: Title
admin_menu_item_url: Url
admin_menu_item_target: Target
admin_menu_item_order: Order
admin_template_code: Template code
admin_you_have_not_created_any_entries_yet: You haven't created any entries yet!
admin_you_have_not_created_any_snippets_yet: You haven't created any snippets yet!
admin_you_have_not_created_any_templates_yet: You haven't created any templates yet!
admin_you_have_not_created_any_fieldsets_yet: You haven't created any fieldsets yet!
admin_twig_auto_reload: Twig auto reload
admin_display_error_details: Display error details
admin_add_content_length_header: Add content length header
admin_router_cache_file: Route cache file
admin_determine_route_before_app_middleware: Determine route before app middleware
admin_output_buffering: Output buffering
admin_response_chunk_size: Response chunk size
admin_http_version: HTTP Version
admin_image_driver: Image driver
admin_whoops_editor: Whoops editor
admin_whoops_page_title: Whoops page title
admin_editor: Editor
admin_tools: Tools
admin_size: Size
admin_clear: Clear
admin_clear_cache_all: Clear All
admin_registry: Registry
admin_key: Key
admin_value: Value
admin_activate: Activate
admin_active_theme: Active Theme
admin_get_more_themes: Get More Themes
admin_images: Images
admin_data: Data
admin_slugify: Slug
admin_entries_limit: Entries limit
admin_slug: Slug
admin_slugify_separator: Separator
admin_slugify_lowercase: Lowercase
admin_slugify_trim: Trim
admin_slugify_strip_tags: Strip tags
admin_slugify_lowercase_after_regexp: Lowercase after regexp
admin_slugify_regexp: Regexp
admin_gallery_img: Gallery Image

View File

@@ -1,247 +0,0 @@
{
"admin": "Admin",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Cancel",
"admin_create": "Create",
"admin_debugging": "Debugging",
"admin_email": "Email",
"admin_flextype_version": "Flextype Version",
"admin_information": "Information",
"admin_installed": "Installed",
"admin_keywords": "Keywords",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Login",
"admin_entries": "Entries",
"admin_extends": "Extends",
"admin_plugins": "Plugins",
"admin_themes": "Themes",
"admin_help": "Help",
"admin_getting_help": "Getting Help",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Logout",
"admin_profile": "Profile",
"admin_view_site": "View Site",
"admin_snippets": "Snippets",
"admin_not_installed": "Not Installed",
"admin_off": "Off",
"admin_on": "On",
"admin_add": "Add",
"admin_entry_attributes": "Entry Attributes",
"admin_fieldset_for_template": "Fieldset for template",
"admin_content": "Content",
"admin_create_new_entry": "Create New Entry",
"admin_date": "Date",
"admin_draft": "Draft",
"admin_edit": "Edit",
"admin_blocks": "Blocks",
"admin_media": "Media",
"admin_settings": "Settings",
"admin_templates": "Templates",
"admin_entry": "Entry",
"admin_fieldset": "Fieldset",
"admin_source": "Source",
"admin_upload": "Upload",
"admin_hidden": "Hidden",
"admin_image_preview": "Image preview",
"admin_move": "Move",
"admin_parent_entry": "Entry parent",
"admin_preview": "Preview",
"admin_publish": "Publish",
"admin_rename": "Rename",
"admin_save_entry": "Save entry",
"admin_template": "Template",
"admin_title": "Title",
"admin_url": "Url",
"admin_view": "View",
"admin_visibility": "Visibility",
"admin_visible": "Visible",
"admin_password": "Password",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP Version",
"admin_author_url": "Author url",
"admin_bugs": "Bugs",
"admin_description": "Description",
"admin_get_more_plugins": "Get More Plugins",
"admin_homepage": "Homepage",
"admin_info": "Info",
"admin_license": "License",
"admin_status": "Status",
"admin_disabled": "disabled",
"admin_enabled": "enabled",
"admin_version": "Version",
"admin_role": "Role",
"admin_save": "Save",
"admin_security_check_results": "Security check results",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "Clear cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "Author email",
"admin_author_name": "Author name",
"admin_site_description": "Site description",
"admin_site_keywords": "Site keywords",
"admin_site_robots": "Robots",
"admin_site_title": "Site title",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Locale",
"admin_entry_main": "Main entry",
"admin_theme": "Theme",
"admin_timezone": "Timezone",
"admin_username": "Username",
"admin_create_user": "Create User",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Delete Category",
"admin_create_new_item": "Create New Item",
"admin_delete": "Delete",
"admin_order": "Order",
"admin_edit_category": "Edit category",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Create New Template",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Duplicate",
"admin_summary": "Summary",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Partial",
"admin_clone": "Clone",
"admin_create_new_snippet": "Create New Snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Create New Template",
"admin_message_template_created": "Template created",
"admin_message_template_deleted": "Template deleted",
"admin_message_template_renamed": "Template renamed",
"admin_message_template_duplicated": "Template duplicated",
"admin_message_template_saved": "Template saved",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet saved",
"admin_message_snippet_created": "Snippet created",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet deleted",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Copy",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Admin",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Cancel",
"admin_create": "Create",
"admin_debugging": "Debugging",
"admin_email": "Email",
"admin_flextype_version": "Flextype Version",
"admin_information": "Information",
"admin_installed": "Installed",
"admin_keywords": "Keywords",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Login",
"admin_entries": "Entries",
"admin_extends": "Extends",
"admin_plugins": "Plugins",
"admin_themes": "Themes",
"admin_help": "Help",
"admin_getting_help": "Getting Help",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Logout",
"admin_profile": "Profile",
"admin_view_site": "View Site",
"admin_snippets": "Snippets",
"admin_not_installed": "Not Installed",
"admin_off": "Off",
"admin_on": "On",
"admin_add": "Add",
"admin_entry_attributes": "Entry Attributes",
"admin_fieldset_for_template": "Fieldset for template",
"admin_content": "Content",
"admin_create_new_entry": "Create New Entry",
"admin_date": "Date",
"admin_draft": "Draft",
"admin_edit": "Edit",
"admin_blocks": "Blocks",
"admin_media": "Media",
"admin_settings": "Settings",
"admin_templates": "Templates",
"admin_entry": "Entry",
"admin_fieldset": "Fieldset",
"admin_source": "Source",
"admin_upload": "Upload",
"admin_hidden": "Hidden",
"admin_image_preview": "Image preview",
"admin_move": "Move",
"admin_parent_entry": "Entry parent",
"admin_preview": "Preview",
"admin_publish": "Publish",
"admin_rename": "Rename",
"admin_save_entry": "Save entry",
"admin_template": "Template",
"admin_title": "Title",
"admin_url": "Url",
"admin_view": "View",
"admin_visibility": "Visibility",
"admin_visible": "Visible",
"admin_password": "Password",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP Version",
"admin_author_url": "Author url",
"admin_bugs": "Bugs",
"admin_description": "Description",
"admin_get_more_plugins": "Get More Plugins",
"admin_homepage": "Homepage",
"admin_info": "Info",
"admin_license": "License",
"admin_status": "Status",
"admin_disabled": "disabled",
"admin_enabled": "enabled",
"admin_version": "Version",
"admin_role": "Role",
"admin_save": "Save",
"admin_security_check_results": "Security check results",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "Clear cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "Author email",
"admin_author_name": "Author name",
"admin_site_description": "Site description",
"admin_site_keywords": "Site keywords",
"admin_site_robots": "Robots",
"admin_site_title": "Site title",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Locale",
"admin_entry_main": "Main entry",
"admin_theme": "Theme",
"admin_timezone": "Timezone",
"admin_username": "Username",
"admin_create_user": "Create User",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Delete Category",
"admin_create_new_item": "Create New Item",
"admin_delete": "Delete",
"admin_order": "Order",
"admin_edit_category": "Edit category",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Create New Template",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Duplicate",
"admin_summary": "Summary",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Partial",
"admin_clone": "Clone",
"admin_create_new_snippet": "Create New Snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Create New Template",
"admin_message_template_created": "Template created",
"admin_message_template_deleted": "Template deleted",
"admin_message_template_renamed": "Template renamed",
"admin_message_template_duplicated": "Template duplicated",
"admin_message_template_saved": "Template saved",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet saved",
"admin_message_snippet_created": "Snippet created",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet deleted",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Copy",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,197 +0,0 @@
{
"admin": "Admin",
"admin_cancel": "Cancel",
"admin_create": "Create",
"admin_debugging": "Debugging",
"admin_email": "Email",
"admin_flextype_version": "Flextype Version",
"admin_information": "Information",
"admin_installed": "Installed",
"admin_keywords": "Keywords",
"admin_login": "Login",
"admin_entries": "Entries",
"admin_extends": "Extends",
"admin_plugins": "Plugins",
"admin_themes": "Themes",
"admin_help": "Help",
"admin_getting_help": "Getting Help",
"admin_logout": "Logout",
"admin_profile": "Profile",
"admin_view_site": "View Site",
"admin_snippets": "Snippets",
"admin_not_installed": "Not Installed",
"admin_off": "Off",
"admin_on": "On",
"admin_add": "Add",
"admin_entry_attributes": "Entry Attributes",
"admin_fieldset_for_template": "Fieldset for template",
"admin_content": "Content",
"admin_create_new_entry": "Create New Entry",
"admin_date": "Date",
"admin_draft": "Draft",
"admin_edit": "Edit",
"admin_blocks": "Blocks",
"admin_media": "Media",
"admin_settings": "Settings",
"admin_templates": "Templates",
"admin_entry": "Entry",
"admin_fieldset": "Fieldset",
"admin_source": "Source",
"admin_upload": "Upload",
"admin_hidden": "Hidden",
"admin_image_preview": "Image preview",
"admin_move": "Move",
"admin_parent_entry": "Entry parent",
"admin_preview": "Preview",
"admin_publish": "Publish",
"admin_rename": "Rename",
"admin_save_entry": "Save entry",
"admin_template": "Template",
"admin_title": "Title",
"admin_url": "Url",
"admin_view": "View",
"admin_visibility": "Visibility",
"admin_visible": "Visible",
"admin_password": "Password",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP Version",
"admin_author_url": "Author url",
"admin_bugs": "Bugs",
"admin_description": "Description",
"admin_get_more_plugins": "Get More Plugins",
"admin_homepage": "Homepage",
"admin_info": "Info",
"admin_license": "License",
"admin_status": "Status",
"admin_disabled": "disabled",
"admin_enabled": "enabled",
"admin_version": "Version",
"admin_role": "Role",
"admin_save": "Save",
"admin_security_check_results": "Security check results",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "Clear cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "Author email",
"admin_author_name": "Author name",
"admin_site_description": "Site description",
"admin_site_keywords": "Site keywords",
"admin_site_robots": "Robots",
"admin_site_title": "Site title",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Locale",
"admin_entry_main": "Main entry",
"admin_theme": "Theme",
"admin_timezone": "Timezone",
"admin_username": "Username",
"admin_create_user": "Create User",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Delete Category",
"admin_create_new_item": "Create New Item",
"admin_delete": "Delete",
"admin_order": "Order",
"admin_edit_category": "Edit category",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Create New Template",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Duplicate",
"admin_summary": "Summary",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Partial",
"admin_clone": "Clone",
"admin_create_new_snippet": "Create New Snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Create New Template",
"admin_message_template_created": "Template created",
"admin_message_template_deleted": "Template deleted",
"admin_message_template_renamed": "Template renamed",
"admin_message_template_duplicated": "Template duplicated",
"admin_message_template_saved": "Template saved",
"admin_message_snippet_saved": "Snippet saved",
"admin_message_snippet_created": "Snippet created",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet deleted",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Copy",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Admin",
"admin_welcome": "Bienvenue",
"admin_create_new_user_welcome": "Afin de terminer l'installation de votre site et de le sécuriser, merci de créer le premier utilisateur en renseignant ci-dessous les informations requises.",
"admin_cancel": "Annuler",
"admin_create": "Créer",
"admin_debugging": "Débogage",
"admin_email": "Adresse email",
"admin_flextype_version": "Version Flextype",
"admin_information": "Information",
"admin_installed": "Installée",
"admin_keywords": "Mots clés",
"admin_documentation": "Documentation",
"admin_memcache_server": "Serveur Memcache",
"admin_memcache_port": "Port Memcache",
"admin_login": "Connexion",
"admin_entries": "Entrées",
"admin_extends": "Etendre",
"admin_plugins": "Extensions",
"admin_themes": "Thèmes",
"admin_help": "Aide",
"admin_getting_help": "Obtenir de l'aide",
"admin_message_json_invalid": "JSON non valide",
"admin_logout": "Déconnexion",
"admin_profile": "Profil",
"admin_view_site": "Voir le site",
"admin_snippets": "Snippets",
"admin_not_installed": "Non installée",
"admin_off": "Désactivé",
"admin_on": "Activé",
"admin_add": "Ajouter",
"admin_entry_attributes": "Attributs d'entrée",
"admin_fieldset_for_template": "Champ pour le modèle",
"admin_content": "Contenu",
"admin_create_new_entry": "Créer une nouvelle entrée",
"admin_date": "Date",
"admin_draft": "Brouillon",
"admin_edit": "Éditer",
"admin_blocks": "Blocs",
"admin_media": "Média",
"admin_settings": "Paramètres",
"admin_templates": "Templates",
"admin_entry": "Entrée",
"admin_fieldset": "Champ",
"admin_source": "Source",
"admin_upload": "Envoyer",
"admin_hidden": "Caché",
"admin_image_preview": "Aperçu de l'image",
"admin_move": "Déplacer",
"admin_parent_entry": "Entrée parente",
"admin_preview": "Aperçu",
"admin_publish": "Publier",
"admin_rename": "Renommer",
"admin_save_entry": "Enregistrer l'entrée",
"admin_template": "Template",
"admin_title": "Titre",
"admin_url": "URL",
"admin_view": "Vue",
"admin_visibility": "Visibilité",
"admin_visible": "Visible",
"admin_password": "Mot de passe",
"admin_php_built_on": "PHP construit sur",
"admin_php_version": "Version PHP",
"admin_author_url": "URL de l'auteur",
"admin_bugs": "Bogues",
"admin_description": "Description",
"admin_get_more_plugins": "Obtenir plus d'extensions",
"admin_homepage": "Page d'accueil",
"admin_info": "Informations",
"admin_license": "License",
"admin_status": "Statut",
"admin_disabled": "désactivé",
"admin_enabled": "activé",
"admin_version": "Version",
"admin_role": "Rôle",
"admin_save": "Sauvegarder",
"admin_security_check_results": "Résultats de vérification de sécurité",
"admin_security_check_results_debug": "En raison du type et de la quantité d'informations, une erreur peut donner aux intrus lorsque DISPLAY ERRORS TRUE, nous recommandons fortement de définir DISPLAY ERRORS FALSE dans les systèmes de production.",
"admin_security_check_results_htaccess": "Le fichier Flextype .htaccess a été trouvé accessible en écriture. Nous vous conseillons de supprimer toutes les permissions d'écriture. <br>Vous pouvez le faire sur des systèmes unix avec : <code>chmod a-w :path</code>",
"admin_security_check_results_index": "Le fichier Flextype index.php a été trouvé accessible en écriture. Nous vous conseillons de supprimer toutes les permissions d'écriture. <br>Vous pouvez le faire sur des systèmes unix avec : <code>chmod a-w :path</code>",
"admin_server": "Serveur",
"admin_site": "Site",
"admin_clear_cache": "Vider le cache",
"admin_error404_title": "Titre d'entrée erreur 404",
"admin_error404_description": "Desciption de l'entrée erreur 404",
"admin_error404_content": "Contenu de l'entrée erreur 404",
"admin_error404_template": "Template d'erreur 404",
"admin_heading": "Paramètres",
"admin_general": "Général",
"admin_error_404_page": "Page erreur 404",
"admin_cache": "Cache",
"admin_author_email": "E-mail de l'auteur",
"admin_author_name": "Nom de l'auteur",
"admin_site_description": "Description du site",
"admin_site_keywords": "Mots-clés du site",
"admin_site_robots": "Robots",
"admin_site_title": "Titre du site",
"admin_system": "Système",
"admin_cache_driver": "Pilote du cache",
"admin_cache_enabled": "Cache activé",
"admin_cache_lifetime": "Durée de vie du cache",
"admin_cache_prefix": "Préfixe du cache",
"admin_charset": "Jeu de caractères",
"admin_date_format": "Format de la date",
"admin_errors_display": "Afficher les erreurs",
"admin_locale": "Langue",
"admin_entry_main": "Entrée principale",
"admin_theme": "Thème",
"admin_timezone": "Fuseau horaire",
"admin_username": "Nom d'utilisateur",
"admin_create_user": "Créer un utilisateur",
"admin_create_new_user": "Créer un nouvel utilisateur",
"admin_web_server": "Serveur Web",
"admin_web_server_php_interface": "Du serveur Web à l'interface PHP",
"admin_create_new_category": "Créer une nouvelle catégorie",
"admin_delete_category": "Supprimer la catégorie",
"admin_create_new_item": "Créer un nouvel élément",
"admin_delete": "Supprimer",
"admin_order": "Commande",
"admin_edit_category": "Modifier la catégorie",
"admin_fieldsets": "Champs",
"admin_template_create_new": "Créer un template",
"admin_create_new_fieldset": "Créer un nouveau champ",
"admin_duplicate": "Dupliquer",
"admin_summary": "Résumé",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Partiel",
"admin_clone": "Cloner",
"admin_create_new_snippet": "Créer un noueau snippet",
"admin_message_snippet_was_not_deleted": "Le snippet n'a pas été supprimé",
"admin_message_snippet_was_not_renamed": "Le snippet n'a pas été renommé",
"admin_message_snippet_was_not_duplicated": "Le snippet n'a pas été dupliqué",
"admin_message_snippet_was_not_saved": "Le snippet n'a pas été enregistré",
"admin_create_new_template": "Créer un template",
"admin_message_template_created": "Template créé",
"admin_message_template_deleted": "Template supprimé",
"admin_message_template_renamed": "Template renommé",
"admin_message_template_duplicated": "Template dupliqué",
"admin_message_template_saved": "Template enregistré",
"admin_message_template_was_not_created": "Le template n'a pas été renommé",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet enregistré",
"admin_message_snippet_created": "Snippet créé",
"admin_message_snippet_was_not_created": "Snippet n'a pas été créé",
"admin_message_snippet_deleted": "Snippet supprimé",
"admin_message_snippet_renamed": "Snippet renommé",
"admin_message_snippet_duplicated": "Snippet dupliqué",
"admin_message_fieldset_saved": "Champ sauvegardé",
"admin_message_fieldset_created": "Champ créé",
"admin_message_fieldset_deleted": "Champ supprimé",
"admin_message_fieldset_renamed": "Champ renommé",
"admin_message_fieldset_duplicated": "Champ dupliqué",
"admin_message_entry_duplicated": "Entrée dupliquée",
"admin_message_entry_was_not_duplicated": "L'entrée n'a pas été dupliquée",
"admin_message_cache_files_deleted": "Fichiers de cache supprimés",
"admin_message_entry_changes_saved": "Modifications enregistrées avec succès",
"admin_message_entry_changes_not_saved": "Modifications non enregistrées",
"admin_message_entry_cloned": "Entrée clonée",
"admin_message_entry_created": "Entrée créée",
"admin_message_entry_was_not_created": "L'entrée n'a pas été créée",
"admin_message_entry_deleted": "Entrée supprimée",
"admin_message_entry_was_not_renamed": "L'entrée n'a pas été renommée",
"admin_message_entry_was_not_deleted": "L'entrée n'a pas été supprimée",
"admin_message_entry_file_deleted": "Fichier supprimée avec succès",
"admin_message_entry_file_uploaded": "Fichier téléchargé avec succès",
"admin_message_entry_file_not_uploaded": "Le fichier n'a pas été téléchargé",
"admin_message_entry_moved": "Entrée déplacée",
"admin_message_entry_was_not_moved": "L'entrée n'a pas été déplacée",
"admin_message_entry_renamed": "Entrée renommée",
"admin_message_settings_saved": "Paramètres enregistrés",
"admin_message_settings_was_not_saved": "Les paramètres n'ont pas été enregistrés",
"admin_message_wrong_username_password": "Mauvais nom d'uilisateur ou mot de passe",
"admin_quality": "Qualité",
"admin_width": "Largeur",
"admin_height": "Hauteur",
"admin_accept_file_types": "Accepter les types de fichier",
"admin_embeded_code": "Code intégré",
"admin_shortcode": "Raccourci",
"admin_php_code": "Code PHP",
"admin_choose_files_to_upload": "Choisir un fichier",
"admin_browse_files": "Parcourir",
"admin_copy": "Copier",
"admin_admin_panel": "Panneau d'administrateur",
"admin_light": "Clair",
"admin_dark": "Sombre",
"admin_name": "Nom",
"admin_memcached_server": "Serveur Memcached",
"admin_memcached_port": "Port Memcached",
"admin_redis_socket": "Socket Redis",
"admin_redis_password": "Mot de passe Redis",
"admin_redis_server": "Serveur Redis",
"admin_redis_port": "Port Redis",
"admin_sqlite3_database": "Base de données SQLite3",
"admin_sqlite3_table": "Table SQLite3",
"admin_error_name_empty_input": "Le nom doit être une valeur alphanumérique (à partir de 1 caractère)",
"admin_error_title_empty_input": "Le titre doit être une valeur alphanumérique (à partir de 1 caractère)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Brouillon",
"admin_entries_hidden": "Caché",
"admin_menu_item_title": "Titre",
"admin_menu_item_url": "URL",
"admin_menu_item_target": "Cible",
"admin_menu_item_order": "Commande",
"admin_template_code": "Code du template",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "Vous n'avez pas encore créé de template !",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Rechargement automatique de Twig",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Fichier de cache des routes",
"admin_determine_route_before_app_middleware": "Identifier la route avant le middleware de l'application",
"admin_output_buffering": "Buffering de sortie",
"admin_response_chunk_size": "Taille du chunk de réponse",
"admin_http_version": "Version HTTP",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Éditeur de Whoops",
"admin_whoops_page_title": "Titre de la page Whoops",
"admin_editor": "Éditeur",
"admin_tools": "Outils",
"admin_size": "Taille",
"admin_clear": "Effacer",
"admin_clear_cache_all": "Tout effacer",
"admin_registry": "Registre",
"admin_key": "Clé",
"admin_value": "Valeur",
"admin_activate": "Activer",
"admin_active_theme": "Thème actif",
"admin_get_more_themes": "Obtenir plus de thèmes",
"admin_images": "Images",
"admin_data": "Données",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Séparateur",
"admin_slugify_lowercase": "Minuscule",
"admin_slugify_trim": "Nettoyer les espaces superflus",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Mettre en minuscule après Regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Admin",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Cancel",
"admin_create": "Create",
"admin_debugging": "Debugging",
"admin_email": "Email",
"admin_flextype_version": "Flextype Version",
"admin_information": "Information",
"admin_installed": "Installed",
"admin_keywords": "Keywords",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Login",
"admin_entries": "Entries",
"admin_extends": "Extends",
"admin_plugins": "Plugins",
"admin_themes": "Themes",
"admin_help": "Help",
"admin_getting_help": "Getting Help",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Logout",
"admin_profile": "Profile",
"admin_view_site": "View Site",
"admin_snippets": "Snippets",
"admin_not_installed": "Not Installed",
"admin_off": "Off",
"admin_on": "On",
"admin_add": "Add",
"admin_entry_attributes": "Entry Attributes",
"admin_fieldset_for_template": "Fieldset for template",
"admin_content": "Content",
"admin_create_new_entry": "Create New Entry",
"admin_date": "Date",
"admin_draft": "Draft",
"admin_edit": "Edit",
"admin_blocks": "Blocks",
"admin_media": "Media",
"admin_settings": "Settings",
"admin_templates": "Templates",
"admin_entry": "Entry",
"admin_fieldset": "Fieldset",
"admin_source": "Source",
"admin_upload": "Upload",
"admin_hidden": "Hidden",
"admin_image_preview": "Image preview",
"admin_move": "Move",
"admin_parent_entry": "Entry parent",
"admin_preview": "Preview",
"admin_publish": "Publish",
"admin_rename": "Rename",
"admin_save_entry": "Save entry",
"admin_template": "Template",
"admin_title": "Title",
"admin_url": "Url",
"admin_view": "View",
"admin_visibility": "Visibility",
"admin_visible": "Visible",
"admin_password": "Password",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP Version",
"admin_author_url": "Author url",
"admin_bugs": "Bugs",
"admin_description": "Description",
"admin_get_more_plugins": "Get More Plugins",
"admin_homepage": "Homepage",
"admin_info": "Info",
"admin_license": "License",
"admin_status": "Status",
"admin_disabled": "disabled",
"admin_enabled": "enabled",
"admin_version": "Version",
"admin_role": "Role",
"admin_save": "Save",
"admin_security_check_results": "Security check results",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "Clear cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "Author email",
"admin_author_name": "Author name",
"admin_site_description": "Site description",
"admin_site_keywords": "Site keywords",
"admin_site_robots": "Robots",
"admin_site_title": "Site title",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Locale",
"admin_entry_main": "Main entry",
"admin_theme": "Theme",
"admin_timezone": "Timezone",
"admin_username": "Username",
"admin_create_user": "Create User",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Delete Category",
"admin_create_new_item": "Create New Item",
"admin_delete": "Delete",
"admin_order": "Order",
"admin_edit_category": "Edit category",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Create New Template",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Duplicate",
"admin_summary": "Summary",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Partial",
"admin_clone": "Clone",
"admin_create_new_snippet": "Create New Snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Create New Template",
"admin_message_template_created": "Template created",
"admin_message_template_deleted": "Template deleted",
"admin_message_template_renamed": "Template renamed",
"admin_message_template_duplicated": "Template duplicated",
"admin_message_template_saved": "Template saved",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet saved",
"admin_message_snippet_created": "Snippet created",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet deleted",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Copy",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Admin",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Otkaži",
"admin_create": "Stvori",
"admin_debugging": "Otklanjanje grešaka",
"admin_email": "Email",
"admin_flextype_version": "Flextype Verzija",
"admin_information": "Informacija",
"admin_installed": "Instalirano",
"admin_keywords": "Ključne riječi",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Prijava",
"admin_entries": "Unosi",
"admin_extends": "Proširuje",
"admin_plugins": "Dodaci",
"admin_themes": "Teme",
"admin_help": "Pomoć",
"admin_getting_help": "Getting Help",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Odjava",
"admin_profile": "Profil",
"admin_view_site": "Vidi Sajt",
"admin_snippets": "Svaštice",
"admin_not_installed": "Nije instalirano",
"admin_off": "Isključeno",
"admin_on": "Uključeno",
"admin_add": "Dodaj",
"admin_entry_attributes": "Entry Attributes",
"admin_fieldset_for_template": "Fieldset for template",
"admin_content": "Sadržaj",
"admin_create_new_entry": "Stvori novi",
"admin_date": "Datum",
"admin_draft": "Skica",
"admin_edit": "Uredi",
"admin_blocks": "Blokovi",
"admin_media": "Media",
"admin_settings": "Postavke",
"admin_templates": "Predlošci",
"admin_entry": "Unos",
"admin_fieldset": "Skup polja",
"admin_source": "Izvor",
"admin_upload": "Postavljanje",
"admin_hidden": "Skriveno",
"admin_image_preview": "Pregled slike",
"admin_move": "Pomakni",
"admin_parent_entry": "Entry parent",
"admin_preview": "Pregled",
"admin_publish": "Objavi",
"admin_rename": "Preimenuj",
"admin_save_entry": "Sačuvaj",
"admin_template": "Predložak",
"admin_title": "Ime",
"admin_url": "Link",
"admin_view": "Pogledaj",
"admin_visibility": "Vidljivost",
"admin_visible": "Vidljivo",
"admin_password": "Lozinka",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP verzija",
"admin_author_url": "Link Autora",
"admin_bugs": "Greške",
"admin_description": "Opis",
"admin_get_more_plugins": "Nabavi više dodataka",
"admin_homepage": "Početna stranica",
"admin_info": "Info",
"admin_license": "Licenca",
"admin_status": "Status",
"admin_disabled": "onemogućeno",
"admin_enabled": "omogućeno",
"admin_version": "Verzija",
"admin_role": "Uloga",
"admin_save": "Sačuvaj",
"admin_security_check_results": "Rezultati sigurnosne provjere",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Sajt",
"admin_clear_cache": "Očisti cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Postavke",
"admin_general": "Generalno",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "email autora",
"admin_author_name": "Ime autora",
"admin_site_description": "Opis stranice",
"admin_site_keywords": "Ključne riječi stranice",
"admin_site_robots": "Roboti",
"admin_site_title": "Ime sajta",
"admin_system": "Sustav",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache je omogućen",
"admin_cache_lifetime": "Životni vijek predmemorije",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Format datuma",
"admin_errors_display": "Prikaži greške",
"admin_locale": "Jezik",
"admin_entry_main": "Glavni unos",
"admin_theme": "Tema",
"admin_timezone": "Vremenska zona",
"admin_username": "Korisničko ime",
"admin_create_user": "Stvori korisnika",
"admin_create_new_user": "Stvori novog korisnika",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Sučelje",
"admin_create_new_category": "Stvori novu kategoriju",
"admin_delete_category": "Obriši kategoriju",
"admin_create_new_item": "Stvori novu stavku",
"admin_delete": "Obriši",
"admin_order": "Redoslijed",
"admin_edit_category": "Uredi kategoriju",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Stvori novi predložak",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Dupliciraj",
"admin_summary": "Sažetak",
"admin_snippet": "Svaštica",
"admin_type": "Tip",
"admin_partial": "Partial",
"admin_clone": "Kloniraj",
"admin_create_new_snippet": "Stvori novu svašticu",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Stvori novi predložak",
"admin_message_template_created": "Predložak je stvoren",
"admin_message_template_deleted": "Predložak je obrisan",
"admin_message_template_renamed": "Predložak je preimenovan",
"admin_message_template_duplicated": "Predložak je dupliciran",
"admin_message_template_saved": "Predložak je sačuvan",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Svaštica je sačuvana",
"admin_message_snippet_created": "Svaštica je stvorena",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Svaštica je obrisana",
"admin_message_snippet_renamed": "Svaštica je preimenovana",
"admin_message_snippet_duplicated": "Svaštica je duplicirana",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Unos je dupliciran",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache fajlovi su obrisani",
"admin_message_entry_changes_saved": "Promjene su uspješno sačuvane",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Unos je kloniran",
"admin_message_entry_created": "Unos je stvoren",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Unos je obrisan",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "Fajl je uspješno obrisan",
"admin_message_entry_file_uploaded": "Fajl je uspješno uploadan",
"admin_message_entry_file_not_uploaded": "Fajl nije uploadan",
"admin_message_entry_moved": "Unos je premješten",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Unos je preimenovan",
"admin_message_settings_saved": "Postavke su sačuvane",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Pogrešno korisničko ime ili lozinka",
"admin_quality": "Kvaliteta",
"admin_width": "Širina",
"admin_height": "Visina",
"admin_accept_file_types": "Prihvati tipove podataka",
"admin_embeded_code": "Ugrađivanje koda",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP kod",
"admin_choose_files_to_upload": "Odaberi fajl",
"admin_browse_files": "Pretražuj",
"admin_copy": "Kopiraj",
"admin_admin_panel": "Administratorsko sučelje",
"admin_light": "Svjetla",
"admin_dark": "Tamna",
"admin_name": "Ime",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 databaza",
"admin_sqlite3_table": "SQLite3 Tablica",
"admin_error_name_empty_input": "Ime mora biti alfanumerička vrijednost",
"admin_error_title_empty_input": "Naslov mora biti alfanumerička vrijednost",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Admin",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Mégsem",
"admin_create": "Létrehozás",
"admin_debugging": "Hibakeresés",
"admin_email": "E-mail",
"admin_flextype_version": "Flextype verzió",
"admin_information": "Információ",
"admin_installed": "Telepített",
"admin_keywords": "Kulcsszavak",
"admin_documentation": "Dokumentáció",
"admin_memcache_server": "Memcache szerver",
"admin_memcache_port": "Memcache port",
"admin_login": "Belépés",
"admin_entries": "Bejegyzések",
"admin_extends": "Extends",
"admin_plugins": "Pluginok",
"admin_themes": "Sablonok",
"admin_help": "Segítség",
"admin_getting_help": "Segítség",
"admin_message_json_invalid": "Hibás JSON",
"admin_logout": "Kilépés",
"admin_profile": "Profil",
"admin_view_site": "Honlap megtekintése",
"admin_snippets": "Beépülők",
"admin_not_installed": "Nincs telepítve",
"admin_off": "Ki",
"admin_on": "Be",
"admin_add": "Hozzáadás",
"admin_entry_attributes": "Entry Attributes",
"admin_fieldset_for_template": "Fieldset for template",
"admin_content": "Tartalom",
"admin_create_new_entry": "Új bejegyzés létrehozása",
"admin_date": "Dátum",
"admin_draft": "Piszkozat",
"admin_edit": "Szerkesztés",
"admin_blocks": "Blokkok",
"admin_media": "Média",
"admin_settings": "Beállítások",
"admin_templates": "Sablonok",
"admin_entry": "Bejegyzés",
"admin_fieldset": "Mezőcsoport",
"admin_source": "Forrás",
"admin_upload": "Feltöltés",
"admin_hidden": "Rejtett",
"admin_image_preview": "Kép előnézete",
"admin_move": "Áthelyezés",
"admin_parent_entry": "Entry parent",
"admin_preview": "Előnézet",
"admin_publish": "Publikálás",
"admin_rename": "Átnevezés",
"admin_save_entry": "Bejegyzés mentése",
"admin_template": "Sablon",
"admin_title": "Cím",
"admin_url": "URL",
"admin_view": "Megtekintés",
"admin_visibility": "Láthatóság",
"admin_visible": "Látható",
"admin_password": "Jelszó",
"admin_php_built_on": "PHP telepítése",
"admin_php_version": "PHP verzió",
"admin_author_url": "Készítő URL",
"admin_bugs": "Hibák",
"admin_description": "Leírás",
"admin_get_more_plugins": "További pluginok beszerzése",
"admin_homepage": "Főoldal",
"admin_info": "Infó",
"admin_license": "Licensz",
"admin_status": "Állapot",
"admin_disabled": "kikapcsolva",
"admin_enabled": "bekapcsolva",
"admin_version": "Verzió",
"admin_role": "Jogosultságok",
"admin_save": "Mentés",
"admin_security_check_results": "Biztonsági ellenőrzés eredményei",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Szerver",
"admin_site": "Oldal",
"admin_clear_cache": "Gyorsítótár ürítése",
"admin_error404_title": "404-es oldal címe",
"admin_error404_description": "404-es oldal leírása",
"admin_error404_content": "404-es oldal tartalma",
"admin_error404_template": "404-es oldal sablonja",
"admin_heading": "Beállítások",
"admin_general": "Általános",
"admin_error_404_page": "404-es hiba oldal",
"admin_cache": "Gyorsítótár",
"admin_author_email": "Szerző e-mail",
"admin_author_name": "Szerző neve",
"admin_site_description": "Oldal leírása",
"admin_site_keywords": "Oldal kulcsszavai",
"admin_site_robots": "Robots",
"admin_site_title": "Oldal címe",
"admin_system": "Rendszer",
"admin_cache_driver": "Gyorsítótár meghajtó",
"admin_cache_enabled": "Gyorsítótár engedélyezve",
"admin_cache_lifetime": "Gyorsítótár élettartama",
"admin_cache_prefix": "Gyorsítótár előtag",
"admin_charset": "Karakterkészlet",
"admin_date_format": "Dátum formátum",
"admin_errors_display": "Hibák megjelenítése",
"admin_locale": "Nyelv",
"admin_entry_main": "Main entry",
"admin_theme": "Téma",
"admin_timezone": "Időzóna",
"admin_username": "Felhasználónév",
"admin_create_user": "Felhasználó létrehozása",
"admin_create_new_user": "Új Felhasználó",
"admin_web_server": "Webszerver",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Új kategória létrehozása",
"admin_delete_category": "Kategória törlése",
"admin_create_new_item": "Új elem létrehozása",
"admin_delete": "Törlés",
"admin_order": "Sorrend",
"admin_edit_category": "Kategória szerkesztése",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Sablon létrehozása",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Duplikálás",
"admin_summary": "Összegzés",
"admin_snippet": "Beépülők",
"admin_type": "Típus",
"admin_partial": "Részlet",
"admin_clone": "Klónozás",
"admin_create_new_snippet": "Beépülő létrehozása",
"admin_message_snippet_was_not_deleted": "A beépülő nem lett törölve",
"admin_message_snippet_was_not_renamed": "A beépülőt nem lehet átnevezni",
"admin_message_snippet_was_not_duplicated": "A beépülőt nem lehet duplikálni",
"admin_message_snippet_was_not_saved": "A beépülő nem lett elmentve",
"admin_create_new_template": "Sablon létrehozása",
"admin_message_template_created": "Sablon létrehozva",
"admin_message_template_deleted": "Sablon törölve",
"admin_message_template_renamed": "Sablon átnevezve",
"admin_message_template_duplicated": "Sablon duplikálva",
"admin_message_template_saved": "Sablon elmentve",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Beépülő elmentve",
"admin_message_snippet_created": "Beépülő létrehozva",
"admin_message_snippet_was_not_created": "Beépülő nem lett létrehozva",
"admin_message_snippet_deleted": "Beépülő törölve",
"admin_message_snippet_renamed": "Beépülő átnevezve",
"admin_message_snippet_duplicated": "Beépülő duplikálva",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Gyorsítótárfájlok törölve",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Bejegyzés létrehozva",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Bejegyzés törölve",
"admin_message_entry_was_not_renamed": "A bejegyzést nem lehet törölni",
"admin_message_entry_was_not_deleted": "A bejegyzés nem lett törölve",
"admin_message_entry_file_deleted": "A fájl sikeresen törölve",
"admin_message_entry_file_uploaded": "Fájl sikeresen feltöltve",
"admin_message_entry_file_not_uploaded": "A fájlt nem lehet feltölteni",
"admin_message_entry_moved": "Bejegyzés átmozgatva",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Bejegyzés átnevezve",
"admin_message_settings_saved": "Beállítások elmentve",
"admin_message_settings_was_not_saved": "Beállítások nem lettek mentve",
"admin_message_wrong_username_password": "Hibás felhasználónév vagy jelszó",
"admin_quality": "Minőség",
"admin_width": "Szélesség",
"admin_height": "Magasság",
"admin_accept_file_types": "Fájltípus elfogadása",
"admin_embeded_code": "Beágyazott kód",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP kód",
"admin_choose_files_to_upload": "Fájl kiválasztása",
"admin_browse_files": "Böngészés",
"admin_copy": "Másolás",
"admin_admin_panel": "Admin panel",
"admin_light": "Világos",
"admin_dark": "Sötét",
"admin_name": "Név",
"admin_memcached_server": "Memcached kiszolgáló",
"admin_memcached_port": "Memcached port",
"admin_redis_socket": "Redis socket",
"admin_redis_password": "Redis jelszó",
"admin_redis_server": "Redis kiszolgáló",
"admin_redis_port": "Redis port",
"admin_sqlite3_database": "SQL adatbázis",
"admin_sqlite3_table": "SQLite3 tábla",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "A címnek alfanumerikus karakternek kell lennie (már az első karaktertől)",
"admin_entries_visible": "Látható",
"admin_entries_draft": "Piszkozat",
"admin_entries_hidden": "Rejtett",
"admin_menu_item_title": "Cím",
"admin_menu_item_url": "URL",
"admin_menu_item_target": "Cél",
"admin_menu_item_order": "Sorrend",
"admin_template_code": "Sablon kód",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP verzió",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Szerkesztő",
"admin_tools": "Eszközök",
"admin_size": "Méret",
"admin_clear": "Kiürítés",
"admin_clear_cache_all": "Összes törlése",
"admin_registry": "Registry",
"admin_key": "Kulcs",
"admin_value": "Érték",
"admin_activate": "Aktiválás",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "További sablonok",
"admin_images": "Képek",
"admin_data": "Adat",
"admin_slugify": "Slug",
"admin_entries_limit": "Bejegyzések limitje",
"admin_slug": "Slug",
"admin_slugify_separator": "Elválasztó",
"admin_slugify_lowercase": "Kisbetű",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "HTML tagek kiszűrése",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Galéria kép"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Amministratore",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Annulla",
"admin_create": "Crea",
"admin_debugging": "Debugging",
"admin_email": "Email",
"admin_flextype_version": "Versione Flextype",
"admin_information": "Informazioni",
"admin_installed": "Installato",
"admin_keywords": "Parole Chiave",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Login",
"admin_entries": "Elementi",
"admin_extends": "Estendi",
"admin_plugins": "Plugins",
"admin_themes": "Temi",
"admin_help": "Aiuto",
"admin_getting_help": "Ottenere aiuto",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Disconnetti",
"admin_profile": "Profilo",
"admin_view_site": "Visualizza il sito",
"admin_snippets": "Snippets",
"admin_not_installed": "Non installato",
"admin_off": "Disattivo",
"admin_on": "Attivo",
"admin_add": "Aggiungi",
"admin_entry_attributes": "Attributi degli elementi",
"admin_fieldset_for_template": "Campi per template",
"admin_content": "Contenuto",
"admin_create_new_entry": "Crea nuovo elemento",
"admin_date": "Data",
"admin_draft": "Bozza",
"admin_edit": "Modifica",
"admin_blocks": "Blocchi",
"admin_media": "Media",
"admin_settings": "Impostazioni",
"admin_templates": "Templates",
"admin_entry": "Elemento",
"admin_fieldset": "Campi",
"admin_source": "Sorgente",
"admin_upload": "Carica File",
"admin_hidden": "Nascosto",
"admin_image_preview": "Anteprima immagine",
"admin_move": "Sposta",
"admin_parent_entry": "Elemento padre",
"admin_preview": "Anteprima",
"admin_publish": "Pubblica",
"admin_rename": "Rinomina",
"admin_save_entry": "Salva elemento",
"admin_template": "Template",
"admin_title": "Title",
"admin_url": "Url",
"admin_view": "View",
"admin_visibility": "Visibility",
"admin_visible": "Visible",
"admin_password": "Password",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP Version",
"admin_author_url": "Author url",
"admin_bugs": "Bugs",
"admin_description": "Description",
"admin_get_more_plugins": "Get More Plugins",
"admin_homepage": "Homepage",
"admin_info": "Info",
"admin_license": "License",
"admin_status": "Status",
"admin_disabled": "disabled",
"admin_enabled": "enabled",
"admin_version": "Version",
"admin_role": "Role",
"admin_save": "Save",
"admin_security_check_results": "Security check results",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "Clear cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "Author email",
"admin_author_name": "Author name",
"admin_site_description": "Site description",
"admin_site_keywords": "Site keywords",
"admin_site_robots": "Robots",
"admin_site_title": "Site title",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Lingua",
"admin_entry_main": "Elemento principale",
"admin_theme": "Tema",
"admin_timezone": "Fuso orario",
"admin_username": "Username",
"admin_create_user": "Crea utente",
"admin_create_new_user": "Crea nuovo utente",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Crea una nuova categoria",
"admin_delete_category": "Elimina Categoria",
"admin_create_new_item": "Crea nuovo elemento",
"admin_delete": "Elimina",
"admin_order": "Ordina",
"admin_edit_category": "Modifica categoria",
"admin_fieldsets": "Campi",
"admin_template_create_new": "Crea nuovo template",
"admin_create_new_fieldset": "Crea nuovo Fieldset",
"admin_duplicate": "Duplica",
"admin_summary": "Sommario",
"admin_snippet": "Snippet",
"admin_type": "Tipo",
"admin_partial": "Parziale",
"admin_clone": "Clona",
"admin_create_new_snippet": "Crea nuovo snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Crea nuovo template",
"admin_message_template_created": "Template creato",
"admin_message_template_deleted": "Template eliminato",
"admin_message_template_renamed": "Template rinominato",
"admin_message_template_duplicated": "Template duplicato",
"admin_message_template_saved": "Template salvato",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet salvato",
"admin_message_snippet_created": "Snippet creato",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet eliminato",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Copy",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Admin",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Cancel",
"admin_create": "Create",
"admin_debugging": "Debugging",
"admin_email": "Email",
"admin_flextype_version": "Flextype Version",
"admin_information": "Information",
"admin_installed": "Installed",
"admin_keywords": "Keywords",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Login",
"admin_entries": "Entries",
"admin_extends": "Extends",
"admin_plugins": "Plugins",
"admin_themes": "Themes",
"admin_help": "Help",
"admin_getting_help": "Getting Help",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Logout",
"admin_profile": "Profile",
"admin_view_site": "View Site",
"admin_snippets": "Snippets",
"admin_not_installed": "Not Installed",
"admin_off": "Off",
"admin_on": "On",
"admin_add": "Add",
"admin_entry_attributes": "Entry Attributes",
"admin_fieldset_for_template": "Fieldset for template",
"admin_content": "Content",
"admin_create_new_entry": "Create New Entry",
"admin_date": "Date",
"admin_draft": "Draft",
"admin_edit": "Edit",
"admin_blocks": "Blocks",
"admin_media": "Media",
"admin_settings": "Settings",
"admin_templates": "Templates",
"admin_entry": "Entry",
"admin_fieldset": "Fieldset",
"admin_source": "Source",
"admin_upload": "Upload",
"admin_hidden": "Hidden",
"admin_image_preview": "Image preview",
"admin_move": "Move",
"admin_parent_entry": "Entry parent",
"admin_preview": "Preview",
"admin_publish": "Publish",
"admin_rename": "Rename",
"admin_save_entry": "Save entry",
"admin_template": "Template",
"admin_title": "Title",
"admin_url": "Url",
"admin_view": "View",
"admin_visibility": "Visibility",
"admin_visible": "Visible",
"admin_password": "Password",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP Version",
"admin_author_url": "Author url",
"admin_bugs": "Bugs",
"admin_description": "Description",
"admin_get_more_plugins": "Get More Plugins",
"admin_homepage": "Homepage",
"admin_info": "Info",
"admin_license": "License",
"admin_status": "Status",
"admin_disabled": "disabled",
"admin_enabled": "enabled",
"admin_version": "Version",
"admin_role": "Role",
"admin_save": "Save",
"admin_security_check_results": "Security check results",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "Clear cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "Author email",
"admin_author_name": "Author name",
"admin_site_description": "Site description",
"admin_site_keywords": "Site keywords",
"admin_site_robots": "Robots",
"admin_site_title": "Site title",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Locale",
"admin_entry_main": "Main entry",
"admin_theme": "Theme",
"admin_timezone": "Timezone",
"admin_username": "Username",
"admin_create_user": "Create User",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Delete Category",
"admin_create_new_item": "Create New Item",
"admin_delete": "Delete",
"admin_order": "Order",
"admin_edit_category": "Edit category",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Create New Template",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Duplicate",
"admin_summary": "Summary",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Partial",
"admin_clone": "Clone",
"admin_create_new_snippet": "Create New Snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Create New Template",
"admin_message_template_created": "Template created",
"admin_message_template_deleted": "Template deleted",
"admin_message_template_renamed": "Template renamed",
"admin_message_template_duplicated": "Template duplicated",
"admin_message_template_saved": "Template saved",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet saved",
"admin_message_snippet_created": "Snippet created",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet deleted",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Copy",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Admin",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Cancel",
"admin_create": "Create",
"admin_debugging": "Debugging",
"admin_email": "Email",
"admin_flextype_version": "Flextype Version",
"admin_information": "Information",
"admin_installed": "Installed",
"admin_keywords": "Keywords",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Login",
"admin_entries": "Entries",
"admin_extends": "Extends",
"admin_plugins": "Plugins",
"admin_themes": "Themes",
"admin_help": "Help",
"admin_getting_help": "Getting Help",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Logout",
"admin_profile": "Profile",
"admin_view_site": "View Site",
"admin_snippets": "Snippets",
"admin_not_installed": "Not Installed",
"admin_off": "Off",
"admin_on": "On",
"admin_add": "Add",
"admin_entry_attributes": "Entry Attributes",
"admin_fieldset_for_template": "Fieldset for template",
"admin_content": "Content",
"admin_create_new_entry": "Create New Entry",
"admin_date": "Date",
"admin_draft": "Draft",
"admin_edit": "Edit",
"admin_blocks": "Blocks",
"admin_media": "Media",
"admin_settings": "Settings",
"admin_templates": "Templates",
"admin_entry": "Entry",
"admin_fieldset": "Fieldset",
"admin_source": "Source",
"admin_upload": "Upload",
"admin_hidden": "Hidden",
"admin_image_preview": "Image preview",
"admin_move": "Move",
"admin_parent_entry": "Entry parent",
"admin_preview": "Preview",
"admin_publish": "Publish",
"admin_rename": "Rename",
"admin_save_entry": "Save entry",
"admin_template": "Template",
"admin_title": "Title",
"admin_url": "Url",
"admin_view": "View",
"admin_visibility": "Visibility",
"admin_visible": "Visible",
"admin_password": "Password",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP Version",
"admin_author_url": "Author url",
"admin_bugs": "Bugs",
"admin_description": "Description",
"admin_get_more_plugins": "Get More Plugins",
"admin_homepage": "Homepage",
"admin_info": "Info",
"admin_license": "License",
"admin_status": "Status",
"admin_disabled": "disabled",
"admin_enabled": "enabled",
"admin_version": "Version",
"admin_role": "Role",
"admin_save": "Save",
"admin_security_check_results": "Security check results",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "Clear cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "Author email",
"admin_author_name": "Author name",
"admin_site_description": "Site description",
"admin_site_keywords": "Site keywords",
"admin_site_robots": "Robots",
"admin_site_title": "Site title",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Locale",
"admin_entry_main": "Main entry",
"admin_theme": "Theme",
"admin_timezone": "Timezone",
"admin_username": "Username",
"admin_create_user": "Create User",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Delete Category",
"admin_create_new_item": "Create New Item",
"admin_delete": "Delete",
"admin_order": "Order",
"admin_edit_category": "Edit category",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Create New Template",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Duplicate",
"admin_summary": "Summary",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Partial",
"admin_clone": "Clone",
"admin_create_new_snippet": "Create New Snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Create New Template",
"admin_message_template_created": "Template created",
"admin_message_template_deleted": "Template deleted",
"admin_message_template_renamed": "Template renamed",
"admin_message_template_duplicated": "Template duplicated",
"admin_message_template_saved": "Template saved",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet saved",
"admin_message_snippet_created": "Snippet created",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet deleted",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Copy",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Beheerder",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Annuleren",
"admin_create": "Creëren",
"admin_debugging": "Debuggen",
"admin_email": "E-mail",
"admin_flextype_version": "Flextype versie",
"admin_information": "Informatie",
"admin_installed": "Geïnstalleerd",
"admin_keywords": "Trefwoorden",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Aanmelden",
"admin_entries": "Entries",
"admin_extends": "Uitbreiden",
"admin_plugins": "Plugins",
"admin_themes": "Thema's",
"admin_help": "Help",
"admin_getting_help": "Help-informatie opvragen",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Uitloggen",
"admin_profile": "Profiel",
"admin_view_site": "Bekijk site",
"admin_snippets": "Tekstfragmenten",
"admin_not_installed": "Niet geïnstalleerd",
"admin_off": "Uit",
"admin_on": "Aan",
"admin_add": "Toevoegen",
"admin_entry_attributes": "Invoerattributen",
"admin_fieldset_for_template": "Fieldset voor sjabloon",
"admin_content": "Inhoud",
"admin_create_new_entry": "Maak een nieuwe invoer",
"admin_date": "Datum",
"admin_draft": "Klad",
"admin_edit": "Bewerk",
"admin_blocks": "Blokken",
"admin_media": "Media",
"admin_settings": "Instellingen",
"admin_templates": "Sjablonen",
"admin_entry": "Invoer",
"admin_fieldset": "Veldenset",
"admin_source": "Bron",
"admin_upload": "Uploaden",
"admin_hidden": "Verborgen",
"admin_image_preview": "Image voorbeeld",
"admin_move": "Verplaatsen",
"admin_parent_entry": "Toegangsouder",
"admin_preview": "Voorbeeld",
"admin_publish": "Publiceren",
"admin_rename": "Naam Wijzigen",
"admin_save_entry": "Invoer opslaan",
"admin_template": "Sjablonen",
"admin_title": "Title",
"admin_url": "Url",
"admin_view": "View",
"admin_visibility": "Visibility",
"admin_visible": "Visible",
"admin_password": "Password",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP Version",
"admin_author_url": "Author url",
"admin_bugs": "Bugs",
"admin_description": "Description",
"admin_get_more_plugins": "Get More Plugins",
"admin_homepage": "Homepage",
"admin_info": "Info",
"admin_license": "License",
"admin_status": "Status",
"admin_disabled": "disabled",
"admin_enabled": "enabled",
"admin_version": "Version",
"admin_role": "Role",
"admin_save": "Save",
"admin_security_check_results": "Security check results",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "Clear cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "Author email",
"admin_author_name": "Author name",
"admin_site_description": "Site description",
"admin_site_keywords": "Site keywords",
"admin_site_robots": "Robots",
"admin_site_title": "Site title",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Locale",
"admin_entry_main": "Hoofdingang",
"admin_theme": "Thema",
"admin_timezone": "Tijdzone",
"admin_username": "Gebruikersnaam",
"admin_create_user": "Gebruiker Aanmaken",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Delete Category",
"admin_create_new_item": "Create New Item",
"admin_delete": "Delete",
"admin_order": "Order",
"admin_edit_category": "Edit category",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Create New Template",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Duplicate",
"admin_summary": "Summary",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Partial",
"admin_clone": "Clone",
"admin_create_new_snippet": "Create New Snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Create New Template",
"admin_message_template_created": "Template created",
"admin_message_template_deleted": "Template deleted",
"admin_message_template_renamed": "Template renamed",
"admin_message_template_duplicated": "Template duplicated",
"admin_message_template_saved": "Template saved",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet saved",
"admin_message_snippet_created": "Snippet created",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet deleted",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Copy",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Admin",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Cancel",
"admin_create": "Create",
"admin_debugging": "Debugging",
"admin_email": "Email",
"admin_flextype_version": "Flextype Version",
"admin_information": "Information",
"admin_installed": "Installed",
"admin_keywords": "Keywords",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Login",
"admin_entries": "Entries",
"admin_extends": "Extends",
"admin_plugins": "Plugins",
"admin_themes": "Themes",
"admin_help": "Help",
"admin_getting_help": "Getting Help",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Logout",
"admin_profile": "Profile",
"admin_view_site": "View Site",
"admin_snippets": "Snippets",
"admin_not_installed": "Not Installed",
"admin_off": "Off",
"admin_on": "On",
"admin_add": "Add",
"admin_entry_attributes": "Entry Attributes",
"admin_fieldset_for_template": "Fieldset for template",
"admin_content": "Content",
"admin_create_new_entry": "Create New Entry",
"admin_date": "Date",
"admin_draft": "Draft",
"admin_edit": "Edit",
"admin_blocks": "Blocks",
"admin_media": "Media",
"admin_settings": "Settings",
"admin_templates": "Templates",
"admin_entry": "Entry",
"admin_fieldset": "Fieldset",
"admin_source": "Source",
"admin_upload": "Upload",
"admin_hidden": "Hidden",
"admin_image_preview": "Image preview",
"admin_move": "Move",
"admin_parent_entry": "Entry parent",
"admin_preview": "Preview",
"admin_publish": "Publish",
"admin_rename": "Rename",
"admin_save_entry": "Save entry",
"admin_template": "Template",
"admin_title": "Title",
"admin_url": "Url",
"admin_view": "View",
"admin_visibility": "Visibility",
"admin_visible": "Visible",
"admin_password": "Password",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP Version",
"admin_author_url": "Author url",
"admin_bugs": "Bugs",
"admin_description": "Description",
"admin_get_more_plugins": "Get More Plugins",
"admin_homepage": "Homepage",
"admin_info": "Info",
"admin_license": "License",
"admin_status": "Status",
"admin_disabled": "disabled",
"admin_enabled": "enabled",
"admin_version": "Version",
"admin_role": "Role",
"admin_save": "Save",
"admin_security_check_results": "Security check results",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "Clear cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "Author email",
"admin_author_name": "Author name",
"admin_site_description": "Site description",
"admin_site_keywords": "Site keywords",
"admin_site_robots": "Robots",
"admin_site_title": "Site title",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Locale",
"admin_entry_main": "Main entry",
"admin_theme": "Theme",
"admin_timezone": "Timezone",
"admin_username": "Username",
"admin_create_user": "Create User",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Delete Category",
"admin_create_new_item": "Create New Item",
"admin_delete": "Delete",
"admin_order": "Order",
"admin_edit_category": "Edit category",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Create New Template",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Duplicate",
"admin_summary": "Summary",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Partial",
"admin_clone": "Clone",
"admin_create_new_snippet": "Create New Snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Create New Template",
"admin_message_template_created": "Template created",
"admin_message_template_deleted": "Template deleted",
"admin_message_template_renamed": "Template renamed",
"admin_message_template_duplicated": "Template duplicated",
"admin_message_template_saved": "Template saved",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet saved",
"admin_message_snippet_created": "Snippet created",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet deleted",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Copy",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Admin",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Anuluj",
"admin_create": "Stwórz",
"admin_debugging": "Debugowanie",
"admin_email": "Email",
"admin_flextype_version": "Wersja Flextype",
"admin_information": "Informacja",
"admin_installed": "Zainstalowany",
"admin_keywords": "Słowa kluczowe",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Zaloguj",
"admin_entries": "Wpisy",
"admin_extends": "Rozszerzenia",
"admin_plugins": "Wtyczki",
"admin_themes": "Motywy",
"admin_help": "Pomoc",
"admin_getting_help": "Pomoc",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Wyloguj",
"admin_profile": "Profil",
"admin_view_site": "Wyświetl stronę",
"admin_snippets": "Fragmenty kodu",
"admin_not_installed": "Nie Zainstalowany",
"admin_off": "Wyłączony",
"admin_on": "Włączony",
"admin_add": "Dodaj",
"admin_entry_attributes": "Atrybuty wpisu",
"admin_fieldset_for_template": "Zestaw pól szablonu",
"admin_content": "Zawartość",
"admin_create_new_entry": "Utwórz nowy wpis",
"admin_date": "Data",
"admin_draft": "Szkic",
"admin_edit": "Edytuj",
"admin_blocks": "Bloki",
"admin_media": "Media",
"admin_settings": "Ustawienia",
"admin_templates": "Szablony",
"admin_entry": "Wpis",
"admin_fieldset": "Zestaw pól",
"admin_source": "Źródło",
"admin_upload": "Wrzuć plik",
"admin_hidden": "Ukryty",
"admin_image_preview": "Podgląd obrazu",
"admin_move": "Przenieś",
"admin_parent_entry": "Wpis nadrzędny",
"admin_preview": "Podgląd",
"admin_publish": "Opublikuj",
"admin_rename": "Zmień nazwę",
"admin_save_entry": "Zapisz wpis",
"admin_template": "Szablon",
"admin_title": "Tytuł",
"admin_url": "Adres URL",
"admin_view": "Widok",
"admin_visibility": "Widoczność",
"admin_visible": "Widoczny",
"admin_password": "Hasło",
"admin_php_built_on": "PHP wbudowane",
"admin_php_version": "Wersja PHP",
"admin_author_url": "URL Autora",
"admin_bugs": "Błędy",
"admin_description": "Opis",
"admin_get_more_plugins": "Więcej wtyczek",
"admin_homepage": "Strona główna",
"admin_info": "Info",
"admin_license": "Licencja",
"admin_status": "Status",
"admin_disabled": "wyłączone",
"admin_enabled": "włączone",
"admin_version": "Wersja",
"admin_role": "Rola",
"admin_save": "Zapisz",
"admin_security_check_results": "Wyniki kontroli bezpieczeństwa",
"admin_security_check_results_debug": "Ze względu na rodzaj i ilość informacji wyświetlenie błędu może umożliwić intruzowi dostęp, gdy włącvzona jest opcja POKAŻ BŁĘDY, zalecamy wyłączenie opcji POKAŻ BŁĘDY w systemach produkcyjnych.",
"admin_security_check_results_htaccess": "Plik Flexhtpe .htaccess posiada uprawnienia zapisu. Zalecamy usunięcie wszystkich uprawnień do zapisu. <br> Możesz to zrobić na systemach uniksowych z: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "Plik Flexhtpe index.php posiada uprawnienia zapisu. Zalecamy usunięcie wszystkich uprawnień do zapisu. <br> Możesz to zrobić na systemach uniksowych z: <code>chmod a-w :path</code>",
"admin_server": "Serwer",
"admin_site": "Strona",
"admin_clear_cache": "Wyczyść pamięć podręczną",
"admin_error404_title": "Tytuł błędu Error404",
"admin_error404_description": "Opis błędu Error404",
"admin_error404_content": "Treść błędu Error404",
"admin_error404_template": "Szablon błędu Error404",
"admin_heading": "Ustawienia",
"admin_general": "Ogólne",
"admin_error_404_page": "Strona błędu 404",
"admin_cache": "Pamięć podręczna",
"admin_author_email": "Email Autora",
"admin_author_name": "Imię Autora",
"admin_site_description": "Opis strony",
"admin_site_keywords": "Słowa kluczowe",
"admin_site_robots": "Roboty",
"admin_site_title": "Nazwa strony",
"admin_system": "System",
"admin_cache_driver": "Sterownik pamięci podręcznej",
"admin_cache_enabled": "Pamięć podręczna włączona",
"admin_cache_lifetime": "Czas pamięci podręcznej",
"admin_cache_prefix": "Przedrostek pamięci podręcznej",
"admin_charset": "Zestaw znaków",
"admin_date_format": "Format daty",
"admin_errors_display": "Pokaż błędy",
"admin_locale": "Ustawienia regionalne",
"admin_entry_main": "Strona główna witryny",
"admin_theme": "Motyw",
"admin_timezone": "Strefa czasowa",
"admin_username": "Nazwa Użytkownika",
"admin_create_user": "Utwórz użytkownika",
"admin_create_new_user": "Utwórz nowego użytkownika",
"admin_web_server": "Serwer internetowy",
"admin_web_server_php_interface": "Serwer internetowy do interfejsu PHP",
"admin_create_new_category": "Utwórz nową kategorię",
"admin_delete_category": "Usuń kategorię",
"admin_create_new_item": "Utwórz nową pozycję",
"admin_delete": "Kasuj",
"admin_order": "Kolejność",
"admin_edit_category": "Edytuj kategorię",
"admin_fieldsets": "Zestawy pól",
"admin_template_create_new": "Utwórz nowy szablon",
"admin_create_new_fieldset": "Utwórz nowy zestaw pól",
"admin_duplicate": "Kopiuj",
"admin_summary": "Streszczenie",
"admin_snippet": "Fragment kodu",
"admin_type": "Rodzaj",
"admin_partial": "Częściowy",
"admin_clone": "Kopiuj",
"admin_create_new_snippet": "Utwórz nowy fragment kodu",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Utwórz nowy szablon",
"admin_message_template_created": "Szablon utworzony",
"admin_message_template_deleted": "Szablon został usunięty",
"admin_message_template_renamed": "Zmieniono nazwę szablonu",
"admin_message_template_duplicated": "Szablon został skopiowany",
"admin_message_template_saved": "Szablon został zapisany",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "fragment kodu został zapisany",
"admin_message_snippet_created": "Utworzono fragment kodu",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Fragment kodu usunięty",
"admin_message_snippet_renamed": "Zmieniono nazwę fragmentu kodu",
"admin_message_snippet_duplicated": "Fragment kodu został skopiowany",
"admin_message_fieldset_saved": "Zapisano zestaw pól",
"admin_message_fieldset_created": "Utworzono zestaw pól",
"admin_message_fieldset_deleted": "Zestaw pól został usunięty",
"admin_message_fieldset_renamed": "Zmieniono nazwę zestaw pól",
"admin_message_fieldset_duplicated": "Zestaw pól został skopiowany",
"admin_message_entry_duplicated": "Wpis został skopiowany",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Pliki pamięci podręcznej zostały usunięte",
"admin_message_entry_changes_saved": "Zmiany zostały pomyślnie zapisane",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Wpis został skopiowany",
"admin_message_entry_created": "Utworzono wpis",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Wpis został usunięty",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "Plik został pomyślnie usunięty",
"admin_message_entry_file_uploaded": "Plik został pomyślnie przesłany",
"admin_message_entry_file_not_uploaded": "Plik nie został przesłany",
"admin_message_entry_moved": "Wpis został przeniesiony",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Zmieniono nazwę wpisu",
"admin_message_settings_saved": "Ustawienia zapisane",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Zła nazwa użytkownika lub hasło",
"admin_quality": "Jakość",
"admin_width": "Szerokość",
"admin_height": "Wysokość",
"admin_accept_file_types": "Dopuszczalne typy plików",
"admin_embeded_code": "Wbudowany kod",
"admin_shortcode": "Krótki kod",
"admin_php_code": "Kod PHP",
"admin_choose_files_to_upload": "Wybierz plik",
"admin_browse_files": "Przeglądaj",
"admin_copy": "Kopiuj",
"admin_admin_panel": "Panel administratora",
"admin_light": "Jasny",
"admin_dark": "Ciemny",
"admin_name": "Nazwa",
"admin_memcached_server": "Memcached Serwer",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Hasło",
"admin_redis_server": "Redis Serwer",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "Baza danych SQLite3",
"admin_sqlite3_table": "Tabela SQLite3",
"admin_error_name_empty_input": "Nazwa musi być wartością alfanumeryczną",
"admin_error_title_empty_input": "Tytuł musi być wartością alfanumeryczną",
"admin_entries_visible": "Widoczny",
"admin_entries_draft": "Szkic",
"admin_entries_hidden": "Ukryty",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Administração",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Cancelar",
"admin_create": "Criar",
"admin_debugging": "Depuração",
"admin_email": "Email",
"admin_flextype_version": "Versão Flextype",
"admin_information": "Information",
"admin_installed": "Instalado",
"admin_keywords": "Palavras-chave",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Iniciar sessão",
"admin_entries": "Posts",
"admin_extends": "Estender",
"admin_plugins": "Plugins",
"admin_themes": "Temas",
"admin_help": "Help",
"admin_getting_help": "Getting Help",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Logout",
"admin_profile": "Profile",
"admin_view_site": "View Site",
"admin_snippets": "Snippets",
"admin_not_installed": "Not Installed",
"admin_off": "Off",
"admin_on": "On",
"admin_add": "Add",
"admin_entry_attributes": "Entry Attributes",
"admin_fieldset_for_template": "Fieldset for template",
"admin_content": "Content",
"admin_create_new_entry": "Create New Entry",
"admin_date": "Date",
"admin_draft": "Draft",
"admin_edit": "Edit",
"admin_blocks": "Blocks",
"admin_media": "Media",
"admin_settings": "Settings",
"admin_templates": "Templates",
"admin_entry": "Entry",
"admin_fieldset": "Fieldset",
"admin_source": "Source",
"admin_upload": "Upload",
"admin_hidden": "Hidden",
"admin_image_preview": "Image preview",
"admin_move": "Move",
"admin_parent_entry": "Entry parent",
"admin_preview": "Preview",
"admin_publish": "Publish",
"admin_rename": "Rename",
"admin_save_entry": "Save entry",
"admin_template": "Template",
"admin_title": "Title",
"admin_url": "Url",
"admin_view": "View",
"admin_visibility": "Visibility",
"admin_visible": "Visible",
"admin_password": "Password",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP Version",
"admin_author_url": "Author url",
"admin_bugs": "Bugs",
"admin_description": "Description",
"admin_get_more_plugins": "Get More Plugins",
"admin_homepage": "Página inicial",
"admin_info": "Info",
"admin_license": "Licença",
"admin_status": "Status",
"admin_disabled": "desativado",
"admin_enabled": "ativado",
"admin_version": "Version",
"admin_role": "Posição",
"admin_save": "Save",
"admin_security_check_results": "Resultados da verificação de segurança",
"admin_security_check_results_debug": "Devido ao tipo e quantidade de informações que dê um erro intrusos quando exibir erros TRUE, recomendamos a configuração exibir erros falsos nos sistemas de produção.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "Clear cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "Author email",
"admin_author_name": "Author name",
"admin_site_description": "Site description",
"admin_site_keywords": "Site keywords",
"admin_site_robots": "Robots",
"admin_site_title": "Site title",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Locale",
"admin_entry_main": "Main entry",
"admin_theme": "Theme",
"admin_timezone": "Timezone",
"admin_username": "Username",
"admin_create_user": "Create User",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Delete Category",
"admin_create_new_item": "Create New Item",
"admin_delete": "Delete",
"admin_order": "Order",
"admin_edit_category": "Edit category",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Create New Template",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Duplicate",
"admin_summary": "Summary",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Partial",
"admin_clone": "Clone",
"admin_create_new_snippet": "Create New Snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Create New Template",
"admin_message_template_created": "Template created",
"admin_message_template_deleted": "Template deleted",
"admin_message_template_renamed": "Template renamed",
"admin_message_template_duplicated": "Template duplicated",
"admin_message_template_saved": "Template saved",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet saved",
"admin_message_snippet_created": "Snippet created",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet deleted",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Copy",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Admin",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Cancel",
"admin_create": "Create",
"admin_debugging": "Debugging",
"admin_email": "Email",
"admin_flextype_version": "Flextype Version",
"admin_information": "Information",
"admin_installed": "Installed",
"admin_keywords": "Keywords",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Login",
"admin_entries": "Entries",
"admin_extends": "Extends",
"admin_plugins": "Plugins",
"admin_themes": "Themes",
"admin_help": "Help",
"admin_getting_help": "Getting Help",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Logout",
"admin_profile": "Profile",
"admin_view_site": "View Site",
"admin_snippets": "Snippets",
"admin_not_installed": "Not Installed",
"admin_off": "Off",
"admin_on": "On",
"admin_add": "Add",
"admin_entry_attributes": "Entry Attributes",
"admin_fieldset_for_template": "Fieldset for template",
"admin_content": "Content",
"admin_create_new_entry": "Create New Entry",
"admin_date": "Date",
"admin_draft": "Draft",
"admin_edit": "Edit",
"admin_blocks": "Blocks",
"admin_media": "Media",
"admin_settings": "Settings",
"admin_templates": "Templates",
"admin_entry": "Entry",
"admin_fieldset": "Fieldset",
"admin_source": "Source",
"admin_upload": "Upload",
"admin_hidden": "Hidden",
"admin_image_preview": "Image preview",
"admin_move": "Move",
"admin_parent_entry": "Entry parent",
"admin_preview": "Preview",
"admin_publish": "Publish",
"admin_rename": "Rename",
"admin_save_entry": "Save entry",
"admin_template": "Template",
"admin_title": "Title",
"admin_url": "Url",
"admin_view": "View",
"admin_visibility": "Visibility",
"admin_visible": "Visible",
"admin_password": "Password",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP Version",
"admin_author_url": "Author url",
"admin_bugs": "Bugs",
"admin_description": "Description",
"admin_get_more_plugins": "Get More Plugins",
"admin_homepage": "Homepage",
"admin_info": "Info",
"admin_license": "License",
"admin_status": "Status",
"admin_disabled": "disabled",
"admin_enabled": "enabled",
"admin_version": "Version",
"admin_role": "Role",
"admin_save": "Save",
"admin_security_check_results": "Security check results",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "Clear cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "Author email",
"admin_author_name": "Author name",
"admin_site_description": "Site description",
"admin_site_keywords": "Site keywords",
"admin_site_robots": "Robots",
"admin_site_title": "Site title",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Locale",
"admin_entry_main": "Main entry",
"admin_theme": "Theme",
"admin_timezone": "Timezone",
"admin_username": "Username",
"admin_create_user": "Create User",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Delete Category",
"admin_create_new_item": "Create New Item",
"admin_delete": "Delete",
"admin_order": "Order",
"admin_edit_category": "Edit category",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Create New Template",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Duplicate",
"admin_summary": "Summary",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Partial",
"admin_clone": "Clone",
"admin_create_new_snippet": "Create New Snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Create New Template",
"admin_message_template_created": "Template created",
"admin_message_template_deleted": "Template deleted",
"admin_message_template_renamed": "Template renamed",
"admin_message_template_duplicated": "Template duplicated",
"admin_message_template_saved": "Template saved",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet saved",
"admin_message_snippet_created": "Snippet created",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet deleted",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Copy",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Admin",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Cancel",
"admin_create": "Create",
"admin_debugging": "Debugging",
"admin_email": "Email",
"admin_flextype_version": "Flextype Version",
"admin_information": "Information",
"admin_installed": "Installed",
"admin_keywords": "Keywords",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Login",
"admin_entries": "Entries",
"admin_extends": "Extends",
"admin_plugins": "Plugins",
"admin_themes": "Themes",
"admin_help": "Help",
"admin_getting_help": "Getting Help",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Logout",
"admin_profile": "Profile",
"admin_view_site": "View Site",
"admin_snippets": "Snippets",
"admin_not_installed": "Not Installed",
"admin_off": "Off",
"admin_on": "On",
"admin_add": "Add",
"admin_entry_attributes": "Entry Attributes",
"admin_fieldset_for_template": "Fieldset for template",
"admin_content": "Content",
"admin_create_new_entry": "Create New Entry",
"admin_date": "Date",
"admin_draft": "Draft",
"admin_edit": "Edit",
"admin_blocks": "Blocks",
"admin_media": "Media",
"admin_settings": "Settings",
"admin_templates": "Templates",
"admin_entry": "Entry",
"admin_fieldset": "Fieldset",
"admin_source": "Source",
"admin_upload": "Upload",
"admin_hidden": "Hidden",
"admin_image_preview": "Image preview",
"admin_move": "Move",
"admin_parent_entry": "Entry parent",
"admin_preview": "Preview",
"admin_publish": "Publish",
"admin_rename": "Rename",
"admin_save_entry": "Save entry",
"admin_template": "Template",
"admin_title": "Title",
"admin_url": "Url",
"admin_view": "View",
"admin_visibility": "Visibility",
"admin_visible": "Visible",
"admin_password": "Password",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP Version",
"admin_author_url": "Author url",
"admin_bugs": "Bugs",
"admin_description": "Description",
"admin_get_more_plugins": "Get More Plugins",
"admin_homepage": "Homepage",
"admin_info": "Info",
"admin_license": "License",
"admin_status": "Status",
"admin_disabled": "disabled",
"admin_enabled": "enabled",
"admin_version": "Version",
"admin_role": "Role",
"admin_save": "Save",
"admin_security_check_results": "Security check results",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "Clear cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "Author email",
"admin_author_name": "Author name",
"admin_site_description": "Site description",
"admin_site_keywords": "Site keywords",
"admin_site_robots": "Robots",
"admin_site_title": "Site title",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Locale",
"admin_entry_main": "Main entry",
"admin_theme": "Theme",
"admin_timezone": "Timezone",
"admin_username": "Username",
"admin_create_user": "Create User",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Delete Category",
"admin_create_new_item": "Create New Item",
"admin_delete": "Delete",
"admin_order": "Order",
"admin_edit_category": "Edit category",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Create New Template",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Duplicate",
"admin_summary": "Summary",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Partial",
"admin_clone": "Clone",
"admin_create_new_snippet": "Create New Snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Create New Template",
"admin_message_template_created": "Template created",
"admin_message_template_deleted": "Template deleted",
"admin_message_template_renamed": "Template renamed",
"admin_message_template_duplicated": "Template duplicated",
"admin_message_template_saved": "Template saved",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet saved",
"admin_message_snippet_created": "Snippet created",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet deleted",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Copy",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Админ",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Отмена",
"admin_create": "Создать",
"admin_debugging": "Отладка",
"admin_email": "E-mail",
"admin_flextype_version": "Flextype Версия",
"admin_information": "Информация",
"admin_installed": "Установлено",
"admin_keywords": "Ключевые слова",
"admin_documentation": "Документация",
"admin_memcache_server": "Сервер Memcache",
"admin_memcache_port": "Порт Memcache",
"admin_login": "Логин",
"admin_entries": "Записи",
"admin_extends": "Расширения",
"admin_plugins": "Плагины",
"admin_themes": "Темы",
"admin_help": "Помощь",
"admin_getting_help": "Документация",
"admin_message_json_invalid": "Недопустимый JSON",
"admin_logout": "Выход",
"admin_profile": "Профайл",
"admin_view_site": "Просмотреть Сайт",
"admin_snippets": "Сниппеты",
"admin_not_installed": "Не установлено",
"admin_off": "Выключено",
"admin_on": "Включено",
"admin_add": "Добавить",
"admin_entry_attributes": "Атрибуты Записи",
"admin_fieldset_for_template": "Набор полей для шаблона",
"admin_content": "Контент",
"admin_create_new_entry": "Создать Новую Запись",
"admin_date": "Дата",
"admin_draft": "Черновик",
"admin_edit": "Редактировать",
"admin_blocks": "Блоки",
"admin_media": "Медиа",
"admin_settings": "Настройки",
"admin_templates": "Шаблоны",
"admin_entry": "Записи",
"admin_fieldset": "Поле",
"admin_source": "Код",
"admin_upload": "Загрузить",
"admin_hidden": "Скрытый",
"admin_image_preview": "Просмотр изображения",
"admin_move": "Переместить",
"admin_parent_entry": "Родитель записи",
"admin_preview": "Просмотр",
"admin_publish": "Публиковать",
"admin_rename": "Переименовать",
"admin_save_entry": "Сохранить запись",
"admin_template": "Шаблон",
"admin_title": "Заголовок",
"admin_url": "Ссылка",
"admin_view": "Просмотр",
"admin_visibility": "Видимость",
"admin_visible": "Видимый",
"admin_password": "Пароль",
"admin_php_built_on": "PHP включен",
"admin_php_version": "PHP Версия",
"admin_author_url": "Ссылка Автора",
"admin_bugs": "Баги",
"admin_description": "Описание",
"admin_get_more_plugins": "Скачать Новые Плагины",
"admin_homepage": "Домашняя страничка",
"admin_info": "Информация",
"admin_license": "Лицензия",
"admin_status": "Статус",
"admin_disabled": "Выключено",
"admin_enabled": "Включено",
"admin_version": "Версия",
"admin_role": "Роль",
"admin_save": "Сохранить",
"admin_security_check_results": "Результаты проверки безопасности",
"admin_security_check_results_debug": "Система работает в режиме ОТЛАДКИ Мы рекомендуем вам УБРАТЬ режим ОТЛАДКИ на живом сайте.",
"admin_security_check_results_htaccess": "Главный .htaccess доступен для записи. Мы рекомендуем вам удалить права записи на главный .htaccess файл. <br> Вы можете сделать это на UNIX системах так: <code>chmod -R a-w :path</code>",
"admin_security_check_results_index": "Главный index.php файл доступен для записи. Мы рекомендуем вам удалить права записи на главный index.php файл. <br> Вы можете сделать это на UNIX системах так: <code>chmod -R a-w :path</code>",
"admin_server": "Сервер",
"admin_site": "Сайт",
"admin_clear_cache": "Очистить кеш",
"admin_error404_title": "Заголовок страницы про - Ошибку 404",
"admin_error404_description": "Описание страницы про - Ошибку 404",
"admin_error404_content": "Контент страницы про - Ошибку 404",
"admin_error404_template": "Шаблон страницы про - Ошибку 404",
"admin_heading": "Настройки",
"admin_general": "Основное",
"admin_error_404_page": "Страница ошибки 404",
"admin_cache": "Кеш",
"admin_author_email": "Электронная почта автора",
"admin_author_name": "Имя автора",
"admin_site_description": "Описание сайта",
"admin_site_keywords": "Ключевые слова сайта",
"admin_site_robots": "Роботы",
"admin_site_title": "Заголовок сайта",
"admin_system": "Система",
"admin_cache_driver": "Драйвер кеша",
"admin_cache_enabled": "Кэш включен",
"admin_cache_lifetime": "Время жизни кеша",
"admin_cache_prefix": "Префикс кэша",
"admin_charset": "Кодировка",
"admin_date_format": "Формат даты",
"admin_errors_display": "Показывать ошибки",
"admin_locale": "Язык",
"admin_entry_main": "Главная запись",
"admin_theme": "Тема",
"admin_timezone": "Часовой пояс",
"admin_username": "Имя пользователя",
"admin_create_user": "Создать пользователя",
"admin_create_new_user": "Создать нового пользователя",
"admin_web_server": "Веб-сервер",
"admin_web_server_php_interface": "PHP интерфейс веб-сервера",
"admin_create_new_category": "Создать новую категорию",
"admin_delete_category": "Удалить категорию",
"admin_create_new_item": "Создать Новый Элемент",
"admin_delete": "Удалить",
"admin_order": "Порядок",
"admin_edit_category": "Редактировать категорию",
"admin_fieldsets": "Наборы полей",
"admin_template_create_new": "Создать новый шаблон",
"admin_create_new_fieldset": "Создать новый набор полей",
"admin_duplicate": "Дублировать",
"admin_summary": "Краткое описание",
"admin_snippet": "Сниппет",
"admin_type": "Тип",
"admin_partial": "Партиал",
"admin_clone": "Клон",
"admin_create_new_snippet": "Создать новый сниппет",
"admin_message_snippet_was_not_deleted": "Сниппет не был удален",
"admin_message_snippet_was_not_renamed": "Сниппет не был переименован",
"admin_message_snippet_was_not_duplicated": "Сниппет не был дублирован",
"admin_message_snippet_was_not_saved": "Сниппет не был сохранен",
"admin_create_new_template": "Создать новый шаблон",
"admin_message_template_created": "Шаблон создан",
"admin_message_template_deleted": "Шаблон удален",
"admin_message_template_renamed": "Шаблон переименован",
"admin_message_template_duplicated": "Шаблон дублировался",
"admin_message_template_saved": "Шаблон сохранен",
"admin_message_template_was_not_created": "Шаблон не был переименован",
"admin_message_partial_was_not_created": "Partial не был переименован",
"admin_message_partial_created": "Partial создан",
"admin_message_partial_deleted": "Partial удален",
"admin_message_partial_was_not_deleted": "Partial не удален",
"admin_message_snippet_saved": "Сниппет сохранен",
"admin_message_snippet_created": "Сниппет создан",
"admin_message_snippet_was_not_created": "Сниппет не был создан",
"admin_message_snippet_deleted": "Сниппет удален",
"admin_message_snippet_renamed": "Сниппет переименован",
"admin_message_snippet_duplicated": "Сниппет дублирован ",
"admin_message_fieldset_saved": "Набор полей сохранен",
"admin_message_fieldset_created": "Набор полей создан",
"admin_message_fieldset_deleted": "Набор полей удален",
"admin_message_fieldset_renamed": "Набор полей создан",
"admin_message_fieldset_duplicated": "Набор полей удален",
"admin_message_entry_duplicated": "Запись дублировалась",
"admin_message_entry_was_not_duplicated": "Запись не была дублирована",
"admin_message_cache_files_deleted": "Файлы кеша удалены",
"admin_message_entry_changes_saved": "Изменения успешно сохранены",
"admin_message_entry_changes_not_saved": "Изменения не сохранены",
"admin_message_entry_cloned": "Запись клонировалась",
"admin_message_entry_created": "Запись создана",
"admin_message_entry_was_not_created": "Запись не была создана",
"admin_message_entry_deleted": "Запись удалена",
"admin_message_entry_was_not_renamed": "Запись не была переименована",
"admin_message_entry_was_not_deleted": "Запись не удалена",
"admin_message_entry_file_deleted": "Файл успешно удален",
"admin_message_entry_file_uploaded": "Файл успешно загружен",
"admin_message_entry_file_not_uploaded": "Файл не был загружен",
"admin_message_entry_moved": "Запись перемещена",
"admin_message_entry_was_not_moved": "Запись не была перемещена",
"admin_message_entry_renamed": "Запись переименована",
"admin_message_settings_saved": "Настройки сохранены",
"admin_message_settings_was_not_saved": "Настройки не сохранены",
"admin_message_wrong_username_password": "Неверное имя пользователя или пароль",
"admin_quality": "Качество",
"admin_width": "Ширина",
"admin_height": "Высота",
"admin_accept_file_types": "Допустимые типы файлов",
"admin_embeded_code": "Код для вставки",
"admin_shortcode": "Короткий код",
"admin_php_code": "PHP код",
"admin_choose_files_to_upload": "Выберите файл",
"admin_browse_files": "Просмотреть",
"admin_copy": "Копировать",
"admin_admin_panel": "Админ панель",
"admin_light": "Светлая",
"admin_dark": "Темная",
"admin_name": "Название",
"admin_memcached_server": "Сервер Memcache",
"admin_memcached_port": "Порт Memcache",
"admin_redis_socket": "Сокет Redis",
"admin_redis_password": "Redis пароль",
"admin_redis_server": "Сервер Redis",
"admin_redis_port": "Redis Порт",
"admin_sqlite3_database": "База данных SQLite3",
"admin_sqlite3_table": "Таблица SQLite3",
"admin_error_name_empty_input": "Название должно быть буквенно-цифровое значение (от 1 симв.)",
"admin_error_title_empty_input": "Заголовок должен иметь буквенно-цифровое значение (от 1 симв.)",
"admin_entries_visible": "Видимый",
"admin_entries_draft": "Черновик",
"admin_entries_hidden": "Скрытый",
"admin_menu_item_title": "Заголовок",
"admin_menu_item_url": "Ссылка",
"admin_menu_item_target": "Цель",
"admin_menu_item_order": "Порядок",
"admin_template_code": "Код для вставки",
"admin_you_have_not_created_any_entries_yet": "Вы еще не создали ни одной записи!",
"admin_you_have_not_created_any_snippets_yet": "Вы еще не создали сниппетов!",
"admin_you_have_not_created_any_templates_yet": "Вы еще не создали ни одного шаблона!",
"admin_you_have_not_created_any_fieldsets_yet": "Вы еще не создали ни одного набора полей!",
"admin_twig_auto_reload": "Автоперезагрузка Twig",
"admin_display_error_details": "Показывать детали ошибок",
"admin_add_content_length_header": "Добавить заголовок длины содержимого",
"admin_router_cache_file": "Кэш-файл маршрута",
"admin_determine_route_before_app_middleware": "Определить маршрут перед middleware приложения",
"admin_output_buffering": "Выходный буфер",
"admin_response_chunk_size": "Размер чанка ответа",
"admin_http_version": "Версия HTTP",
"admin_image_driver": "Драйвер изображений",
"admin_whoops_editor": "Whoops редактор",
"admin_whoops_page_title": "Whoops заголовок страницы ",
"admin_editor": "Редактор",
"admin_tools": "Инструменты",
"admin_size": "Размер",
"admin_clear": "Очистить",
"admin_clear_cache_all": "Очистить все",
"admin_registry": "Реестр",
"admin_key": "Ключ",
"admin_value": "Значение",
"admin_activate": "Активировать",
"admin_active_theme": "Активная тема",
"admin_get_more_themes": "Получить больше тем",
"admin_images": "Изображения",
"admin_data": "Данные",
"admin_slugify": "ЧПУ",
"admin_entries_limit": "Лимит записей",
"admin_slug": "ЧПУ",
"admin_slugify_separator": "Разделитель",
"admin_slugify_lowercase": "Нижний регистр",
"admin_slugify_trim": "Обрезать",
"admin_slugify_strip_tags": "Убрать теги",
"admin_slugify_lowercase_after_regexp": "Переводить в нижний регистр после regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Изображение галереи"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Admin",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Cancel",
"admin_create": "Create",
"admin_debugging": "Debugging",
"admin_email": "Email",
"admin_flextype_version": "Flextype Version",
"admin_information": "Information",
"admin_installed": "Installed",
"admin_keywords": "Keywords",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Login",
"admin_entries": "Entries",
"admin_extends": "Extends",
"admin_plugins": "Plugins",
"admin_themes": "Themes",
"admin_help": "Help",
"admin_getting_help": "Getting Help",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Logout",
"admin_profile": "Profile",
"admin_view_site": "View Site",
"admin_snippets": "Snippets",
"admin_not_installed": "Not Installed",
"admin_off": "Off",
"admin_on": "On",
"admin_add": "Add",
"admin_entry_attributes": "Entry Attributes",
"admin_fieldset_for_template": "Fieldset for template",
"admin_content": "Content",
"admin_create_new_entry": "Create New Entry",
"admin_date": "Date",
"admin_draft": "Draft",
"admin_edit": "Edit",
"admin_blocks": "Blocks",
"admin_media": "Media",
"admin_settings": "Settings",
"admin_templates": "Templates",
"admin_entry": "Entry",
"admin_fieldset": "Fieldset",
"admin_source": "Source",
"admin_upload": "Upload",
"admin_hidden": "Hidden",
"admin_image_preview": "Image preview",
"admin_move": "Move",
"admin_parent_entry": "Entry parent",
"admin_preview": "Preview",
"admin_publish": "Publish",
"admin_rename": "Rename",
"admin_save_entry": "Save entry",
"admin_template": "Template",
"admin_title": "Title",
"admin_url": "Url",
"admin_view": "View",
"admin_visibility": "Visibility",
"admin_visible": "Visible",
"admin_password": "Password",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP Version",
"admin_author_url": "Author url",
"admin_bugs": "Bugs",
"admin_description": "Description",
"admin_get_more_plugins": "Get More Plugins",
"admin_homepage": "Homepage",
"admin_info": "Info",
"admin_license": "License",
"admin_status": "Status",
"admin_disabled": "disabled",
"admin_enabled": "enabled",
"admin_version": "Version",
"admin_role": "Role",
"admin_save": "Save",
"admin_security_check_results": "Security check results",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "Clear cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "Author email",
"admin_author_name": "Author name",
"admin_site_description": "Site description",
"admin_site_keywords": "Site keywords",
"admin_site_robots": "Robots",
"admin_site_title": "Site title",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Locale",
"admin_entry_main": "Main entry",
"admin_theme": "Theme",
"admin_timezone": "Timezone",
"admin_username": "Username",
"admin_create_user": "Create User",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Delete Category",
"admin_create_new_item": "Create New Item",
"admin_delete": "Delete",
"admin_order": "Order",
"admin_edit_category": "Edit category",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Create New Template",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Duplicate",
"admin_summary": "Summary",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Partial",
"admin_clone": "Clone",
"admin_create_new_snippet": "Create New Snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Create New Template",
"admin_message_template_created": "Template created",
"admin_message_template_deleted": "Template deleted",
"admin_message_template_renamed": "Template renamed",
"admin_message_template_duplicated": "Template duplicated",
"admin_message_template_saved": "Template saved",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet saved",
"admin_message_snippet_created": "Snippet created",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet deleted",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Copy",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Admin",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Avbryt",
"admin_create": "Skapa",
"admin_debugging": "Felsökning",
"admin_email": "E-post",
"admin_flextype_version": "Flextype version",
"admin_information": "Information",
"admin_installed": "Installerad",
"admin_keywords": "Nyckelord",
"admin_documentation": "Dokumentation",
"admin_memcache_server": "Memcache-server",
"admin_memcache_port": "Memcache-port",
"admin_login": "Inloggning",
"admin_entries": "Inlägg",
"admin_extends": "Utökningar",
"admin_plugins": "Tillägg",
"admin_themes": "Teman",
"admin_help": "Hjälp",
"admin_getting_help": "Få hjälp",
"admin_message_json_invalid": "Felaktig JSON",
"admin_logout": "Logga ut",
"admin_profile": "Profil",
"admin_view_site": "Visa webbplats",
"admin_snippets": "Delkoder",
"admin_not_installed": "Inte installerad",
"admin_off": "Av",
"admin_on": "På",
"admin_add": "Lägg till",
"admin_entry_attributes": "Inläggsattribut",
"admin_fieldset_for_template": "Fältgrupp för mall",
"admin_content": "Innehåll",
"admin_create_new_entry": "Skapa ny post",
"admin_date": "Datum",
"admin_draft": "Utkast",
"admin_edit": "Redigera",
"admin_blocks": "Block",
"admin_media": "Media",
"admin_settings": "Inställningar",
"admin_templates": "Mallar",
"admin_entry": "Inlägg",
"admin_fieldset": "Fältgrupp",
"admin_source": "Källa",
"admin_upload": "Ladda upp",
"admin_hidden": "Dold",
"admin_image_preview": "Förhandsvisning",
"admin_move": "Flytta",
"admin_parent_entry": "Inläggsförälder",
"admin_preview": "Förhandsgranska",
"admin_publish": "Publicera",
"admin_rename": "Ändra namn",
"admin_save_entry": "Spara inlägg",
"admin_template": "Mall",
"admin_title": "Rubrik",
"admin_url": "URL",
"admin_view": "Visa",
"admin_visibility": "Synlighet",
"admin_visible": "Synlig",
"admin_password": "Lösenord",
"admin_php_built_on": "PHP byggd den",
"admin_php_version": "PHP-version",
"admin_author_url": "Författarens URL",
"admin_bugs": "Fel",
"admin_description": "Beskrivning",
"admin_get_more_plugins": "Skaffa fler tillägg",
"admin_homepage": "Hemsida",
"admin_info": "Info",
"admin_license": "Licens",
"admin_status": "Status",
"admin_disabled": "inaktiverad",
"admin_enabled": "aktiverad",
"admin_version": "Version",
"admin_role": "Roll",
"admin_save": "Spara",
"admin_security_check_results": "Resultat av säkerhetskontroll",
"admin_security_check_results_debug": "På grund av typen och mängden information kan ett fel tillåta inkräktare när DISPLAY ERRORS TRUE, vi rekommenderar starkt att du ställer in DISPLAY ERRORS FALSE i produktionsmiljö.",
"admin_security_check_results_htaccess": "Flextype's .htaccess-fil har visat sig vara skrivbar. Vi rekommenderar att du tar bort alla skrivrättigheter. <br> Du kan göra detta på unix-system genom att köra: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "Flextype's index.php-fil har visat sig vara skrivbar. Vi rekommenderar att du tar bort alla skrivrättigheter. <br> Du kan göra detta på unix-system genom att köra: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Webbplats",
"admin_clear_cache": "Rensa cache",
"admin_error404_title": "Rubrik för Error404-inlägg",
"admin_error404_description": "Beskrivning för Error404-inlägg",
"admin_error404_content": "Innehåll för Error404-inlägg",
"admin_error404_template": "Mall för Error404-inlägg",
"admin_heading": "Inställningar",
"admin_general": "Allmänt",
"admin_error_404_page": "404 felsida",
"admin_cache": "Cache",
"admin_author_email": "Författarens e-post",
"admin_author_name": "Författarens namn",
"admin_site_description": "Webbplatsbeskrivning",
"admin_site_keywords": "Webbplatssökord",
"admin_site_robots": "Robots",
"admin_site_title": "Webbplatsens rubrik",
"admin_system": "System",
"admin_cache_driver": "Cachedrivrutin",
"admin_cache_enabled": "Cache aktiverat",
"admin_cache_lifetime": "Cache-livslängd",
"admin_cache_prefix": "Cache-prefix",
"admin_charset": "Teckenuppsättning",
"admin_date_format": "Datumformat",
"admin_errors_display": "Visa fel",
"admin_locale": "Språk",
"admin_entry_main": "Huvudinlägg",
"admin_theme": "Tema",
"admin_timezone": "Tidszon",
"admin_username": "Användarnamn",
"admin_create_user": "Skapa användare",
"admin_create_new_user": "Skapa ny användare",
"admin_web_server": "Webbserver",
"admin_web_server_php_interface": "Webbserver till PHP-gränssnitt",
"admin_create_new_category": "Skapa ny kategori",
"admin_delete_category": "Ta bort kategori",
"admin_create_new_item": "Skapa ny post",
"admin_delete": "Ta Bort",
"admin_order": "Sortera",
"admin_edit_category": "Ändra kategori",
"admin_fieldsets": "Fältgrupp",
"admin_template_create_new": "Skapa ny mall",
"admin_create_new_fieldset": "Skapa ny fältgrupp",
"admin_duplicate": "Duplicera",
"admin_summary": "Sammanfattning",
"admin_snippet": "Delkod",
"admin_type": "Typ",
"admin_partial": "Delvis",
"admin_clone": "Klona",
"admin_create_new_snippet": "Skapa ny delkod",
"admin_message_snippet_was_not_deleted": "Delkod togs inte bort",
"admin_message_snippet_was_not_renamed": "Delkod bytte inte namn",
"admin_message_snippet_was_not_duplicated": "Delkod duplicerades inte",
"admin_message_snippet_was_not_saved": "Delkod sparades inte",
"admin_create_new_template": "Skapa ny mall",
"admin_message_template_created": "Mall skapad",
"admin_message_template_deleted": "Mallen är borttagen",
"admin_message_template_renamed": "Mallen har bytt namn",
"admin_message_template_duplicated": "Mallen är duplicerad",
"admin_message_template_saved": "Mallen är sparad",
"admin_message_template_was_not_created": "Mallen bytte inte namn",
"admin_message_partial_was_not_created": "Del bytte inte namn",
"admin_message_partial_created": "Del skapad",
"admin_message_partial_deleted": "Del borttagen",
"admin_message_partial_was_not_deleted": "Del togs inte bort",
"admin_message_snippet_saved": "Delkod sparad",
"admin_message_snippet_created": "Delkod skapad",
"admin_message_snippet_was_not_created": "Delkod skapades inte",
"admin_message_snippet_deleted": "Delkod bottagen",
"admin_message_snippet_renamed": "Delkod har bytt namn",
"admin_message_snippet_duplicated": "Delkod duplicerad",
"admin_message_fieldset_saved": "Fältgruppen sparad",
"admin_message_fieldset_created": "Fältgrupp skapad",
"admin_message_fieldset_deleted": "Fältgrupp borttagen",
"admin_message_fieldset_renamed": "Fältgrupp har bytt namn",
"admin_message_fieldset_duplicated": "Fältgrupp duplicerad",
"admin_message_entry_duplicated": "Inlägg duplicerat",
"admin_message_entry_was_not_duplicated": "Inlägg duplicerades inte",
"admin_message_cache_files_deleted": "Cachefiler rensade",
"admin_message_entry_changes_saved": "Ändringarna sparades",
"admin_message_entry_changes_not_saved": "Ändringarna sparades inte",
"admin_message_entry_cloned": "Inlägg klonades",
"admin_message_entry_created": "Inlägg skapat",
"admin_message_entry_was_not_created": "Inlägg skapades inte",
"admin_message_entry_deleted": "Inlägg raderades",
"admin_message_entry_was_not_renamed": "Inlägg bytte inte namn",
"admin_message_entry_was_not_deleted": "Inlägg raderades inte",
"admin_message_entry_file_deleted": "Fil raderad",
"admin_message_entry_file_uploaded": "Filen har laddats upp",
"admin_message_entry_file_not_uploaded": "Filen laddades inte upp",
"admin_message_entry_moved": "Inlägg flyttat",
"admin_message_entry_was_not_moved": "Inlägg flyttades inte",
"admin_message_entry_renamed": "Inlägg har bytt namn",
"admin_message_settings_saved": "Inställningarna har sparats",
"admin_message_settings_was_not_saved": "Inställningar har inte sparats",
"admin_message_wrong_username_password": "Fel användarnamn eller lösenord",
"admin_quality": "Kvalitet",
"admin_width": "Bredd",
"admin_height": "Höjd",
"admin_accept_file_types": "Acceptera filtyper",
"admin_embeded_code": "Inbäddad kod",
"admin_shortcode": "Kortkod",
"admin_php_code": "PHP-kod",
"admin_choose_files_to_upload": "Välj fil",
"admin_browse_files": "Bläddra",
"admin_copy": "Kopiera",
"admin_admin_panel": "Admin-panel",
"admin_light": "Ljus",
"admin_dark": "Mörk",
"admin_name": "Namn",
"admin_memcached_server": "Memcache-server",
"admin_memcached_port": "Memcache-port",
"admin_redis_socket": "Redis-socket",
"admin_redis_password": "Redis-lösenord",
"admin_redis_server": "Redis-server",
"admin_redis_port": "Redis-port",
"admin_sqlite3_database": "SQLite3 databas",
"admin_sqlite3_table": "SQLite tabell",
"admin_error_name_empty_input": "Namnet måste vara ett alfanumeriskt värde (minst 1 tecken)",
"admin_error_title_empty_input": "Rubriken måste vara ett alfanumeriskt värde (minst 1 tecken)",
"admin_entries_visible": "Synlig",
"admin_entries_draft": "Utkast",
"admin_entries_hidden": "Dold",
"admin_menu_item_title": "Rubrik",
"admin_menu_item_url": "URL",
"admin_menu_item_target": "Mål",
"admin_menu_item_order": "Sortering",
"admin_template_code": "Mallkod",
"admin_you_have_not_created_any_entries_yet": "Du har inte skapat några inlägg än!",
"admin_you_have_not_created_any_snippets_yet": "Du har inte skapat några delkoder än!",
"admin_you_have_not_created_any_templates_yet": "Du har inte skapat några mallar än!",
"admin_you_have_not_created_any_fieldsets_yet": "Du har inte skapat några fältgrupper än!",
"admin_twig_auto_reload": "Automatisk omladdning av Twig",
"admin_display_error_details": "Visa feldetaljer",
"admin_add_content_length_header": "Lägg till innehållslängdrubrik",
"admin_router_cache_file": "Rutt för cachefil",
"admin_determine_route_before_app_middleware": "Bestäm rutt innan app-middleware",
"admin_output_buffering": "Utmatningsbuffert",
"admin_response_chunk_size": "Svarsstorlek",
"admin_http_version": "HTTP-version",
"admin_image_driver": "Bilddrivrutin",
"admin_whoops_editor": "Whoops-redigerare",
"admin_whoops_page_title": "Whoops sidrubrik",
"admin_editor": "Redigerare",
"admin_tools": "Verktyg",
"admin_size": "Storlek",
"admin_clear": "Rensa",
"admin_clear_cache_all": "Rensa alla",
"admin_registry": "Register",
"admin_key": "Nyckel",
"admin_value": "Värde",
"admin_activate": "Aktivera",
"admin_active_theme": "Aktivera tema",
"admin_get_more_themes": "Skaffa fler teman",
"admin_images": "Bilder",
"admin_data": "Data",
"admin_slugify": "Permalänk",
"admin_entries_limit": "Begränsning inlägg",
"admin_slug": "Permalänk",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Gemener",
"admin_slugify_trim": "Beskär",
"admin_slugify_strip_tags": "Ta bort taggar",
"admin_slugify_lowercase_after_regexp": "Gemener efter regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Galleribild"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Yönetici",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "İptal",
"admin_create": "Oluştur",
"admin_debugging": "Hata ayıklama",
"admin_email": "E-posta",
"admin_flextype_version": "Flextype Sürüm",
"admin_information": "Bilgi",
"admin_installed": "Yüklendi",
"admin_keywords": "Anahtar Kelimeler",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Giriş Yap",
"admin_entries": "Entries",
"admin_extends": "Uzantı",
"admin_plugins": "Eklentiler",
"admin_themes": "Temalar",
"admin_help": "Yardım et",
"admin_getting_help": "Yardım Alma",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": ıkış Yap",
"admin_profile": "Profil",
"admin_view_site": "Siteyi Görüntüle",
"admin_snippets": "Snippets",
"admin_not_installed": "Yüklenmedi",
"admin_off": "Kapalı",
"admin_on": "Açık",
"admin_add": "Ekle",
"admin_entry_attributes": "Entry Attributes",
"admin_fieldset_for_template": "Fieldset for template",
"admin_content": "İçerik",
"admin_create_new_entry": "Create New Entry",
"admin_date": "Tarih",
"admin_draft": "Taslak",
"admin_edit": "Düzenle",
"admin_blocks": "Bloklar",
"admin_media": "Medya",
"admin_settings": "Ayarlar",
"admin_templates": "Şablonlar",
"admin_entry": "Girdi",
"admin_fieldset": "Fieldset",
"admin_source": "Kaynak",
"admin_upload": "Yükle",
"admin_hidden": "Gizli",
"admin_image_preview": "Resim önizleme",
"admin_move": "Taşı",
"admin_parent_entry": "Entry parent",
"admin_preview": "Önizleme",
"admin_publish": "Yayınla",
"admin_rename": "Yeniden Adlandır",
"admin_save_entry": "Girdiyi kaydet",
"admin_template": "Şablon",
"admin_title": "Başlık",
"admin_url": "Url",
"admin_view": "Görüntüle",
"admin_visibility": "Görünürlük",
"admin_visible": "Görünürlük",
"admin_password": "Şifre",
"admin_php_built_on": "PHP üzerinde oluşturulan",
"admin_php_version": "PHP Versiyon",
"admin_author_url": "Yazar url",
"admin_bugs": "Hatalar",
"admin_description": "Açıklama",
"admin_get_more_plugins": "Daha Fazla Eklenti",
"admin_homepage": "Anasayfa",
"admin_info": "Bilgi",
"admin_license": "Lisans",
"admin_status": "Durum",
"admin_disabled": "devre dışı",
"admin_enabled": "etkin",
"admin_version": "Sürüm",
"admin_role": "Rol",
"admin_save": "Kaydet",
"admin_security_check_results": "Security check results",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Sunucu",
"admin_site": "Site",
"admin_clear_cache": "Önbelleği temizle",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Ayarlar",
"admin_general": "Genel",
"admin_error_404_page": "Hata 404 sayfası",
"admin_cache": "Önbellek",
"admin_author_email": "Yazar e-posta",
"admin_author_name": "Yazar adı",
"admin_site_description": "Site açıklaması",
"admin_site_keywords": "Site Anahtar Kelimeler",
"admin_site_robots": "Robots",
"admin_site_title": "Site Başlığı",
"admin_system": "Sistem",
"admin_cache_driver": "Önbellek sürücüsü",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Tarih formatı",
"admin_errors_display": "Display errors",
"admin_locale": "Yerel",
"admin_entry_main": "Main entry",
"admin_theme": "Tema",
"admin_timezone": "Zaman Dilimi",
"admin_username": "Kullanıcı Adı",
"admin_create_user": "Kullanıcı Oluştur",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Sunucu",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Kategori Sil",
"admin_create_new_item": "Create New Item",
"admin_delete": "Sil",
"admin_order": "Sıra",
"admin_edit_category": "Kategoriyi düzenle",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Yeni Şablon Oluştur",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Kopyala",
"admin_summary": "Summary",
"admin_snippet": "Snippet",
"admin_type": "Tür",
"admin_partial": "Partial",
"admin_clone": "Klonla",
"admin_create_new_snippet": "Create New Snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Create New Template",
"admin_message_template_created": "Template created",
"admin_message_template_deleted": "Şablon silindi",
"admin_message_template_renamed": "Template renamed",
"admin_message_template_duplicated": "Template duplicated",
"admin_message_template_saved": "Template saved",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet saved",
"admin_message_snippet_created": "Snippet created",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet deleted",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Genişlik",
"admin_height": "Yükseklik",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Dosya seç",
"admin_browse_files": "Gözat",
"admin_copy": "Kopyala",
"admin_admin_panel": "Yönetim Paneli",
"admin_light": "Aydınlık",
"admin_dark": "Karanlık",
"admin_name": "Ad",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Адмін",
"admin_welcome": "Вітаємо",
"admin_create_new_user_welcome": "Щоб закінчити налаштування та захистити свій сайт, створіть першого користувача, ввівши необхідну інформацію нижче.",
"admin_cancel": "Скасувати",
"admin_create": "Створити",
"admin_debugging": "Відлагодження",
"admin_email": "E-mail",
"admin_flextype_version": "Версія Flextype",
"admin_information": "Інформація",
"admin_installed": "Встановлений",
"admin_keywords": "Ключові Слова",
"admin_documentation": "Документація",
"admin_memcache_server": "Сервер Memcache",
"admin_memcache_port": "Порт Memcache",
"admin_login": "Логін",
"admin_entries": "Записи",
"admin_extends": "Розширення",
"admin_plugins": "Плагіни",
"admin_themes": "Тема оформлення",
"admin_help": "Допомога",
"admin_getting_help": "Отримати довідку",
"admin_message_json_invalid": "Неприпустимий JSON",
"admin_logout": "Вихід",
"admin_profile": "Профіль",
"admin_view_site": "Переглянути сайт",
"admin_snippets": "Сніпети",
"admin_not_installed": "Не встановлено",
"admin_off": "Вимкнено",
"admin_on": "Увімкнуто",
"admin_add": "Додати",
"admin_entry_attributes": "Атрибути запису",
"admin_fieldset_for_template": "Набір полів для шаблону",
"admin_content": "Контент",
"admin_create_new_entry": "Створити новий запис",
"admin_date": "Дата",
"admin_draft": "Чернетка",
"admin_edit": "Редагувати",
"admin_blocks": "Блоки",
"admin_media": "Медіа-файли",
"admin_settings": "Налаштування",
"admin_templates": "Шаблони",
"admin_entry": "Запис",
"admin_fieldset": "Набір полів",
"admin_source": "Джерело",
"admin_upload": "Завантажити",
"admin_hidden": "Прихований",
"admin_image_preview": "Попередній перегляд",
"admin_move": "Перемістити",
"admin_parent_entry": "Запис батьків",
"admin_preview": "Попередній перегляд",
"admin_publish": "Опублікувати",
"admin_rename": "Перейменувати",
"admin_save_entry": "Зберегти запис",
"admin_template": "Шаблон",
"admin_title": "Заголовок",
"admin_url": "URL-адреса",
"admin_view": "Вигляд",
"admin_visibility": "Видимість",
"admin_visible": "Видимий",
"admin_password": "Пароль",
"admin_php_built_on": "Побудований на PHP",
"admin_php_version": "Версія PHP",
"admin_author_url": "URL автора",
"admin_bugs": "Помилка",
"admin_description": "Опис",
"admin_get_more_plugins": "Отримати більше плагінів",
"admin_homepage": "Домашня сторінка",
"admin_info": "Інформація",
"admin_license": "Ліцензія",
"admin_status": "Статус",
"admin_disabled": "Вимкнено",
"admin_enabled": "Увімкнено",
"admin_version": "Версія",
"admin_role": "Роль",
"admin_save": "Зберегти",
"admin_security_check_results": "Результатів перевірки безпеки",
"admin_security_check_results_debug": "У зв'язку з тип і обсяг інформації, що помилка може дати зловмисників, коли ВІДОБРАЖЕННЯ помилок-правда, ми настійно радимо налаштування ВІДОБРАЖЕННЯ помилок ПОМИЛКОВИХ систем виробництва.",
"admin_security_check_results_htaccess": "Htaccess файл Flextype було встановлено, бути для запису. Ми б радили Вам, щоб видалити всі права на запис. <br>для цього на Unix-подібних системах з: <code>chmod a-w: шлях</code>",
"admin_security_check_results_index": "Htaccess файл Flextype було встановлено, бути для запису. Ми б радили Вам, щоб видалити всі права на запис. <br>для цього на Unix-подібних системах з: <code>chmod a-w: шлях</code>",
"admin_server": "Сервер",
"admin_site": "Сайт",
"admin_clear_cache": "Очистити кеш",
"admin_error404_title": "Назва Error404",
"admin_error404_description": "Error404 запис Опис",
"admin_error404_content": "Назва Error404",
"admin_error404_template": "Запис шаблону Error404",
"admin_heading": "Налаштування",
"admin_general": "Загальні",
"admin_error_404_page": "Сторінка з помилкою 404",
"admin_cache": "Кеш",
"admin_author_email": "Електронна пошта автора",
"admin_author_name": "Ім'я автора",
"admin_site_description": "Опис сайту",
"admin_site_keywords": "Ключові слова сайту",
"admin_site_robots": "Роботи",
"admin_site_title": "Заголовок сайта",
"admin_system": "Система",
"admin_cache_driver": "Кеш драйвера",
"admin_cache_enabled": "Кеш включений",
"admin_cache_lifetime": "Тривалість зберігання кешу",
"admin_cache_prefix": "Кеш префікс",
"admin_charset": "Кодування",
"admin_date_format": "Формат дати",
"admin_errors_display": "Відображати помилки",
"admin_locale": "Мова",
"admin_entry_main": "Основний запис",
"admin_theme": "Тема оформлення",
"admin_timezone": "Часовий пояс",
"admin_username": "Користувач",
"admin_create_user": "Створити користувача",
"admin_create_new_user": "Створити нового користувача",
"admin_web_server": "Веб-сервер",
"admin_web_server_php_interface": "Веб-сервер для PHP інтерфейс",
"admin_create_new_category": "Створити нову категорію",
"admin_delete_category": "Видалити категорію",
"admin_create_new_item": "Створити новий елемент",
"admin_delete": "Видалити",
"admin_order": "Замовлення",
"admin_edit_category": "Редагувати категорію",
"admin_fieldsets": "Набір полів",
"admin_template_create_new": "Створити новий шаблон",
"admin_create_new_fieldset": "Створити новий набір полів",
"admin_duplicate": "Створити копію",
"admin_summary": "Підсумок",
"admin_snippet": "Сніпети",
"admin_type": "Тип",
"admin_partial": "Частково",
"admin_clone": "Клонувати",
"admin_create_new_snippet": "Створити новий сніпет тут",
"admin_message_snippet_was_not_deleted": "Сніпет не був видалений",
"admin_message_snippet_was_not_renamed": "Сніпет не був перейменовано",
"admin_message_snippet_was_not_duplicated": "Сніпет не був продубльований",
"admin_message_snippet_was_not_saved": "Сніпет не було збережено",
"admin_create_new_template": "Створити новий шаблон",
"admin_message_template_created": "Шаблон створений",
"admin_message_template_deleted": "Шаблон видалено",
"admin_message_template_renamed": "Шаблон перейменовано",
"admin_message_template_duplicated": "Шаблон дублюється",
"admin_message_template_saved": "Шаблон збережено",
"admin_message_template_was_not_created": "Шаблон не перейменовано",
"admin_message_partial_was_not_created": "Шаблон не перейменовано",
"admin_message_partial_created": "Частково створено",
"admin_message_partial_deleted": "Частково видалено",
"admin_message_partial_was_not_deleted": "Partial не видалено",
"admin_message_snippet_saved": "Сніпет збережено",
"admin_message_snippet_created": "Сніпет створено",
"admin_message_snippet_was_not_created": "Сніпет не було створено",
"admin_message_snippet_deleted": "Сніпет видалено",
"admin_message_snippet_renamed": "Сніпет перейменовано",
"admin_message_snippet_duplicated": "Сніпет продубльовано",
"admin_message_fieldset_saved": "Набір полів збережено",
"admin_message_fieldset_created": "Набір полів створено",
"admin_message_fieldset_deleted": "Набір полів видалено",
"admin_message_fieldset_renamed": "Набір полів перейменовано",
"admin_message_fieldset_duplicated": "Набір полів продубльовано",
"admin_message_entry_duplicated": "Запис продубльовано",
"admin_message_entry_was_not_duplicated": "Запис не було продубльовано",
"admin_message_cache_files_deleted": "Файли кешу видалено",
"admin_message_entry_changes_saved": "Зміни зебережно успішно",
"admin_message_entry_changes_not_saved": "Зміни не збережено",
"admin_message_entry_cloned": "Запись клонована",
"admin_message_entry_created": "Запис створено",
"admin_message_entry_was_not_created": "Запис не було створено",
"admin_message_entry_deleted": "Запис видалено",
"admin_message_entry_was_not_renamed": "Запис не було перейменовано",
"admin_message_entry_was_not_deleted": "Запис не було видалено",
"admin_message_entry_file_deleted": "Файл успішно видалено",
"admin_message_entry_file_uploaded": "Файл успішно завантажено",
"admin_message_entry_file_not_uploaded": "Файл не був завантажений",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Налаштування збережено",
"admin_message_settings_was_not_saved": "Налаштування не збережено",
"admin_message_wrong_username_password": "Хибне ім'я або пароль",
"admin_quality": "Якість",
"admin_width": "Ширина",
"admin_height": "Висота",
"admin_accept_file_types": "Допустимі типи файлів",
"admin_embeded_code": "Код для вбудовування",
"admin_shortcode": "Короткий код",
"admin_php_code": "PHP код",
"admin_choose_files_to_upload": "Обрати файл",
"admin_browse_files": "Огляд",
"admin_copy": "Копіювати",
"admin_admin_panel": "Панель адміністратора",
"admin_light": "Світлий",
"admin_dark": "Темний",
"admin_name": "Ім’я",
"admin_memcached_server": "Сервер Memcached",
"admin_memcached_port": "Порт Memcached",
"admin_redis_socket": "Сокет Redis",
"admin_redis_password": "Пароль Redis",
"admin_redis_server": "Адреса Redis",
"admin_redis_port": "Порт Redis",
"admin_sqlite3_database": "База даних SQLite3",
"admin_sqlite3_table": "Таблиця SQLite3",
"admin_error_name_empty_input": "Ім'я повинно бути алфавітно-цифрове значення (від 1 символів)",
"admin_error_title_empty_input": "Заголовок має бути алфавітно-цифрове (від 1 символів)",
"admin_entries_visible": "Видимий",
"admin_entries_draft": "Чернетка",
"admin_entries_hidden": "Прихований",
"admin_menu_item_title": "Заголовок",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Ціль",
"admin_menu_item_order": "Замовлення",
"admin_template_code": "Код шаблону",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Редагувати",
"admin_tools": "Інструменти",
"admin_size": "Розмір",
"admin_clear": "Очистити",
"admin_clear_cache_all": "Очистити Все",
"admin_registry": "Реєстр",
"admin_key": "Ключ",
"admin_value": "Значення",
"admin_activate": "Активувати",
"admin_active_theme": "Активна тема",
"admin_get_more_themes": "Отримати більше тем",
"admin_images": "Зображення",
"admin_data": "Дані",
"admin_slugify": "Адре́са ресу́рсу (URL)",
"admin_entries_limit": "Обмеження запису",
"admin_slug": "Адре́са ресу́рсу (URL)",
"admin_slugify_separator": "Розділювач",
"admin_slugify_lowercase": "Нижній регістр",
"admin_slugify_trim": "Обрізати",
"admin_slugify_strip_tags": "Прибрати теги",
"admin_slugify_lowercase_after_regexp": "Переводити в нижній регістр",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Зображення галереї"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Admin",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Cancel",
"admin_create": "Create",
"admin_debugging": "Debugging",
"admin_email": "Email",
"admin_flextype_version": "Flextype Version",
"admin_information": "Information",
"admin_installed": "Installed",
"admin_keywords": "Keywords",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Login",
"admin_entries": "Entries",
"admin_extends": "Extends",
"admin_plugins": "Plugins",
"admin_themes": "Themes",
"admin_help": "Help",
"admin_getting_help": "Getting Help",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Logout",
"admin_profile": "Profile",
"admin_view_site": "View Site",
"admin_snippets": "Snippets",
"admin_not_installed": "Not Installed",
"admin_off": "Off",
"admin_on": "On",
"admin_add": "Add",
"admin_entry_attributes": "Entry Attributes",
"admin_fieldset_for_template": "Fieldset for template",
"admin_content": "Content",
"admin_create_new_entry": "Create New Entry",
"admin_date": "Date",
"admin_draft": "Draft",
"admin_edit": "Edit",
"admin_blocks": "Blocks",
"admin_media": "Media",
"admin_settings": "Settings",
"admin_templates": "Templates",
"admin_entry": "Entry",
"admin_fieldset": "Fieldset",
"admin_source": "Source",
"admin_upload": "Upload",
"admin_hidden": "Hidden",
"admin_image_preview": "Image preview",
"admin_move": "Move",
"admin_parent_entry": "Entry parent",
"admin_preview": "Preview",
"admin_publish": "Publish",
"admin_rename": "Rename",
"admin_save_entry": "Save entry",
"admin_template": "Template",
"admin_title": "Title",
"admin_url": "Url",
"admin_view": "View",
"admin_visibility": "Visibility",
"admin_visible": "Visible",
"admin_password": "Password",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP Version",
"admin_author_url": "Author url",
"admin_bugs": "Bugs",
"admin_description": "Description",
"admin_get_more_plugins": "Get More Plugins",
"admin_homepage": "Homepage",
"admin_info": "Info",
"admin_license": "License",
"admin_status": "Status",
"admin_disabled": "disabled",
"admin_enabled": "enabled",
"admin_version": "Version",
"admin_role": "Role",
"admin_save": "Save",
"admin_security_check_results": "Security check results",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "Clear cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "Author email",
"admin_author_name": "Author name",
"admin_site_description": "Site description",
"admin_site_keywords": "Site keywords",
"admin_site_robots": "Robots",
"admin_site_title": "Site title",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Locale",
"admin_entry_main": "Main entry",
"admin_theme": "Theme",
"admin_timezone": "Timezone",
"admin_username": "Username",
"admin_create_user": "Create User",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Delete Category",
"admin_create_new_item": "Create New Item",
"admin_delete": "Delete",
"admin_order": "Order",
"admin_edit_category": "Edit category",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Create New Template",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Duplicate",
"admin_summary": "Summary",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Partial",
"admin_clone": "Clone",
"admin_create_new_snippet": "Create New Snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Create New Template",
"admin_message_template_created": "Template created",
"admin_message_template_deleted": "Template deleted",
"admin_message_template_renamed": "Template renamed",
"admin_message_template_duplicated": "Template duplicated",
"admin_message_template_saved": "Template saved",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet saved",
"admin_message_snippet_created": "Snippet created",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet deleted",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Copy",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "管理员",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "取消",
"admin_create": "创建",
"admin_debugging": "调试",
"admin_email": "电子邮箱",
"admin_flextype_version": "Flextype 版本",
"admin_information": "概述",
"admin_installed": "已安装",
"admin_keywords": "关键词",
"admin_documentation": "文档",
"admin_memcache_server": "Memcache 服务器",
"admin_memcache_port": "Memcache 端口",
"admin_login": "登录",
"admin_entries": "项目",
"admin_extends": "扩展",
"admin_plugins": "插件",
"admin_themes": "主题",
"admin_help": "帮助",
"admin_getting_help": "获取帮助",
"admin_message_json_invalid": "无效的 JSON",
"admin_logout": "退出登录",
"admin_profile": "个人资料",
"admin_view_site": "查看网站",
"admin_snippets": "代码块",
"admin_not_installed": "未安装",
"admin_off": "Off",
"admin_on": "On",
"admin_add": "添加",
"admin_entry_attributes": "条目属性",
"admin_fieldset_for_template": "模板字段集",
"admin_content": "内容",
"admin_create_new_entry": "创建新条目",
"admin_date": "日期",
"admin_draft": "草稿",
"admin_edit": "编辑",
"admin_blocks": "块",
"admin_media": "媒体和附件",
"admin_settings": "设置",
"admin_templates": "模板",
"admin_entry": "Entry",
"admin_fieldset": "字段集",
"admin_source": "Source",
"admin_upload": "上传",
"admin_hidden": "隐藏",
"admin_image_preview": "图像预览",
"admin_move": "移动",
"admin_parent_entry": "Entry parent",
"admin_preview": "预览",
"admin_publish": "发布",
"admin_rename": "重命名",
"admin_save_entry": "保存项目",
"admin_template": "模板",
"admin_title": "标题",
"admin_url": "链接",
"admin_view": "查看",
"admin_visibility": "可见性",
"admin_visible": "Visible",
"admin_password": "密码",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP 版本",
"admin_author_url": "作者网址",
"admin_bugs": "Bugs",
"admin_description": "描述",
"admin_get_more_plugins": "获取更多插件",
"admin_homepage": "首页",
"admin_info": "Info",
"admin_license": "License",
"admin_status": "Status",
"admin_disabled": "disabled",
"admin_enabled": "enabled",
"admin_version": "Version",
"admin_role": "Role",
"admin_save": "Save",
"admin_security_check_results": "Security check results",
"admin_security_check_results_debug": "开启 DISPLAY ERRORS 可能给入侵者提供信息,为了网站的安全,我们强烈建议在生产系统中将 DISPLAY ERRORS 关闭.",
"admin_security_check_results_htaccess": "发现 Flextype .htaccess 文件权限为可写. 我们强烈建议您删除它的所有写权限. <br>你可以在 Unix 系统上执行: <code>chmod a-w :文件路径</code>",
"admin_security_check_results_index": "发现 Flextype index.php 文件权限为可写. 我们强烈建议您删除它的所有写权限. <br>你可以在 Unix 系统上执行: <code>chmod a-w :文件路径</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "清除缓存",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "错误 404 页",
"admin_cache": "缓存",
"admin_author_email": "作者邮箱",
"admin_author_name": "作者名",
"admin_site_description": "站点描述",
"admin_site_keywords": "网站关键字",
"admin_site_robots": "搜索引擎抓取规则Robots",
"admin_site_title": "网站标题",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Locale",
"admin_entry_main": "Main entry",
"admin_theme": "Theme",
"admin_timezone": "Timezone",
"admin_username": "Username",
"admin_create_user": "Create User",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Delete Category",
"admin_create_new_item": "Create New Item",
"admin_delete": "Delete",
"admin_order": "Order",
"admin_edit_category": "Edit category",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Create New Template",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Duplicate",
"admin_summary": "概览",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Partial",
"admin_clone": "Clone",
"admin_create_new_snippet": "Create New Snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Create New Template",
"admin_message_template_created": "Template created",
"admin_message_template_deleted": "Template deleted",
"admin_message_template_renamed": "Template renamed",
"admin_message_template_duplicated": "Template duplicated",
"admin_message_template_saved": "Template saved",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet saved",
"admin_message_snippet_created": "Snippet created",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet deleted",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Copy",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,247 +0,0 @@
{
"admin": "Admin",
"admin_welcome": "Welcome",
"admin_create_new_user_welcome": "To finish setup and secure your site, please create the first user by entering the necessary information below.",
"admin_cancel": "Cancel",
"admin_create": "Create",
"admin_debugging": "Debugging",
"admin_email": "Email",
"admin_flextype_version": "Flextype Version",
"admin_information": "Information",
"admin_installed": "Installed",
"admin_keywords": "Keywords",
"admin_documentation": "Documentation",
"admin_memcache_server": "Memcache Server",
"admin_memcache_port": "Memcache Port",
"admin_login": "Login",
"admin_entries": "Entries",
"admin_extends": "Extends",
"admin_plugins": "Plugins",
"admin_themes": "Themes",
"admin_help": "Help",
"admin_getting_help": "Getting Help",
"admin_message_json_invalid": "Invalid JSON",
"admin_logout": "Logout",
"admin_profile": "Profile",
"admin_view_site": "View Site",
"admin_snippets": "Snippets",
"admin_not_installed": "Not Installed",
"admin_off": "Off",
"admin_on": "On",
"admin_add": "Add",
"admin_entry_attributes": "Entry Attributes",
"admin_fieldset_for_template": "Fieldset for template",
"admin_content": "Content",
"admin_create_new_entry": "Create New Entry",
"admin_date": "Date",
"admin_draft": "Draft",
"admin_edit": "Edit",
"admin_blocks": "Blocks",
"admin_media": "Media",
"admin_settings": "Settings",
"admin_templates": "Templates",
"admin_entry": "Entry",
"admin_fieldset": "Fieldset",
"admin_source": "Source",
"admin_upload": "Upload",
"admin_hidden": "Hidden",
"admin_image_preview": "Image preview",
"admin_move": "Move",
"admin_parent_entry": "Entry parent",
"admin_preview": "Preview",
"admin_publish": "Publish",
"admin_rename": "Rename",
"admin_save_entry": "Save entry",
"admin_template": "Template",
"admin_title": "Title",
"admin_url": "Url",
"admin_view": "View",
"admin_visibility": "Visibility",
"admin_visible": "Visible",
"admin_password": "Password",
"admin_php_built_on": "PHP Built On",
"admin_php_version": "PHP Version",
"admin_author_url": "Author url",
"admin_bugs": "Bugs",
"admin_description": "Description",
"admin_get_more_plugins": "Get More Plugins",
"admin_homepage": "Homepage",
"admin_info": "Info",
"admin_license": "License",
"admin_status": "Status",
"admin_disabled": "disabled",
"admin_enabled": "enabled",
"admin_version": "Version",
"admin_role": "Role",
"admin_save": "Save",
"admin_security_check_results": "Security check results",
"admin_security_check_results_debug": "Due to the type and amount of information an error might give intruders when DISPLAY ERRORS TRUE, we strongly advise setting DISPLAY ERRORS FALSE in production systems.",
"admin_security_check_results_htaccess": "The Flextype .htaccess file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_security_check_results_index": "The Flextype index.php file has been found to be writable. We would advise you to remove all write permissions. <br>You can do this on unix systems with: <code>chmod a-w :path</code>",
"admin_server": "Server",
"admin_site": "Site",
"admin_clear_cache": "Clear cache",
"admin_error404_title": "Error404 entry title",
"admin_error404_description": "Error404 entry description",
"admin_error404_content": "Error404 entry content",
"admin_error404_template": "Error404 entry template",
"admin_heading": "Settings",
"admin_general": "General",
"admin_error_404_page": "Error 404 page",
"admin_cache": "Cache",
"admin_author_email": "Author email",
"admin_author_name": "Author name",
"admin_site_description": "Site description",
"admin_site_keywords": "Site keywords",
"admin_site_robots": "Robots",
"admin_site_title": "Site title",
"admin_system": "System",
"admin_cache_driver": "Cache driver",
"admin_cache_enabled": "Cache enabled",
"admin_cache_lifetime": "Cache lifetime",
"admin_cache_prefix": "Cache prefix",
"admin_charset": "Charset",
"admin_date_format": "Date format",
"admin_errors_display": "Display errors",
"admin_locale": "Locale",
"admin_entry_main": "Main entry",
"admin_theme": "Theme",
"admin_timezone": "Timezone",
"admin_username": "Username",
"admin_create_user": "Create User",
"admin_create_new_user": "Create New User",
"admin_web_server": "Web Server",
"admin_web_server_php_interface": "WebServer to PHP Interface",
"admin_create_new_category": "Create New Category",
"admin_delete_category": "Delete Category",
"admin_create_new_item": "Create New Item",
"admin_delete": "Delete",
"admin_order": "Order",
"admin_edit_category": "Edit category",
"admin_fieldsets": "Fieldsets",
"admin_template_create_new": "Create New Template",
"admin_create_new_fieldset": "Create New Fieldset",
"admin_duplicate": "Duplicate",
"admin_summary": "Summary",
"admin_snippet": "Snippet",
"admin_type": "Type",
"admin_partial": "Partial",
"admin_clone": "Clone",
"admin_create_new_snippet": "Create New Snippet",
"admin_message_snippet_was_not_deleted": "Snippet was not deleted",
"admin_message_snippet_was_not_renamed": "Snippet was not renamed",
"admin_message_snippet_was_not_duplicated": "Snippet was not duplicated",
"admin_message_snippet_was_not_saved": "Snippet was not saved",
"admin_create_new_template": "Create New Template",
"admin_message_template_created": "Template created",
"admin_message_template_deleted": "Template deleted",
"admin_message_template_renamed": "Template renamed",
"admin_message_template_duplicated": "Template duplicated",
"admin_message_template_saved": "Template saved",
"admin_message_template_was_not_created": "Template was not renamed",
"admin_message_partial_was_not_created": "Partial was not renamed",
"admin_message_partial_created": "Partial created",
"admin_message_partial_deleted": "Partial deleted",
"admin_message_partial_was_not_deleted": "Partial was not deleted",
"admin_message_snippet_saved": "Snippet saved",
"admin_message_snippet_created": "Snippet created",
"admin_message_snippet_was_not_created": "Snippet was not created",
"admin_message_snippet_deleted": "Snippet deleted",
"admin_message_snippet_renamed": "Snippet renamed",
"admin_message_snippet_duplicated": "Snippet duplicated",
"admin_message_fieldset_saved": "Fieldset saved",
"admin_message_fieldset_created": "Fieldset created",
"admin_message_fieldset_deleted": "Fieldset deleted",
"admin_message_fieldset_renamed": "Fieldset renamed",
"admin_message_fieldset_duplicated": "Fieldset duplicated",
"admin_message_entry_duplicated": "Entry duplicated",
"admin_message_entry_was_not_duplicated": "Entry was not duplicated",
"admin_message_cache_files_deleted": "Cache files deleted",
"admin_message_entry_changes_saved": "Changes successfully saved",
"admin_message_entry_changes_not_saved": "Changes not saved",
"admin_message_entry_cloned": "Entry cloned",
"admin_message_entry_created": "Entry created",
"admin_message_entry_was_not_created": "Entry was not created",
"admin_message_entry_deleted": "Entry deleted",
"admin_message_entry_was_not_renamed": "Entry was not renamed",
"admin_message_entry_was_not_deleted": "Entry was not deleted",
"admin_message_entry_file_deleted": "File successfully deleted",
"admin_message_entry_file_uploaded": "File successfully uploaded",
"admin_message_entry_file_not_uploaded": "File was not uploaded",
"admin_message_entry_moved": "Entry moved",
"admin_message_entry_was_not_moved": "Entry was not moved",
"admin_message_entry_renamed": "Entry renamed",
"admin_message_settings_saved": "Settings saved",
"admin_message_settings_was_not_saved": "Settings was not saved",
"admin_message_wrong_username_password": "Wrong username or password",
"admin_quality": "Quality",
"admin_width": "Width",
"admin_height": "Height",
"admin_accept_file_types": "Accept file types",
"admin_embeded_code": "Embeded Code",
"admin_shortcode": "Shortcode",
"admin_php_code": "PHP Code",
"admin_choose_files_to_upload": "Choose file",
"admin_browse_files": "Browse",
"admin_copy": "Copy",
"admin_admin_panel": "Admin Panel",
"admin_light": "Light",
"admin_dark": "Dark",
"admin_name": "Name",
"admin_memcached_server": "Memcached Server",
"admin_memcached_port": "Memcached Port",
"admin_redis_socket": "Redis Socket",
"admin_redis_password": "Redis Password",
"admin_redis_server": "Redis Server",
"admin_redis_port": "Redis Port",
"admin_sqlite3_database": "SQLite3 Database",
"admin_sqlite3_table": "SQLite3 Table",
"admin_error_name_empty_input": "Name has to be an alphanumeric value (from 1 chars)",
"admin_error_title_empty_input": "Title has to be an alphanumeric value (from 1 chars)",
"admin_entries_visible": "Visible",
"admin_entries_draft": "Draft",
"admin_entries_hidden": "Hidden",
"admin_menu_item_title": "Title",
"admin_menu_item_url": "Url",
"admin_menu_item_target": "Target",
"admin_menu_item_order": "Order",
"admin_template_code": "Template code",
"admin_you_have_not_created_any_entries_yet": "You haven't created any entries yet!",
"admin_you_have_not_created_any_snippets_yet": "You haven't created any snippets yet!",
"admin_you_have_not_created_any_templates_yet": "You haven't created any templates yet!",
"admin_you_have_not_created_any_fieldsets_yet": "You haven't created any fieldsets yet!",
"admin_twig_auto_reload": "Twig auto reload",
"admin_display_error_details": "Display error details",
"admin_add_content_length_header": "Add content length header",
"admin_router_cache_file": "Route cache file",
"admin_determine_route_before_app_middleware": "Determine route before app middleware",
"admin_output_buffering": "Output buffering",
"admin_response_chunk_size": "Response chunk size",
"admin_http_version": "HTTP Version",
"admin_image_driver": "Image driver",
"admin_whoops_editor": "Whoops editor",
"admin_whoops_page_title": "Whoops page title",
"admin_editor": "Editor",
"admin_tools": "Tools",
"admin_size": "Size",
"admin_clear": "Clear",
"admin_clear_cache_all": "Clear All",
"admin_registry": "Registry",
"admin_key": "Key",
"admin_value": "Value",
"admin_activate": "Activate",
"admin_active_theme": "Active Theme",
"admin_get_more_themes": "Get More Themes",
"admin_images": "Images",
"admin_data": "Data",
"admin_slugify": "Slug",
"admin_entries_limit": "Entries limit",
"admin_slug": "Slug",
"admin_slugify_separator": "Separator",
"admin_slugify_lowercase": "Lowercase",
"admin_slugify_trim": "Trim",
"admin_slugify_strip_tags": "Strip tags",
"admin_slugify_lowercase_after_regexp": "Lowercase after regexp",
"admin_slugify_regexp": "Regexp",
"admin_gallery_img": "Gallery Image"
}

View File

@@ -1,13 +0,0 @@
{
"name": "Admin",
"version": "0.0.0",
"description": "Admin plugin for Flextype",
"author": {
"name": "Sergey Romanenko",
"email": "hello@romanenko.digital",
"url": "http://flextype.org"
},
"homepage": "https://github.com/flextype-plugins/admin",
"bugs": "https://github.com/flextype-plugins/admin/issues",
"license": "MIT"
}

10
site/plugins/admin/plugin.yaml Executable file
View File

@@ -0,0 +1,10 @@
name: Admin
version: 0.0.0
description: Admin plugin for Flextype
author:
name: Sergey Romanenko
email: hello@romanenko.digital
url: http://flextype.org
homepage: https://github.com/flextype-plugins/admin
bugs: https://github.com/flextype-plugins/admin/issues
license: MIT

View File

@@ -1,4 +0,0 @@
{
"enabled": true,
"route": "admin"
}

View File

@@ -0,0 +1,2 @@
enabled: true
route: admin

View File

@@ -18,9 +18,9 @@
{% set _entries = entries.fetchAll(entry.slug, {'order_by': {field: 'slug', direction: 'asc'}}) %}
<a href="{% if _entries|length > 0 %}{{ path_for('admin.entries.index') }}?id={{ entry.slug }}{% else %}{{ path_for('admin.entries.edit') }}?id={{ entry.slug }}&type=editor{% endif %}">
{% if entry.fieldset %}
{% set fieldset_path = PATH_FIELDSETS ~ '/' ~ entry.fieldset ~ '.json' %}
{% set fieldset_path = PATH_FIELDSETS ~ '/' ~ entry.fieldset ~ '.yaml' %}
{% if filesystem_has(fieldset_path) %}
{% set fieldset = json_decode(filesystem_read(fieldset_path)) %}
{% set fieldset = yaml_decode(filesystem_read(fieldset_path)) %}
{% if fieldset.default_field %}
{% if entry[fieldset.default_field] != '' %}
{{ entry[fieldset.default_field] }}