mirror of
https://github.com/monstra-cms/monstra.git
synced 2025-08-04 12:17:42 +02:00
Compare commits
99 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
4dd2361e5f | ||
|
7e30f636b6 | ||
|
d768db494e | ||
|
685722cc8e | ||
|
db7792e538 | ||
|
ec8bdf04bf | ||
|
26d68cc593 | ||
|
9c148e44d1 | ||
|
eb17b827d7 | ||
|
fab79a357d | ||
|
099fe32d88 | ||
|
6cc44a146e | ||
|
81b65c761b | ||
|
bc36876eac | ||
|
4908967f67 | ||
|
46378701aa | ||
|
543f42ec1e | ||
|
eec5c01382 | ||
|
be4816a892 | ||
|
154d98b167 | ||
|
b6b0b43970 | ||
|
fd02accbd4 | ||
|
d1c096600a | ||
|
abd6bc6840 | ||
|
b18e724718 | ||
|
4081393325 | ||
|
a6cdab21a3 | ||
|
c9f0ec112f | ||
|
75ddf1292d | ||
|
f3d4ed57cf | ||
|
2e2a1480a2 | ||
|
73bd190942 | ||
|
4ffadb84d3 | ||
|
5ed420208a | ||
|
1b980e4bde | ||
|
c899720f14 | ||
|
8edd205dec | ||
|
e303f9f6aa | ||
|
1de85168f0 | ||
|
fc721f55cb | ||
|
4a3a38bed3 | ||
|
5d7b28f801 | ||
|
fdcb24a3f3 | ||
|
b2a509bc7a | ||
|
13f55afdee | ||
|
7389d1f1c3 | ||
|
13eea5b730 | ||
|
6fce509e81 | ||
|
b0e2e32c71 | ||
|
87b1cb2f96 | ||
|
28210a93db | ||
|
52ac023813 | ||
|
5630bed2ef | ||
|
13577c21b8 | ||
|
c67454940d | ||
|
f646cf11a5 | ||
|
2a18939513 | ||
|
b7f7b10403 | ||
|
51ee940202 | ||
|
48765f9ff2 | ||
|
f1230d43d2 | ||
|
4ebf5ce2eb | ||
|
30a78d2f67 | ||
|
fb90f35cf3 | ||
|
59c214ec55 | ||
|
f777989af7 | ||
|
09371c02f5 | ||
|
872cdc1a25 | ||
|
ef10651f74 | ||
|
fceebb4a1d | ||
|
d68cd28279 | ||
|
dd8905982a | ||
|
acd03a3ead | ||
|
89ee4506e6 | ||
|
01ea53730e | ||
|
bb14b17a41 | ||
|
54b8bc5e36 | ||
|
4b24e337d4 | ||
|
eb6e6aa6be | ||
|
c0619cd13d | ||
|
50b678081e | ||
|
b526ee2d4d | ||
|
613593d7bd | ||
|
46fabc0dee | ||
|
343cefd114 | ||
|
51c1582e36 | ||
|
e0755de9b2 | ||
|
3c5e54fea0 | ||
|
dec8c18b1b | ||
|
fba8dce45e | ||
|
3994d1e2a7 | ||
|
c87ea5029c | ||
|
0eadda37b3 | ||
|
3117d5e448 | ||
|
e635422730 | ||
|
24c6d342c6 | ||
|
797d9e0f18 | ||
|
e5241f6a5f | ||
|
5b41adfd28 |
51
.htaccess
51
.htaccess
@@ -1,13 +1,15 @@
|
||||
#
|
||||
# Monstra :: php & apache settings
|
||||
# This file is part of the Monstra.
|
||||
#
|
||||
# (c) Romanenko Sergey / Awilum <awilum@msn.com>
|
||||
#
|
||||
# For the full copyright and license information, please view the LICENSE
|
||||
# file that was distributed with this source code.
|
||||
#
|
||||
|
||||
# Set default charset utf-8
|
||||
AddDefaultCharset UTF-8
|
||||
|
||||
# Don't show directory listings for URLs which map to a directory.
|
||||
Options -Indexes
|
||||
|
||||
# PHP 5, Apache 1 and 2.
|
||||
<IfModule mod_php5.c>
|
||||
php_flag magic_quotes_gpc off
|
||||
@@ -15,20 +17,47 @@ Options -Indexes
|
||||
php_flag register_globals off
|
||||
</IfModule>
|
||||
|
||||
|
||||
# Setting rewrite rules.
|
||||
<IfModule mod_rewrite.c>
|
||||
RewriteEngine on
|
||||
|
||||
# Update code bellow for SEO improvements
|
||||
# RewriteCond %{HTTP_HOST} ^www.example.org [NC]
|
||||
# RewriteRule ^(.*)$ http://example.org/$1 [R=301,L]
|
||||
## Begin - Rewrite rules to block out some common exploits.
|
||||
# If you experience problems on your site block out the operations listed below
|
||||
# This attempts to block the most common type of exploit `attempts` to Monstra
|
||||
#
|
||||
# Block out any script trying to base64_encode data within the URL.
|
||||
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
|
||||
# Block out any script that includes a <script> tag in URL.
|
||||
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
|
||||
# Block out any script trying to set a PHP GLOBALS variable via URL.
|
||||
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
|
||||
# Block out any script trying to modify a _REQUEST variable via URL.
|
||||
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
|
||||
# Return 403 Forbidden header and show the content of the root homepage
|
||||
RewriteRule .* index.php [F]
|
||||
#
|
||||
## End - Rewrite rules to block out some common exploits.
|
||||
|
||||
## Begin - Rewrite rules for Monstra
|
||||
RewriteBase /%siteurlhere%/
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteRule ^(.*)$ index.php [QSA,L]
|
||||
## End - Rewrite rules for Monstra
|
||||
|
||||
## Begin - Rewrite rules for SEO improvements.
|
||||
# RewriteCond %{HTTP_HOST} ^www.example.org [NC]
|
||||
# RewriteRule ^(.*)$ http://example.org/$1 [R=301,L]
|
||||
# Redirect 301 /index http://example.org/
|
||||
## End - Rewrite rules for SEO improvements.
|
||||
|
||||
# Update code bellow for SEO improvements
|
||||
# Redirect 301 /home http://example.org/
|
||||
</IfModule>
|
||||
|
||||
# Prevent visitors from viewing files directly.
|
||||
<FilesMatch "(^#.*#|\.(md|txt|html|tpl|yml|yaml)|~)$">
|
||||
Order allow,deny
|
||||
Deny from all
|
||||
Satisfy All
|
||||
</FilesMatch>
|
||||
|
||||
# Don't show directory listings for URLs which map to a directory.
|
||||
Options -Indexes
|
||||
|
10
CHANGELOG.md
10
CHANGELOG.md
@@ -1,3 +1,11 @@
|
||||
Monstra 3.0.3, 2016-01-29
|
||||
------------------------
|
||||
- Improved Monstra Security
|
||||
- Minimum PHP version for Monstra is 5.3.2
|
||||
- Admin: Fixed 404 error when using certain server configurations
|
||||
- Localization: Major Fixes for SR, KA-GE, and ES
|
||||
- Install Script Fixes
|
||||
|
||||
Monstra 3.0.2, 2015-10-16
|
||||
------------------------
|
||||
- Added Monstra MIT LICENSE instead of GNU GENERAL PUBLIC LICENSE v3
|
||||
@@ -141,7 +149,7 @@ Monstra 2.1.3, 2012-12-09
|
||||
- Pages Plugin: add ability to get content for specific page.
|
||||
- XMLDB: New method factory() added.
|
||||
- Twitter Bootstrap updated to Version 2.2.2
|
||||
- Sitemap Plugin: _blank removed.
|
||||
- Sitemap Plugin: `_blank` removed.
|
||||
- Filesmanager Plugin: fixes.
|
||||
- Backup Plugin: fixes.
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2012 - 2015 Monstra Content Management
|
||||
Copyright (c) 2012 - 2016 Monstra Content Management
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
@@ -5,7 +5,7 @@ Monstra is a modern and lightweight Content Management System.
|
||||
|
||||
## System Requirements
|
||||
Operation system: Unix, Linux, Windows, Mac OS
|
||||
Middleware: PHP 5.3.0 or higher with PHP's [SimpleXML module](http://php.net/simplexml) and [Multibyte String module](http://php.net/mbstring)
|
||||
Middleware: PHP 5.3.2 or higher with PHP's [SimpleXML module](http://php.net/simplexml) and [Multibyte String module](http://php.net/mbstring)
|
||||
Webserver: Apache with [Mod Rewrite](http://httpd.apache.org/docs/current/mod/mod_rewrite.html) or Ngnix with [Rewrite Module](http://wiki.nginx.org/HttpRewriteModule)
|
||||
|
||||
## Steps to Install
|
||||
|
@@ -156,7 +156,7 @@ if ($is_admin) {
|
||||
if (Request::get('id')) {
|
||||
$area = Request::get('id');
|
||||
} else {
|
||||
Request::redirect('index.php?id=dashboard');
|
||||
Request::redirect(Site::url().'/admin/index.php?id=dashboard');
|
||||
}
|
||||
|
||||
$plugins_registered = Plugin::$plugins;
|
||||
|
@@ -14,11 +14,11 @@
|
||||
@font-face {
|
||||
font-family: 'Glyphicons Halflings';
|
||||
|
||||
src: url('@site_url/public/assets/fonts/glyphicons-halflings-regular.eot');
|
||||
src: url('@site_url/public/assets/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),
|
||||
url('@site_url/public/assets/fonts/glyphicons-halflings-regular.woff') format('woff'),
|
||||
url('@site_url/public/assets/fonts/glyphicons-halflings-regular.ttf') format('truetype'),
|
||||
url('@site_url/public/assets/fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg');
|
||||
src: url('@site_url/public/assets/fonts/glyphicons-halflings-regular.eot');
|
||||
}
|
||||
|
||||
body {
|
||||
@@ -88,6 +88,10 @@ footer span {
|
||||
border-top: 1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
footer .highlight {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
/*************************************
|
||||
2. COMPONENTS
|
||||
*************************************/
|
||||
|
@@ -2,12 +2,12 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
|
||||
|
||||
<meta http-equiv="x-dns-prefetch-control" content="on">
|
||||
<link rel="dns-prefetch" href="<?php echo Site::url(); ?>" />
|
||||
<link rel="dns-prefetch" href="//www.google-analytics.com" />
|
||||
<link rel="dns-prefetch" href="//www.gravatar.com" />
|
||||
|
||||
|
||||
<title>Monstra :: <?php echo __('Administration', 'system'); ?></title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="Monstra Admin Area" />
|
||||
@@ -27,8 +27,8 @@
|
||||
<!-- JavaScripts -->
|
||||
<script src="<?php echo Site::url(); ?>/public/assets/js/jquery.min.js"></script>
|
||||
<script src="<?php echo Site::url(); ?>/public/assets/js/bootstrap.min.js"></script>
|
||||
<script src="<?php echo Site::url(); ?>/public/assets/js/messenger.min.js"></script>
|
||||
<script src="<?php echo Site::url(); ?>/public/assets/js/icheck.min.js"></script>
|
||||
<script src="<?php echo Site::url(); ?>/public/assets/js/messenger.min.js"></script>
|
||||
<script src="<?php echo Site::url(); ?>/public/assets/js/icheck.min.js"></script>
|
||||
<?php Javascript::add('public/assets/js/jquery.chocolat.js', 'backend', 3); ?>
|
||||
<?php Javascript::add('public/assets/js/bootstrap-fileupload.js', 'backend', 4); ?>
|
||||
<?php Javascript::add('admin/themes/default/js/default.js', 'backend', 5); ?>
|
||||
@@ -41,9 +41,9 @@
|
||||
|
||||
$('.chocolat').Chocolat({
|
||||
overlayColor : '#000',
|
||||
leftImg : "<?php echo Option::get('siteurl'); ?>/public/assets/img/chocolat/left.gif",
|
||||
rightImg : "<?php echo Option::get('siteurl'); ?>/public/assets/img/chocolat/right.gif",
|
||||
closeImg : "<?php echo Option::get('siteurl'); ?>/public/assets/img/chocolat/close.gif",
|
||||
leftImg : "<?php echo Option::get('siteurl'); ?>/public/assets/img/chocolat/left.gif",
|
||||
rightImg : "<?php echo Option::get('siteurl'); ?>/public/assets/img/chocolat/right.gif",
|
||||
closeImg : "<?php echo Option::get('siteurl'); ?>/public/assets/img/chocolat/close.gif",
|
||||
loadingImg : "<?php echo Option::get('siteurl'); ?>/public/assets/img/chocolat/loading.gif"
|
||||
});
|
||||
|
||||
@@ -53,7 +53,7 @@
|
||||
increaseArea: '20%'
|
||||
});
|
||||
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
@@ -65,7 +65,7 @@
|
||||
|
||||
<body class="page-<?php echo Request::get('id'); ?>">
|
||||
|
||||
<nav class="navbar navbar-default navbar-inverse" role="navigation">
|
||||
<nav class="navbar navbar-default navbar-inverse" role="navigation">
|
||||
<div class="container">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
|
||||
@@ -77,33 +77,33 @@
|
||||
<a class="navbar-brand" href="<?php echo Site::url(); ?>/admin/index.php?id=dashboard">MONSTRA</a>
|
||||
</div>
|
||||
|
||||
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
||||
<ul class="nav navbar-nav">
|
||||
<li<?php if (Request::get('id') == 'dashboard') { ?> class="active"<?php } ?>><a href="<?php echo Site::url(); ?>/admin/index.php?id=dashboard"><?php echo __('Dashboard', 'dashboard'); ?></a></li>
|
||||
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
||||
<ul class="nav navbar-nav">
|
||||
<li<?php if (Request::get('id') == 'dashboard') { ?> class="active"<?php } ?>><a href="<?php echo Site::url(); ?>/admin/index.php?id=dashboard"><?php echo __('Dashboard', 'dashboard'); ?></a></li>
|
||||
<li class="dropdown">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><?php echo __('Content', 'pages'); ?> <b class="caret"></b></a>
|
||||
<ul class="dropdown-menu">
|
||||
<?php Navigation::draw('content'); ?>
|
||||
</ul>
|
||||
</li>
|
||||
<?php if (Session::exists('user_role') && in_array(Session::get('user_role'), array('admin'))) { ?>
|
||||
<?php if (Session::exists('user_role') && in_array(Session::get('user_role'), array('admin'))) { ?>
|
||||
<li class="dropdown">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><?php echo __('Extends', 'system'); ?> <b class="caret"></b></a>
|
||||
<ul class="dropdown-menu">
|
||||
<?php Navigation::draw('extends'); ?>
|
||||
<?php Navigation::draw('extends'); ?>
|
||||
</ul>
|
||||
</li>
|
||||
<?php } ?>
|
||||
<li class="dropdown">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><?php echo __('System', 'system'); ?> <b class="caret"></b></a>
|
||||
<ul class="dropdown-menu">
|
||||
<?php Navigation::draw('system'); ?>
|
||||
<?php Navigation::draw('system'); ?>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="dropdown">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><?php echo __('Help', 'system'); ?> <b class="caret"></b></a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="http://monstra.org/documentation" target="_blank"><?php echo __('Documentation', 'system'); ?></a></li>
|
||||
<li><a href="http://monstra.org/documentation" target="_blank"><?php echo __('Documentation', 'system'); ?></a></li>
|
||||
<?php if (Option::get('language') == 'ru') { ?>
|
||||
<li><a href="http://ru.forum.monstra.org" target="_blank"><?php echo __('Official Support Forum', 'system'); ?></a></li>
|
||||
<?php } else { ?>
|
||||
@@ -111,23 +111,23 @@
|
||||
<?php } ?>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</ul>
|
||||
<ul class="nav navbar-nav navbar-right">
|
||||
<li><a href="<?php echo Site::url(); ?>" target="_blank"><?php echo __('View Site', 'system'); ?></a></li>
|
||||
<li class="dropdown">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><?php echo Session::get('user_login'); ?> <img src="<?php echo Users::getGravatarURL(Session::get('user_email'), 28); ?>" alt=""> <b class="caret"></b></a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="<?php echo Site::url(); ?>/admin/index.php?id=users&action=edit&user_id=<?php echo Session::get('user_id'); ?>"><?php echo __('Profile', 'users')?></a></li>
|
||||
<li><a href="<?php echo Site::url(); ?>/admin/?logout=do"><?php echo __('Log Out', 'users'); ?></a></li>
|
||||
<li><a href="<?php echo Site::url(); ?>/admin/?logout=do"><?php echo __('Log Out', 'users'); ?></a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="container">
|
||||
|
||||
|
||||
<?php
|
||||
// Monstra Notifications
|
||||
Notification::get('success') AND Alert::success(Notification::get('success'));
|
||||
@@ -156,13 +156,7 @@
|
||||
<footer class="container visible-md visible-lg">
|
||||
<p class="pull-right">
|
||||
<span>
|
||||
<?php if (Option::get('language') == 'ru') { ?>
|
||||
<a href="http://ru.forum.monstra.org" target="_blank"><?php echo __('Official Support Forum', 'system'); ?></a> /
|
||||
<?php } else { ?>
|
||||
<a href="http://forum.monstra.org" target="_blank"><?php echo __('Official Support Forum', 'system'); ?></a> /
|
||||
<?php } ?>
|
||||
<a href="http://monstra.org/documentation" target="_blank"><?php echo __('Documentation', 'system'); ?></a> /
|
||||
© 2012 - 2014 <a href="http://monstra.org" target="_blank">Monstra</a> – <?php echo __('Version', 'system'); ?> <?php echo Monstra::VERSION; ?>
|
||||
<a href="http://monstra.org" target="_blank">Monstra</a> was made by <a href="http://awilum.github.io" target="_blank" class="highlight">Sergey Romanenko</a> and is maintained by <a href="https://github.com/monstra-cms/monstra/network/members" target="_blank" class="highlight">Monstra Community</a> / © 2012 - 2016 <a href="http://monstra.org/about/license" target="_blank">Monstra</a> – <?php echo __('Version', 'system'); ?> <?php echo Monstra::VERSION; ?>
|
||||
</span>
|
||||
</p>
|
||||
</footer>
|
||||
|
@@ -21,7 +21,7 @@
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
|
||||
<script src="<?php echo Site::url(); ?>/public/assets/js/bootstrap.min.js"></script>
|
||||
<script src="<?php echo Site::url(); ?>/public/assets/js/messenger.min.js"></script>
|
||||
<script src="<?php echo Site::url(); ?>/public/assets/js/messenger-theme-flat.js"></script>
|
||||
<script src="<?php echo Site::url(); ?>/public/assets/js/messenger-theme-flat.js"></script>
|
||||
<?php Javascript::add('public/assets/js/bootstrap-lightbox.js', 'backend', 3); ?>
|
||||
<?php Javascript::add('public/assets/js/bootstrap-fileupload.js', 'backend', 4); ?>
|
||||
<?php Javascript::add('admin/themes/default/js/default.js', 'backend', 5); ?>
|
||||
@@ -92,7 +92,7 @@
|
||||
<form method="post">
|
||||
<div class="form-group">
|
||||
<label><?php echo __('Username', 'users'); ?></label>
|
||||
<input name="login" class="form-control" type="text" value="<?php echo $user_login; ?>" />
|
||||
<input name="login" class="form-control" type="text" value="<?php echo $user_login; ?>" />
|
||||
</div>
|
||||
<?php if (Option::get('captcha_installed') == 'true') { ?>
|
||||
<div class="form-group">
|
||||
@@ -128,11 +128,8 @@
|
||||
</div>
|
||||
|
||||
<div class="text-center">
|
||||
<span>© 2012 - 2014 <a href="http://monstra.org" class="small-grey-text" target="_blank">Monstra</a> – <?php echo __('Version', 'system'); ?> <?php echo Monstra::VERSION; ?></span>
|
||||
© 2012 - 2016 <a href="http://monstra.org/about/license" target="_blank">Monstra</a> – <?php echo __('Version', 'system'); ?> <?php echo Monstra::VERSION; ?>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
@@ -31,7 +31,7 @@ class Monstra
|
||||
/**
|
||||
* The version of Monstra
|
||||
*/
|
||||
const VERSION = '3.0.2';
|
||||
const VERSION = '3.0.3';
|
||||
|
||||
|
||||
/**
|
||||
|
@@ -33,6 +33,7 @@ class I18n
|
||||
'fi' => 'Suomi',
|
||||
'fr' => 'Français',
|
||||
'gl' => 'Galego',
|
||||
'ka-ge' => 'Georgian',
|
||||
'hu' => 'Magyar',
|
||||
'it' => 'Italiano',
|
||||
'id' => 'Bahasa Indonesia',
|
||||
|
@@ -1,10 +1,10 @@
|
||||
<?php defined('MONSTRA_ACCESS') or die('No direct script access.');
|
||||
|
||||
/**
|
||||
* Monstra requires PHP 5.3.0 or greater
|
||||
* Monstra requires PHP 5.3.2 or greater
|
||||
*/
|
||||
if (version_compare(PHP_VERSION, "5.3.0", "<")) {
|
||||
exit("Monstra requires PHP 5.3.0 or greater.");
|
||||
if (version_compare(PHP_VERSION, "5.3.2", "<")) {
|
||||
exit("Monstra requires PHP 5.3.2 or greater.");
|
||||
}
|
||||
|
||||
/**
|
||||
|
8
install.php
Normal file → Executable file
8
install.php
Normal file → Executable file
@@ -277,7 +277,7 @@
|
||||
|
||||
|
||||
<?php
|
||||
if (version_compare(PHP_VERSION, "5.2.3", "<")) {
|
||||
if (version_compare(PHP_VERSION, "5.3.2", "<")) {
|
||||
$errors['php'] = 'error';
|
||||
} else {
|
||||
$errors['php'] = '';
|
||||
@@ -524,8 +524,8 @@
|
||||
<ul class="list-unstyled">
|
||||
<?php
|
||||
|
||||
if (version_compare(PHP_VERSION, "5.2.0", "<")) {
|
||||
echo '<li class="error alert alert-danger">'.__('PHP 5.2 or greater is required', 'system').'</li>';
|
||||
if (version_compare(PHP_VERSION, "5.3.2", "<")) {
|
||||
echo '<li class="error alert alert-danger">'.__('PHP 5.3.2 or greater is required', 'system').'</li>';
|
||||
} else {
|
||||
echo '<li class="ok alert alert-success">'.__('PHP Version', 'system').' '.PHP_VERSION.'</li>';
|
||||
}
|
||||
@@ -603,7 +603,7 @@
|
||||
|
||||
<div class="install-block-footer login-footer">
|
||||
<div class="text-center">
|
||||
<span>© 2012 - 2015 <a href="http://monstra.org" class="small-grey-text" target="_blank">Monstra</a> – <?php echo __('Version', 'system'); ?> <?php echo Monstra::VERSION; ?></span>
|
||||
<span>© 2012 - 2016 <a href="http://monstra.org" class="small-grey-text" target="_blank">Monstra</a> – <?php echo __('Version', 'system'); ?> <?php echo Monstra::VERSION; ?></span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@@ -2,25 +2,25 @@
|
||||
|
||||
return array(
|
||||
'backup' => array(
|
||||
'Backups' => 'Backups',
|
||||
'Backup' => 'Backup',
|
||||
'Backup Date' => 'Fecha del Backup',
|
||||
'Create Backup' => 'Crear Backup',
|
||||
'Restore' => 'Restaurar',
|
||||
'Delete' => 'Eliminar',
|
||||
'storage' => 'Almacen',
|
||||
'Backups' => 'Backups',
|
||||
'Backup' => 'Backup',
|
||||
'Backup Date' => 'Fecha del backup',
|
||||
'Create Backup' => 'Crear backup',
|
||||
'Restore' => 'Restaurar',
|
||||
'Delete' => 'Eliminar',
|
||||
'storage' => 'Almacenamiento',
|
||||
'public' => 'público',
|
||||
'plugins' => 'plugins',
|
||||
'Size' => 'Tamaño',
|
||||
'Actions' => 'Acciones',
|
||||
'Delete backup: :backup' => 'Eliminar Backup: :backup',
|
||||
'Delete backup: :backup' => 'Eliminar backup: :backup',
|
||||
'Creating...' => 'Creando...',
|
||||
'Backup was created' => 'El Backup fue creado',
|
||||
'Backup was not created' => 'El Backup no fue creado',
|
||||
'Backup was deleted' => 'El Backup fue eliminado',
|
||||
'Backup was not deleted' => 'El Backup no fue eliminado',
|
||||
'Backup was restored' => 'El Backup fue restaurado',
|
||||
'Backup was created' => 'El backup fue creado',
|
||||
'Backup was not created' => 'El backup no fue creado',
|
||||
'Backup was deleted' => 'El backup fue eliminado',
|
||||
'Backup was not deleted' => 'El backup no fue eliminado',
|
||||
'Backup was restored' => 'El backup fue restaurado',
|
||||
'Unzip error' => 'Error de descompresión',
|
||||
'Backup was not restored' => 'El Backup no fue restaurado',
|
||||
'Backup was not restored' => 'El backup no fue restaurado',
|
||||
)
|
||||
);
|
||||
|
@@ -3,15 +3,15 @@
|
||||
return array(
|
||||
'blocks' => array(
|
||||
'Blocks' => 'Bloques',
|
||||
'Blocks manager' => 'Administrador de Bloques',
|
||||
'Blocks manager' => 'Administrador de bloques',
|
||||
'Delete' => 'Eliminar',
|
||||
'Edit' => 'Editar',
|
||||
'Name' => 'Nombre',
|
||||
'Create New Block' => 'Crear Nuevo Bloque',
|
||||
'New Block' => 'Nuevo Bloque',
|
||||
'Edit Block' => 'Editar Bloque',
|
||||
'Create New Block' => 'Crear nuevo bloque',
|
||||
'New Block' => 'Nuevo bloque',
|
||||
'Edit Block' => 'Editar bloque',
|
||||
'Save' => 'Guardar',
|
||||
'Save and Exit' => 'Guardar y Salir',
|
||||
'Save and Exit' => 'Guardar y salir',
|
||||
'Actions' => 'Acciones',
|
||||
'Required field' => 'Dato requerido',
|
||||
'This block already exists' => 'Este bloque ya existe',
|
||||
@@ -19,7 +19,7 @@
|
||||
'Delete block: :block' => 'Eliminar bloque: :block',
|
||||
'Block content' => 'Contenido del bloque',
|
||||
'Block <i>:name</i> deleted' => 'Bloque <i>:name</i> eliminado',
|
||||
'Your changes to the block <i>:name</i> have been saved.' => 'Tus cambios en el bloque <i>:name</i> han sido guardados.',
|
||||
'Your changes to the block <i>:name</i> have been saved.' => 'Sus cambios en el bloque <i>:name</i> han sido guardados.',
|
||||
'Delete block: :block' => 'Eliminar bloque: :block',
|
||||
'View Embed Code' => 'Ver código incrustado',
|
||||
'Embed Code' => 'Incrustar código',
|
||||
|
30
plugins/box/blocks/languages/ka-ge.lang.php
Normal file
30
plugins/box/blocks/languages/ka-ge.lang.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'blocks' => array(
|
||||
'Blocks' => 'ბლოკები',
|
||||
'Blocks manager' => 'ბლოკების მენეჯერი',
|
||||
'Delete' => 'წაშლა',
|
||||
'Edit' => 'რედაქტირება',
|
||||
'New Block' => 'ახალი ბლოკი',
|
||||
'Create New Block' => 'ახალი ბლოკის შექმნა',
|
||||
'Name' => 'სახელი',
|
||||
'Edit Block' => 'ბლოკის რედაქტირება',
|
||||
'Save' => 'შენახვა',
|
||||
'Actions' => 'მოქმედება',
|
||||
'Save and Exit' => 'შენახვა და შემდეგ გამოსვლა',
|
||||
'Required field' => 'აუცილებელი ველი',
|
||||
'This block already exists' => 'ასეთი ბლოკი უკვე არსებობს',
|
||||
'This block does not exist' => 'ასეთი ბლოკი არ არსებობს',
|
||||
'Delete block: :block' => 'ბლოკის წაშლა: :block',
|
||||
'Block content' => 'ბლოკის შემადგენლობა',
|
||||
'Block <i>:name</i> deleted' => 'ბლოკი <i>:name</i> წაშლილია',
|
||||
'Your changes to the block <i>:name</i> have been saved.' => 'თქვენი ცვლილებები ბლოკში <i>:name</i> დამახსოვრებულია.',
|
||||
'Delete block: :block' => 'ბლოკის წაშლა: :block',
|
||||
'View Embed Code' => 'ჩასაწერი კოდი',
|
||||
'Embed Code' => 'ჩასაწერი კოდი',
|
||||
'Shortcode' => 'Shortcode-ი',
|
||||
'PHP Code' => 'PHP კოდი',
|
||||
'Cancel' => 'გაუქმება',
|
||||
)
|
||||
);
|
@@ -5,7 +5,7 @@
|
||||
'Dashboard' => 'Dashboard',
|
||||
'Dashboard plugin for Monstra' => 'Dashboard plugin para Monstra',
|
||||
'Welcome back' => 'Bienvenido nuevamente',
|
||||
'Create New' => 'Crear Nuevo',
|
||||
'Upload File' => 'Subir Archivo',
|
||||
'Create New' => 'Crear nuevo',
|
||||
'Upload File' => 'Subir archivo',
|
||||
)
|
||||
);
|
||||
|
11
plugins/box/dashboard/languages/ka-ge.lang.php
Normal file
11
plugins/box/dashboard/languages/ka-ge.lang.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'dashboard' => array(
|
||||
'Dashboard' => 'პანელი',
|
||||
'Dashboard plugin for Monstra' => 'პანელი Monstra-თვის',
|
||||
'Welcome back' => 'მოგესალმებით',
|
||||
'Create New' => 'დამატება',
|
||||
'Upload File' => 'ფაილის ატვირთვა',
|
||||
)
|
||||
);
|
@@ -3,6 +3,6 @@
|
||||
return array(
|
||||
'Editor' => array(
|
||||
'Editor' => 'Editor',
|
||||
'Editor plugin' => 'Plugin editor',
|
||||
'Editor plugin' => 'Editor plugin',
|
||||
)
|
||||
);
|
||||
);
|
||||
|
7
plugins/box/editor/languages/ka-ge.lang.php
Normal file
7
plugins/box/editor/languages/ka-ge.lang.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
return array(
|
||||
'Editor' => array(
|
||||
'Editor' => 'რედაქტორი',
|
||||
'Editor plugin' => 'პლაგინი რედაქტორი',
|
||||
)
|
||||
);
|
@@ -4,16 +4,16 @@
|
||||
'emails' => array(
|
||||
'Emails' => 'Emails',
|
||||
'Emails plugin for Monstra' => 'Emails plugin para Monstra',
|
||||
'Edit Layout' => 'Editar Layout',
|
||||
'Email templates' => 'Plantillas de Email',
|
||||
'Edit Layout' => 'Editar diseño',
|
||||
'Email templates' => 'Plantillas de email',
|
||||
'Edit' => 'Editar',
|
||||
'Edit Email Template' => 'Editar Plantilla de Email',
|
||||
'Edit Email Template' => 'Editar plantilla de email',
|
||||
'Name' => 'Nombre',
|
||||
'Email template content' => 'Contenido de la plantilla de email',
|
||||
'Save and Exit' => 'Guardar y Salir',
|
||||
'Save and Exit' => 'Guardar y salir',
|
||||
'Save' => 'Guardar',
|
||||
'Cancel' => 'Cancelar',
|
||||
'This email template does not exist' => 'This email template does not exist',
|
||||
'Your changes to the email template <i>:name</i> have been saved.' => 'Tus cambios en la plantilla de email <i>:name</i> han sido guardados.',
|
||||
'This email template does not exist' => 'Esta plantilla de email no existe',
|
||||
'Your changes to the email template <i>:name</i> have been saved.' => 'Sus cambios en la plantilla de email <i>:name</i> han sido guardados.',
|
||||
)
|
||||
);
|
||||
|
18
plugins/box/emails/languages/ka-ge.lang.php
Normal file
18
plugins/box/emails/languages/ka-ge.lang.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
return array(
|
||||
'emails' => array(
|
||||
'Emails' => 'ელ-ფოსტები',
|
||||
'Emails plugin for Monstra' => 'პლაგინი ელ-ფოსტები Monstra-თვის',
|
||||
'Edit Layout' => 'ნიმუშის რედაქტირება',
|
||||
'Email templates' => 'წერილების ნიმუში',
|
||||
'Edit' => 'რედაქტირება',
|
||||
'Edit Email Template' => 'ელ-ფოსტების ნიმუშის რედაქტირება',
|
||||
'Name' => 'სახელი',
|
||||
'Email template content' => 'ელ-ფოსტის კონტენტის ნიმუში',
|
||||
'Save and Exit' => 'შენახვა და შემდეგ გამოსვლა',
|
||||
'Save' => 'შენახვა',
|
||||
'Cancel' => 'გაუქმება',
|
||||
'This email template does not exist' => 'ასეთი ელ-ფოსტის ნიმუში არ არსებობს',
|
||||
'Your changes to the email template <i>:name</i> have been saved.' => 'ელ-ფოსტის ნიმუშის ცვლილებები <i>:name</i> დამახსოვრებულია.',
|
||||
)
|
||||
);
|
@@ -8,37 +8,36 @@
|
||||
'Actions' => 'Acciones',
|
||||
'Delete' => 'Eliminar',
|
||||
'Upload' => 'Subir',
|
||||
'Drop File Here' => 'Arrastrar Archivo Aquí',
|
||||
'Maximum upload file size: :upload_max_filesize' => 'Tamaño máximo del archivo: :upload_max_filesize',
|
||||
'Drop File Here' => 'Arrastrar archivo aquí',
|
||||
'Maximum upload file size: :upload_max_filesize' => 'Tamaño máximo de subida: :upload_max_filesize',
|
||||
'Rename' => 'Renombrar',
|
||||
'Renamed successfully' => 'Renombrado exitoso',
|
||||
'Failure' => 'Fracaso',
|
||||
'Forbidden file type' => 'Tipo de archivo prohibido',
|
||||
'Upload server error' => 'Error del servidor',
|
||||
'Upload server error' => 'Error de subida del servidor',
|
||||
'Can not be empty' => 'No puede estar vacío',
|
||||
'Create New Directory' => 'Crear Nuevo Directorio',
|
||||
'Directory Name' => 'Nombre del Directorio',
|
||||
'Create New Directory' => 'Crear nuevo directorio',
|
||||
'Directory Name' => 'Nombre del directorio',
|
||||
'Directory:' => 'Directorio:',
|
||||
'Directory was not created' => 'El directorio no fue creado',
|
||||
'Directory was created' => 'El directorio fue creado',
|
||||
'Directory was deleted' => 'El directorio fue eliminado',
|
||||
'Directory was not deleted' => 'El directorio no fue eliminado',
|
||||
'Directory exists' => 'Directorio existente',
|
||||
'Directory exists' => 'El directorio ya existe',
|
||||
'File:' => 'Archivo:',
|
||||
'File was uploaded' => 'El archivo fue subido',
|
||||
'File was not uploaded' => 'El archivo no fue subido',
|
||||
'File was deleted' => 'El archivo fue eliminado',
|
||||
'File was not deleted' => 'El archivo fue eliminado',
|
||||
'File exists' => 'Archivo existente',
|
||||
'File was not deleted' => 'El archivo no fue eliminado',
|
||||
'File exists' => 'El archivo ya existe',
|
||||
'Cancel' => 'Cancelar',
|
||||
'Create' => 'Crear',
|
||||
'directory' => 'directorio',
|
||||
'Delete directory: :dir' => 'Eliminar directorio: :dir',
|
||||
'Delete file: :file' => 'Eliminar archivo :file',
|
||||
'Delete file: :file' => 'Eliminar archivo: :file',
|
||||
'Extension' => 'Extensión',
|
||||
'Size' => 'Tamaño',
|
||||
'Select file' => 'Seleccionar archivo',
|
||||
'Change' => 'Cambiar',
|
||||
)
|
||||
);
|
||||
|
||||
|
50
plugins/box/filesmanager/languages/ka-ge.lang.php
Normal file
50
plugins/box/filesmanager/languages/ka-ge.lang.php
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'filesmanager' => array(
|
||||
'Files' => 'ფაილები',
|
||||
'Files manager' => 'ფაილების მენეჯერი',
|
||||
'Name' => 'სახელი',
|
||||
'Actions' => 'მოქმედება',
|
||||
'Delete' => 'წაშლა',
|
||||
'Upload' => 'ატვირთვა',
|
||||
'Drop File Here' => 'გადაიტანეთ ფაილი აქ',
|
||||
'Maximum upload file size: :upload_max_filesize' => 'ფაილის მაქსიმალური ზომა: :upload_max_filesize',
|
||||
'Rename' => 'გადარქმევა',
|
||||
'Renamed successfully' => 'წარმატებით გადაირქვა',
|
||||
'Failure' => 'ვერ მოხერხდა',
|
||||
'Forbidden file type' => 'ფაილის აკრძალული ტიპი',
|
||||
'Upload server error' => 'სერვერის შეცდომა ატვირთვის დროს',
|
||||
'Can not be empty' => 'არ შეიძლება ცარიელი იყოს',
|
||||
'Create New Directory' => 'ახალი დირექტორიის შექმნა',
|
||||
'Directory Name' => 'დირექტორიის სახელი',
|
||||
'Directory:' => 'დირექტორია:',
|
||||
'Directory was not created' => 'დირექტორია ვერ შეიქმნა',
|
||||
'Directory was created' => 'დირექტორია შეიქმნა',
|
||||
'Directory was deleted' => 'დირექტორია წაშლილია',
|
||||
'Directory was not deleted' => 'დირექტორია ვერ წაიშალა',
|
||||
'Directory exists' => 'დირექტორია უკვე არსებობს',
|
||||
'File:' => 'ფაილი:',
|
||||
'File was uploaded' => 'ფაილი აიტვირთა',
|
||||
'File was not uploaded' => 'ფაილი ვერ აიტვირთა',
|
||||
'File was deleted' => 'ფაილი წაშლილია',
|
||||
'File was not deleted' => 'ფაილი ვერ წაიშალა',
|
||||
'File exists' => 'ფაილი უკვე არსებობს',
|
||||
'Cancel' => 'გაუქმება',
|
||||
'Create' => 'შექმნა',
|
||||
'directory' => 'დირექტორია',
|
||||
'Delete directory: :dir' => 'დირექტორიის წაშლა: :dir',
|
||||
'Delete file: :file' => 'ფაილის წაშლა:file',
|
||||
'Extension' => 'გაფართოება',
|
||||
'Size' => 'ფაილი',
|
||||
'Select file' => 'ფაილის ამორჩევა',
|
||||
'Change' => 'შეცვლა',
|
||||
'Info' => 'ინფო',
|
||||
'File Information' => 'ინფორმაცია ფაილზე',
|
||||
'Filename' => 'ფაილის სახელწოდება',
|
||||
'Filetype' => 'ფაილის ტიპი',
|
||||
'Filesize' => 'ფაილის ზომა',
|
||||
'Dimension' => 'სიდიდე',
|
||||
'Link' => 'ბმული',
|
||||
)
|
||||
);
|
@@ -18,23 +18,23 @@
|
||||
'Not Installed' => 'No instalado',
|
||||
'Security check results' => 'Resultados del control de seguridad',
|
||||
'The configuration file has been found to be writable. We would advise you to remove all write permissions on defines.php on production systems.' =>
|
||||
'El archivo de configuración se ha encontrado ser de escritura. Le recomendamos quitar todos los permisos de escritura en defines.php en los sistemas de producción.',
|
||||
'El archivo de configuración se ha encontrado ser accesible. Le recomendamos quitar todos los permisos de escritura en defines.php en los sistemas de producción.',
|
||||
'The Monstra core directory (":path") and/or files underneath it 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 -R a-w :path</code>' =>
|
||||
'El directorio núcleo Monstra (":path") y/o los archivos por debajo de ella se han encontrado ser de escritura. Le recomendamos quitar todos los permisos de escritura. <br>Usted puede hacer esto en sistemas Unix con: <code>chmod -R a-w :path</code>',
|
||||
'El directorio núcleo de Monstra (":path") y/o los archivos por debajo del mismo se han encontrado ser accesibles. Le recomendamos quitar todos los permisos de escritura. <br>Usted puede hacer esto en sistemas Unix con: <code>chmod -R a-w :path</code>',
|
||||
'The Monstra .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>' =>
|
||||
'El archivo .htaccess de Monstra se ha encontrado ser de escritura. Le recomendamos quitar todos los permisos de escritura. <br>Usted puede hacer esto en sistemas Unix con: <code>chmod a-w :path</code>',
|
||||
'El archivo .htaccess de Monstra se ha encontrado ser accesible. Le recomendamos quitar todos los permisos de escritura. <br>Usted puede hacer esto en sistemas Unix con: <code>chmod a-w :path</code>',
|
||||
'The Monstra 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>' =>
|
||||
'El archivo index.php de Monstra se ha encontrado ser de escritura. Le recomendamos quitar todos los permisos de escritura. <br>Usted puede hacer esto en sistemas Unix con: <code>chmod a-w :path</code>',
|
||||
'El archivo index.php de Monstra se ha encontrado ser accesible. Le recomendamos quitar todos los permisos de escritura. <br>Usted puede hacer esto en sistemas Unix con: <code>chmod a-w :path</code>',
|
||||
'Due to the type and amount of information an error might give intruders when Core::$environment = Core::DEVELOPMENT, we strongly advise setting Core::PRODUCTION in production systems.' =>
|
||||
'Debido al tipo y cantidad de información que un error podría dar a los intrusos cuando Core::$environment = Core::DEVELOPMENT, le recomendamos ajuste Core::PRODUCTION en sistemas de producción.',
|
||||
'Monstra version' => 'Monstra versión',
|
||||
'Directory Permissions' => 'Permisos de directorios',
|
||||
'Monstra version' => 'Versión Monstra',
|
||||
'Directory Permissions' => 'Permisos de directorio',
|
||||
'Directory' => 'Directorio',
|
||||
'Writable' => 'Accesible',
|
||||
'Unwritable' => 'No accesible',
|
||||
'Status' => 'Estado',
|
||||
'PHP Built On' => 'PHP Construido En',
|
||||
'Web Server' => 'Servidor Web',
|
||||
'WebServer to PHP Interface' => 'Servidor Web En Interfaz PHP',
|
||||
'PHP Built On' => 'PHP construido en',
|
||||
'Web Server' => 'Servidor web',
|
||||
'WebServer to PHP Interface' => 'Servidor web para interfaz PHP',
|
||||
)
|
||||
);
|
||||
|
40
plugins/box/information/languages/ka-ge.lang.php
Normal file
40
plugins/box/information/languages/ka-ge.lang.php
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'information' => array(
|
||||
'Information' => 'ინფორმაცია',
|
||||
'Debugging' => 'Debugging-ი',
|
||||
'Name' => 'სახელი',
|
||||
'Value' => 'მნიშვნელობა',
|
||||
'Security' => 'უსაფრთხოება',
|
||||
'System' => 'სისტემა',
|
||||
'on' => 'ჩართულია',
|
||||
'off'=> 'გამორთულია',
|
||||
'Server' => 'სერვერი',
|
||||
'PHP version' => 'PHP-ის ვერსია',
|
||||
'SimpleXML module' => 'SimpleXML მოდული',
|
||||
'DOM module' => 'DOM მოდული',
|
||||
'Installed' => 'დაყენებულია',
|
||||
'Not Installed' => 'არ არის დაყენებული',
|
||||
'Security check results' => 'უსაფრთხოების შემოწმების შედეგები',
|
||||
'The configuration file has been found to be writable. We would advise you to remove all write permissions on defines.php on production systems.' =>
|
||||
'კონფიგურაციის ფაილის ჩაწერა შესაძლებელია. გირჩევთ წაშალოთ ფაილის (defines.php) ჩაწერის უფლებები.',
|
||||
'The Monstra core directory (":path") and/or files underneath it 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 -R a-w :path</code>' =>
|
||||
'Monstra-ს დირექტორია (":path") ჩასაწერად ხელმისაწვდომია. გირჩევთ წაშალოთ ჩაწერის უფლებები დირექტორიაზე (":path") . <br> ამის გაკეთება UNIX სისტემებზე ასე შეგიძლიათ: <code>chmod -R a-w :path</code>',
|
||||
'The Monstra .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>' =>
|
||||
'მთავარი .htaccess ფაილი ჩასაწერად ხელმისაწვდომია. გირჩევთ წაშალოთ ჩაწერის უფლებები მთავარ .htaccess ფაილზე. <br> ამის გაკეთება UNIX სისტემებზე ასე შეგიძლიათ: <code>chmod -R a-w :path</code>',
|
||||
'The Monstra 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>' =>
|
||||
'მთავარი index.php ფაილი ჩასაწერად ხელმისაწვდომია. გირჩევთ წაშალოთ ჩაწერის უფლებები მთავარ index.php ფაილზე. <br> ამის გაკეთება UNIX სისტემებზე ასე შეგიძლიათ: <code>chmod -R a-w :path</code>',
|
||||
'Due to the type and amount of information an error might give intruders when Monstra::$environment = Monstra::DEVELOPMENT, we strongly advise setting Monstra::PRODUCTION in production systems.' =>
|
||||
'სისტემა მუშაობს Monstra::DEVELOPMENT რეჟიმზა, გირჩევთ Monstra::PRODUCTION რეჟიმის დაყენებას.',
|
||||
'Monstra version' => 'Monstra-ს ვერსია',
|
||||
'Directory Permissions' => 'დაშვების უფლებები',
|
||||
'Directory' => 'კატალოგი',
|
||||
'Writable' => 'ჩასაწერად ხელმისაწვდომია',
|
||||
'Unwritable' => 'ჩასაწერად არ არის ხელმისაწვდომია',
|
||||
'Status' => 'სტატუსი',
|
||||
'PHP Built On' => 'PHP აგებულია',
|
||||
'Web Server' => 'Web სერვერი',
|
||||
'WebServer to PHP Interface' => 'Web სერვერი PHP ინტერფეისისთვის',
|
||||
)
|
||||
);
|
@@ -9,16 +9,16 @@
|
||||
'Delete' => 'Eliminar',
|
||||
'Order' => 'Orden',
|
||||
'Actions' => 'Acciones',
|
||||
'Create New Item' => 'Crear Nuevo Item',
|
||||
'New item' => 'Nuevo Item',
|
||||
'Item name' => 'Nombre del Item',
|
||||
'Item order' => 'Orden del Item',
|
||||
'Item target' => 'Target del Item',
|
||||
'Item link' => 'Enlace del Item',
|
||||
'Item category' => 'Categoría del Item',
|
||||
'Create New Item' => 'Crear nuevo item',
|
||||
'New item' => 'Nuevo item',
|
||||
'Item name' => 'Nombre del item',
|
||||
'Item order' => 'Orden del item',
|
||||
'Item target' => 'Target del item',
|
||||
'Item link' => 'Enlace del item',
|
||||
'Item category' => 'Categoría del item',
|
||||
'Save' => 'Guardar',
|
||||
'Edit item' => 'Editar Item',
|
||||
'Delete item :name' => 'Eliminar Item: :name ?',
|
||||
'Edit item' => 'Editar item',
|
||||
'Delete item :name' => 'Eliminar item: :name',
|
||||
'Select page' => 'Seleccionar página',
|
||||
'Category' => 'Categoría',
|
||||
'Select category' => 'Seleccionar categoría',
|
||||
|
28
plugins/box/menu/languages/ka-ge.lang.php
Normal file
28
plugins/box/menu/languages/ka-ge.lang.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'menu' => array(
|
||||
'Menu' => 'მენიუ',
|
||||
'Menu manager' => 'მენიუს მენეჯერი',
|
||||
'Edit' => 'რედაქტირება',
|
||||
'Name' => 'სახელწოდება',
|
||||
'Delete' => 'წაშლა',
|
||||
'Order' => 'რიგი',
|
||||
'Actions' => 'მოქმედება',
|
||||
'Create New Item' => 'მენიუს ახალი პუნქტის შექმნა',
|
||||
'New item' => 'მენიუს ახალი პუნქტი',
|
||||
'Item name' => 'სახელი',
|
||||
'Item order' => 'რიგი',
|
||||
'Item target' => 'მიზანი',
|
||||
'Item link' => 'ბმული',
|
||||
'Item category' => 'კატეგორია',
|
||||
'Save' => 'შენახვა',
|
||||
'Edit item' => 'მენიუს პუნქტის რედაქტირება',
|
||||
'Delete item :name' => 'მენიუს პუქტის წაშლა :name',
|
||||
'Select page' => 'გვერდის არჩევა',
|
||||
'Category' => 'კატეგორია',
|
||||
'Select category' => 'კატეგორიის არჩევა',
|
||||
'Required field' => 'აუცილებელი ველი',
|
||||
'Cancel' => 'გაუქმება',
|
||||
)
|
||||
);
|
@@ -5,46 +5,46 @@
|
||||
'Pages' => 'Páginas',
|
||||
'Pages manager' => 'Administrador de páginas',
|
||||
'Content' => 'Contenido',
|
||||
'Create New Page' => 'Crear Nueva Página',
|
||||
'Create New Page' => 'Crear nueva página',
|
||||
'New Page' => 'Nueva página',
|
||||
'Edit Page' => 'Editar página',
|
||||
'Date' => 'Fecha',
|
||||
'Clone' => 'Clonar',
|
||||
'Edit' => 'Editar',
|
||||
'Delete' => 'Eliminar',
|
||||
'Delete page: :page' => 'Eliminar página: :page ?',
|
||||
'Delete page: :page' => 'Eliminar página: :page',
|
||||
'Title' => 'Título',
|
||||
'Name' => 'Nombre',
|
||||
'Author' => 'Autor',
|
||||
'Name (slug)' => 'Nombre (slug)',
|
||||
'Description' => 'Descripción',
|
||||
'Keywords' => 'Palabras clave',
|
||||
'Parent' => 'Pariente de',
|
||||
'Keywords' => 'Palabras claves',
|
||||
'Parent' => 'Página padre',
|
||||
'Template' => 'Plantilla',
|
||||
'Year' => 'Año',
|
||||
'Day' => 'Día',
|
||||
'Month' => 'Mes',
|
||||
'Hour' => 'Hora',
|
||||
'Minute' => 'Minutos',
|
||||
'Second' => 'Segundos',
|
||||
'Minute' => 'Minuto',
|
||||
'Second' => 'Segundo',
|
||||
'This field should not be empty' => 'Este campo no puede quedar vacío',
|
||||
'This page already exists' => 'Esta página ya existe',
|
||||
'Extra' => 'Extra',
|
||||
'Save' => 'Guardar',
|
||||
'Save and Exit' => 'Guardar y Salir',
|
||||
'Your changes to the page <i>:page</i> have been saved.' => 'Los cambios realizados en la página <i>:page</i> han sido guardados.',
|
||||
'The page <i>:page</i> cloned.' => 'La página <i>:page</i> se ha clonado.',
|
||||
'Save and Exit' => 'Guardar y salir',
|
||||
'Your changes to the page <i>:page</i> have been saved.' => 'Sus cambios realizados en la página <i>:page</i> han sido guardados.',
|
||||
'The page <i>:page</i> cloned.' => 'La página <i>:page</i> ha sido clonada.',
|
||||
'Status' => 'Estado',
|
||||
'Actions' => 'Acciones',
|
||||
'Add' => 'Añadir',
|
||||
'Published' => 'Publicado',
|
||||
'Published' => 'Publicada',
|
||||
'Draft' => 'Borrador',
|
||||
'Published on' => 'Publicada el',
|
||||
'Edit 404 Page' => 'Editar Página 404',
|
||||
'Page <i>:page</i> deleted' => 'Pagina <i>:page</i> eliminada',
|
||||
'Search Engines Robots' => 'Motores de búsqueda Robots',
|
||||
'Published on' => 'Publicada',
|
||||
'Edit 404 Page' => 'Editar página 404',
|
||||
'Page <i>:page</i> deleted' => 'Página <i>:page</i> eliminada',
|
||||
'Search Engines Robots' => 'Motores de búsqueda robots',
|
||||
'Page' => 'Página',
|
||||
'Metadata' => 'Metadata',
|
||||
'Metadata' => 'Metadatos',
|
||||
'Settings' => 'Ajustes',
|
||||
'Required field' => 'Dato requerido',
|
||||
'Access' => 'Acceso',
|
||||
|
56
plugins/box/pages/languages/ka-ge.lang.php
Normal file
56
plugins/box/pages/languages/ka-ge.lang.php
Normal file
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'pages' => array(
|
||||
'Pages' => 'გვერდები',
|
||||
'Pages manager' => 'გვერდების მენეჯერი',
|
||||
'Content' => 'კონტენტი',
|
||||
'Create New Page' => 'ახალი გვერდის შექმნა',
|
||||
'New Page' => 'ახალი გვერდი',
|
||||
'Edit Page' => 'გვერდის რედაქტირება',
|
||||
'Date' => 'თარიღი',
|
||||
'Clone' => 'კლონირება',
|
||||
'Edit' => 'რედაქტირება',
|
||||
'Delete' => 'წაშლა',
|
||||
'Delete page: :page' => 'გვერდის წაშლა: :page',
|
||||
'Title' => 'სათაური',
|
||||
'Name' => 'სახელწოდება',
|
||||
'Author' => 'ავტორი',
|
||||
'Slug (url)' => 'ბმული (url)',
|
||||
'Tags' => 'Tag-ევი',
|
||||
'Description' => 'აღწერა',
|
||||
'Keywords' => 'საკვანძო სიტყვები',
|
||||
'Parent' => 'მშობელი',
|
||||
'Template' => 'Template-ი',
|
||||
'Year' => 'წელი',
|
||||
'Day' => 'დღე',
|
||||
'Month' => 'თვე',
|
||||
'Hours' => 'საათი',
|
||||
'Minute' => 'წუთი',
|
||||
'Second' => 'წამი',
|
||||
'This field should not be empty' => 'ეს ველი არ უნდა იყოს ცარიელი',
|
||||
'This page already exists' => 'ასეთი გვერდი უკვე არსებობს',
|
||||
'Extra' => 'დამატებით',
|
||||
'Save' => 'შენახვა',
|
||||
'Save and Exit' => 'დამახსოვრება და შემდეგ გაოსვლა',
|
||||
'Your changes to the page <i>:page</i> have been saved.' => 'თქვენი ცვლილებები გვერდი <i>:page</i> მიმართ შენახულია.',
|
||||
'The page <i>:page</i> cloned.' => 'გვერდი <i>:page</i> კლონირებულია.',
|
||||
'Status' => 'სტატუსი',
|
||||
'Actions' => 'მოქმედება',
|
||||
'Add' => 'დამატება',
|
||||
'Published' => 'გამოქვეყნებულია',
|
||||
'Draft' => 'ესკიზი',
|
||||
'Published on' => 'გამოქვეყნებულია',
|
||||
'Edit 404 Page' => '404 გვერდის რედაქტირება',
|
||||
'Page <i>:page</i> deleted' => 'გვერდი <i>:page</i> წაშლილია',
|
||||
'Search Engines Robots' => 'საძიებო რობოტები',
|
||||
'Page' => 'გვერდები',
|
||||
'Metadata' => 'Metadata',
|
||||
'Settings' => 'პარამეტრები',
|
||||
'Required field' => 'აუცილებელი ველი',
|
||||
'Access' => 'მისაწვდომობა',
|
||||
'Public' => 'საჯარო',
|
||||
'Registered' => 'დარეგისტრირებულთათვის',
|
||||
'Cancel' => 'გაუქმება',
|
||||
),
|
||||
);
|
@@ -6,10 +6,10 @@
|
||||
'Name' => 'Nombre',
|
||||
'Actions' => 'Acciones',
|
||||
'Description' => 'Descripción',
|
||||
'Installed' => 'Instalados',
|
||||
'Install New' => 'Instalar Nuevo',
|
||||
'Installed' => 'Instalado',
|
||||
'Install New' => 'Instalar nuevo',
|
||||
'Delete' => 'Eliminar',
|
||||
'Delete plugin :plugin' => 'Eliminar plugin :plugin',
|
||||
'Delete plugin :plugin' => 'Eliminar plugin: :plugin',
|
||||
'This plugin does not exist' => 'Este plugin no existe',
|
||||
'Version' => 'Versión',
|
||||
'Author' => 'Autor',
|
||||
|
24
plugins/box/plugins/languages/ka-ge.lang.php
Normal file
24
plugins/box/plugins/languages/ka-ge.lang.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'plugins' => array(
|
||||
'Plugins' => 'პლაგინები',
|
||||
'Installed' => 'დაყენებული',
|
||||
'Install New' => 'ახალის დაყენება',
|
||||
'Actions' => 'მოქმედება',
|
||||
'Name' => 'სახელწოდება',
|
||||
'Description' => 'აღწერა',
|
||||
'Delete' => 'წაშლა',
|
||||
'Delete plugin :plugin' => ':plugin პლაგინის წაშლა',
|
||||
'This plugin does not exist' => 'ასეთი პლაგინი არ არსებობს',
|
||||
'Version' => 'ვერსია',
|
||||
'Author' => 'ავტორი',
|
||||
'Get More Plugins' => 'სხვა პლაგინების გადმოწერა',
|
||||
'Install' => 'დაყენება',
|
||||
'Uninstall' => 'წაშლა',
|
||||
'README.md not found' => 'README.md არ არის ნაპოვნი',
|
||||
'Info' => 'ინფო',
|
||||
'Upload' => 'ატვირთვა',
|
||||
'Drop File Here' => 'გადაიტანეთ ფაილი აქ',
|
||||
)
|
||||
);
|
7
plugins/box/sitemap/languages/ka-ge.lang.php
Normal file
7
plugins/box/sitemap/languages/ka-ge.lang.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'sitemap' => array(
|
||||
'Sitemap' => 'საიტის რუქა',
|
||||
)
|
||||
);
|
@@ -3,22 +3,22 @@
|
||||
return array(
|
||||
'snippets' => array(
|
||||
'Snippets' => 'Snippets',
|
||||
'Snippets manager' => 'Administrador de Snippets',
|
||||
'Snippets manager' => 'Administrador de snippets',
|
||||
'Actions' => 'Acciones',
|
||||
'Delete' => 'Eliminar',
|
||||
'Edit' => 'Editar',
|
||||
'Name' => 'Nombre',
|
||||
'Create New Snippet' => 'Crear Nuevo Snippet',
|
||||
'New Snippet' => 'Nuevo Snippet',
|
||||
'Edit snippet' => 'Editar Snippet',
|
||||
'Create New Snippet' => 'Crear nuevo snippet',
|
||||
'New Snippet' => 'Nuevo snippet',
|
||||
'Edit Snippet' => 'Editar snippet',
|
||||
'Save' => 'Guardar',
|
||||
'Save and Exit' => 'Guardar y Salir',
|
||||
'Save and Exit' => 'Guardar y salir',
|
||||
'This snippet already exists' => 'Este snippet ya existe',
|
||||
'This snippet does not exist' => 'Este snippet no existe',
|
||||
'Delete snippet: :snippet' => 'Eliminar snippet: :snippet',
|
||||
'Snippet content' => 'Contenido del snippet',
|
||||
'Snippet <i>:name</i> deleted' => 'Snippet <i>:name</i> eliminado',
|
||||
'Your changes to the snippet <i>:name</i> have been saved.' => 'Los cambios realizados en el snippet <i>:name</i> han sido guardados.',
|
||||
'Your changes to the snippet <i>:name</i> have been saved.' => 'Sus cambios realizados en el snippet <i>:name</i> han sido guardados.',
|
||||
'Delete snippet: :snippet' => 'Eliminar snippet: :snippet',
|
||||
'Required field' => 'Dato requerido',
|
||||
'View Embed Code' => 'Ver código incrustado',
|
||||
|
30
plugins/box/snippets/languages/ka-ge.lang.php
Normal file
30
plugins/box/snippets/languages/ka-ge.lang.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'snippets' => array(
|
||||
'Snippets' => 'Snippet-ები',
|
||||
'Snippets manager' => 'Snippet-ების მენეჯერი',
|
||||
'Actions' => 'მოქმედება',
|
||||
'Delete' => 'წაშლა',
|
||||
'Edit' => 'რედაქტირება',
|
||||
'New Snippet' => 'ახალი Snippet-ი',
|
||||
'Create New Snippet' => 'ახალი Snippet-ის შექმნა',
|
||||
'Name' => 'სახელწოდება',
|
||||
'Edit Snippet' => 'Snippet-ის რედაქტირება',
|
||||
'Save' => 'შენახვა',
|
||||
'Save and Exit' => 'შენახვა და შემდეგ გამოსვლა',
|
||||
'This snippet already exists' => 'ასეთი Snippet-ი უკვე არსებობს',
|
||||
'This snippet does not exist' => 'ასეთი Snippet-ი არ არსებობს',
|
||||
'Delete snippet: :block' => 'Snippet-ის წაშლა: :snippet',
|
||||
'Snippet content' => 'Snippet-ის შედგენილობა',
|
||||
'Snippet <i>:name</i> deleted' => 'Snippet-ი <i>:name</i> წაშლილია',
|
||||
'Your changes to the snippet <i>:name</i> have been saved.' => 'თქვენი ცვლილებები Snippet-ის მიმართ <i>:name</i> შენახულია.',
|
||||
'Delete snippet: :snippet' => 'Snippet-ის წაშლა: :snippet',
|
||||
'Required field' => 'აუცილებელი ველი',
|
||||
'View Embed Code' => 'ჩასაწერი კოდი',
|
||||
'Embed Code' => 'ჩასაწერი კოდი',
|
||||
'Shortcode' => 'Shortcode-ი',
|
||||
'PHP Code' => 'PHP კოდი',
|
||||
'Cancel' => 'გაუქმება',
|
||||
)
|
||||
);
|
@@ -4,51 +4,51 @@
|
||||
'system' => array(
|
||||
'System' => 'Sistema',
|
||||
'Published a new version of the :monstra' => 'Publicada una nueva versión de :monstra',
|
||||
'Sitemap created' => 'Mapa del Sitio creado',
|
||||
'Create Sitemap' => 'Crear Mapa del Sitio',
|
||||
'on' => 'Encender',
|
||||
'off'=> 'Apagar',
|
||||
'Site Url' => 'URL del Sitio',
|
||||
'Maintenance Mode' => 'Modo Mantenimiento',
|
||||
'Maintenance Mode On' => 'Encender Modo Mantenimiento',
|
||||
'Maintenance Mode Off' => 'Apagar Modo Mantenimiento',
|
||||
'Sitemap created' => 'Mapa del sitio creado',
|
||||
'Create Sitemap' => 'Crear mapa del sitio',
|
||||
'on' => 'Activar',
|
||||
'off'=> 'Desactivar',
|
||||
'Site Url' => 'URL del sitio',
|
||||
'Maintenance Mode' => 'Modo mantenimiento',
|
||||
'Maintenance Mode On' => 'Activar modo mantenimiento',
|
||||
'Maintenance Mode Off' => 'Desactivar modo mantenimiento',
|
||||
'Site Settings' => 'Configuración del sitio',
|
||||
'System Settings' => 'Configuración del sistema',
|
||||
'Site Name' => 'Nombre del Sitio',
|
||||
'Site Name' => 'Nombre del sitio',
|
||||
'Site Description' => 'Descripción del sitio',
|
||||
'Site Keywords' => 'Palabras clave del sitio',
|
||||
'Site Keywords' => 'Palabras claves del sitio',
|
||||
'Site Slogan' => 'Lema del sitio',
|
||||
'Default Page' => 'Página por defecto',
|
||||
'Time zone' => 'Zona horaria',
|
||||
'Language' => 'Lenguaje',
|
||||
'Email' => 'Email',
|
||||
'Email' => 'Correo electrónico',
|
||||
'Save' => 'Guardar',
|
||||
'Site' => 'Sitio',
|
||||
'System Version' => 'Versión del Sistema',
|
||||
'System Version ID' => 'ID de Versión Web',
|
||||
'System Version' => 'Versión del sistema',
|
||||
'System Version ID' => 'ID de versión web',
|
||||
'GZIP' => 'GZIP',
|
||||
'Debugging' => 'Depuración',
|
||||
'Plugin API' => 'Plugin API',
|
||||
'Plugins active' => 'Plugins activos',
|
||||
'Actions registered' => 'Acciones registradas',
|
||||
'Filters registered' => 'Filtros registrados',
|
||||
'Delete Temporary Files' => 'Eliminar Archivos Temporales',
|
||||
'Download the latest version' => 'Descarguar la versión más reciente',
|
||||
'Delete Temporary Files' => 'Eliminar archivos temporales',
|
||||
'Download the latest version' => 'Descargar versión más reciente',
|
||||
'Powered by' => 'Powered by',
|
||||
'Administration' => 'Administración',
|
||||
'Settings' => 'Configuración',
|
||||
'Temporary files deleted' => 'Archivos temporales eliminados',
|
||||
'Extends' => 'Extensiones',
|
||||
'View Site' => 'Ver Sitio',
|
||||
'View Site' => 'Ver sitio web',
|
||||
'Welcome, :username' => 'Bienvenido, :username',
|
||||
'Reset Password' => 'Restablecer contraseña',
|
||||
'Back to Website' => 'Regresar al Sitio Web',
|
||||
'Forgot your password? >' => '¿Olvidó su contraseña? >',
|
||||
'Administration >' => 'Administración >',
|
||||
'Reset Password' => 'Restablecer Contraseña',
|
||||
'Back to Website' => 'Regresar al sitio web',
|
||||
'Forgot your password ?' => '¿Olvidó su contraseña?',
|
||||
'Administration >' => 'Administración',
|
||||
'Send New Password' => 'Enviar nueva contraseña',
|
||||
'This user does not exist' => 'Este usuario no existe',
|
||||
'Version' => 'Versión',
|
||||
'Plugin does not exist' => 'El plugin no existe',
|
||||
'Plugin does not exist' => 'El plugin no existe',
|
||||
'Help' => 'Ayuda',
|
||||
'Install script writable' => 'Instalación de scripts accesible',
|
||||
'Install script not writable' => 'Instalación de scripts no accesible',
|
||||
@@ -56,27 +56,27 @@
|
||||
'Directory: <b> :dir </b> not writable' => 'Directorio: <b> :dir </b> no accesible',
|
||||
'PHP Version' => 'Versión PHP',
|
||||
'Module DOM is installed' => 'El módulo DOM está instalado',
|
||||
'Module DOM is required' => 'Módulo DOM es requerido',
|
||||
'Module Mod Rewrite is installed' => 'El módulo Mod_Rewrite está instalado',
|
||||
'Module DOM is required' => 'El módulo DOM es requerido',
|
||||
'Module Mod Rewrite is installed' => 'El módulo Mod Rewrite está instalado',
|
||||
'Module SimpleXML is installed' => 'El módulo SimpleXML está instalado',
|
||||
'PHP 5.2 or greater is required' => 'PHP 5.2 o superior es requerido',
|
||||
'Apache Mod Rewrite is required' => 'Apache Mod_Rewrite es requerido',
|
||||
'SimpleXML module is required' => 'El módulo SimpleXML es requerido',
|
||||
'Field "Site name" is empty' => 'El campo "Nombre del Sitio" está vacío',
|
||||
'Field "Email" is empty' => 'El campo "Correo Electrónico" está vacío',
|
||||
'Apache Mod Rewrite is required' => 'Apache Mod Rewrite es requerido',
|
||||
'SimpleXML module is required' => 'El Módulo SimpleXML es requerido',
|
||||
'Field "Site name" is empty' => 'El campo "Nombre del sitio" está vacío',
|
||||
'Field "Email" is empty' => 'El campo "Correo electrónico" está vacío',
|
||||
'Field "Username" is empty' => 'El campo "Nombre de usuario" está vacío',
|
||||
'Field "Password" is empty' => 'El campo "Contraseña" está vacío',
|
||||
'Field "Site url" is empty' => 'El campo "URL del Sitio" está vacío',
|
||||
'Email not valid' => 'El correo no es válido',
|
||||
'Continue' => 'Continuar',
|
||||
'Field "Site url" is empty' => 'El campo "URL del sitio" está vacío',
|
||||
'Email not valid' => 'El correo electrónico no es válido',
|
||||
'Continue' => 'Continuar',
|
||||
'Install' => 'Instalar',
|
||||
'...Monstra says...' => '...Monstra dice...',
|
||||
'Sitemap file writable' => 'El archivo del Mapa del Sitio es accesible',
|
||||
'Sitemap file not writable' => 'El archivo del Mapa del Sitio no es accesible',
|
||||
'Sitemap file writable' => 'El archivo del mapa del sitio es accesible',
|
||||
'Sitemap file not writable' => 'El archivo del mapa del sitio no es accesible',
|
||||
'Main .htaccess file writable' => 'El archivo principal .htaccess es accesible',
|
||||
'Main .htaccess file not writable' => 'El archivo principal .htaccess no es accesible',
|
||||
'Official Support Forum' => 'Foro de Soporte Oficial',
|
||||
'Documentation' => 'Documentación',
|
||||
'Your changes have been saved.' => 'Tus cambios han sido guardados.',
|
||||
'Your changes have been saved.' => 'Sus cambios han sido guardados.',
|
||||
)
|
||||
);
|
||||
|
82
plugins/box/system/languages/ka-ge.lang.php
Normal file
82
plugins/box/system/languages/ka-ge.lang.php
Normal file
@@ -0,0 +1,82 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'system' => array(
|
||||
'System' => 'სისტემა',
|
||||
'Published a new version of the :monstra' => 'გამოქვეყნდა ახალი ვერსია :monstra',
|
||||
'Sitemap created' => 'საიტის რუქა შეიქმნა',
|
||||
'Create Sitemap' => 'საიტის რუქის შექმნა',
|
||||
'on' => 'ჩართულია',
|
||||
'off'=> 'გამორთულია',
|
||||
'Site Url' => 'საიტის ადრესი',
|
||||
'Maintenance Mode' => 'ტექნიკური სამუშაოები',
|
||||
'Maintenance Mode On' => 'ტექნიკური სამუშაობების ჩართვა',
|
||||
'Maintenance Mode Off' => 'ტექნიკური სამუშაობების. გამორთვა',
|
||||
'Site Settings' => 'საიტის პარამეტრები',
|
||||
'System Settings' => 'სისტემის პარამეტრები',
|
||||
'Site Name' => 'საიტის სახელწოდება',
|
||||
'Site Description' => 'საიტის აღწერა',
|
||||
'Site Keywords' => 'საიტის საკვანძო სიტყვები',
|
||||
'Site Slogan' => 'საიტის სლოგანი',
|
||||
'Default Page' => 'მთავარი გვერდი',
|
||||
'Time zone' => 'დროის სარტყელი',
|
||||
'Language' => 'ენა',
|
||||
'Email' => 'ელ-ფოსტა',
|
||||
'Save' => 'დამახსოვრება',
|
||||
'System version' => 'სისტემის ვერსია',
|
||||
'System version ID' => 'სისტემის ვერსიის ID',
|
||||
'GZIP' => 'GZIP',
|
||||
'Debugging' => 'Debugging',
|
||||
'Plugin API' => 'პლაგინი API',
|
||||
'Plugins active' => 'შეერთებული პლაგინები',
|
||||
'Actions registered' => 'დარეგისტრირებული მოქმედებები',
|
||||
'Filters registered' => 'დარეგისტრირებული ფილტრები',
|
||||
'Delete Temporary Files' => 'დროებითი ფაილების წაშლა',
|
||||
'Download the latest version' => 'ბოლო ვერსიის გადმოწერა',
|
||||
'Powered by' => 'Powered by',
|
||||
'Administration' => 'ადმინისტრირება',
|
||||
'Settings' => 'პარამეტრები',
|
||||
'Temporary files deleted' => 'დროებითი ფაილები წაშლილია',
|
||||
'Extends' => 'extend-ები',
|
||||
'View Site' => 'საიტის ნახვა',
|
||||
'Welcome, :username' => 'მოგესალმებით, :username',
|
||||
'Reset Password' => 'პაროლის Reset-ი',
|
||||
'Back to Website' => 'ვებ გვერდზე დაბრუნება',
|
||||
'Forgot your password ?' => 'დაგავიწყდათ პაროლი?',
|
||||
'Administration' => 'ადმინისტრირება',
|
||||
'Send New Password' => 'ახალი პაროლის გაგზავნა',
|
||||
'This user does not exist' => 'ესეთი მომხმარებელი არ არსებობს',
|
||||
'Version' => 'ვერსია',
|
||||
'Plugin does not exist' => 'პლაგინი არ არსებობს',
|
||||
'Help' => 'დახმარება',
|
||||
'Continue' => 'გაგრძელება',
|
||||
|
||||
'Install script writable' => 'დასაყენი script-ის წაკითხვა შესაძლებელია',
|
||||
'Install script not writable' => 'დასაყენი script-ის წაკითხვა შეუძლებელია',
|
||||
'Directory: <b> :dir </b> writable' => 'დირეკტორია <b> :dir </b> ჩაწერისთვის ხელმისაწვდომია',
|
||||
'Directory: <b> :dir </b> not writable' => 'დირეკტორია <b> :dir </b> ჩაწერისთვის არ არის ხელმისაწვდომი',
|
||||
'PHP Version' => 'PHP-ის ვერსია',
|
||||
'Module DOM is installed' => 'DOM მოდული დაყენებულია',
|
||||
'Module DOM is required' => 'საჭიროა DOM მოდული',
|
||||
'Module Mod Rewrite is installed' => 'მოდული Mod Rewrite დაყენებულია',
|
||||
'Module SimpleXML is installed' => 'მოდული SimpleXML დაყენებულია',
|
||||
'PHP 5.2 or greater is required' => 'საჭიროა PHP 5.2 ან უფრო ახალი',
|
||||
'Apache Mod Rewrite is required' => 'საჭიროა Apache Mod Rewrite',
|
||||
'SimpleXML module is required' => 'საჭიროა SimpleXML მოდული',
|
||||
'Field "Site name" is empty' => '"საიტის სახელის" ველი არ არის შევსებული',
|
||||
'Field "Email" is empty' => '"ელ-ფოსტის" ველი არ არის შევსებული',
|
||||
'Field "Username" is empty' => '"მომხმარებლის სახელის" ველი არ არის შევსებული',
|
||||
'Field "Password" is empty' => '"პაროლის" ველი არ არის შევსებული',
|
||||
'Field "Site url" is empty' => '"საიტის ადრესის" ველი არ არის შევსებული',
|
||||
'Email not valid' => 'ელ-ფოსტა არასწორია',
|
||||
'Install' => 'დაყენება',
|
||||
'...Monstra says...' => '...Monstra ამბობს...',
|
||||
'Sitemap file writable' => 'საიტის რუქის ჩაწერა შესაძლებელია',
|
||||
'Sitemap file not writable' => 'საიტის რუქის ჩაწერა შეუძლებელია',
|
||||
'Main .htaccess file writable' => 'მთავარი .htaccess ფაილის ჩაწერა შესაძლებელია',
|
||||
'Main .htaccess file not writable' => 'მთავარი .htaccess ფაილის ჩაწერა შეუძლებელია',
|
||||
'Official Support Forum' => 'ოფიციალური დახმარების ფორუმი',
|
||||
'Documentation' => 'დოკუმენტაცია',
|
||||
'Your changes have been saved.' => 'თქვენი ცვლილებები შენახულია.',
|
||||
)
|
||||
);
|
@@ -52,7 +52,7 @@
|
||||
'This user does not exist' => 'Ovaj korisnik ne postoji',
|
||||
'Version' => 'Verzija',
|
||||
'Plugin does not exist' => 'Ovaj Dodatak ne postoji',
|
||||
'Install script writable' => 'Instaliraj skriptu',
|
||||
'Install script writable' => 'Instaliranje skripte',
|
||||
'Install script not writable' => 'Nemoguće je instalirati skriptu',
|
||||
'Directory: <b> :dir </b> writable' => 'Direktorijum: <b> :dir </b> dozvoljen za pisanje',
|
||||
'Directory: <b> :dir </b> not writable' => 'Direktorijum: <b> :dir </b> nije dozvoljen za posanje',
|
||||
@@ -72,7 +72,7 @@
|
||||
'Email not valid' => 'Email nije validan',
|
||||
'Install' => 'Instaliraj',
|
||||
'...Monstra says...' => '...Monstra kaže...',
|
||||
'Sitemap file writable' => 'Sitemap Fajl je doyvoljen za pisanje',
|
||||
'Sitemap file writable' => 'Sitemap Fajl je dozvoljen za pisanje',
|
||||
'Sitemap file not writable' => 'Sitemap Fajl nije dozvoljen za pisanje',
|
||||
'Main .htaccess file writable' => 'Glavni .htaccess je dozvoljen za pisanje',
|
||||
'Main .htaccess file not writable' => 'Glavni .htaccess nije dozvoljen za pisanje',
|
||||
|
@@ -6,51 +6,51 @@
|
||||
'Themes manager' => 'Administrador de temas',
|
||||
'Select Theme' => 'Seleccionar tema',
|
||||
'Save' => 'Guardar',
|
||||
'Save and Exit' => 'Guardar y Salir',
|
||||
'Save and Exit' => 'Guardar y salir',
|
||||
'Name' => 'Nombre',
|
||||
'Create New Template' => 'Crear Nueva Plantilla',
|
||||
'New Template' => 'Nueva Plantilla',
|
||||
'Delete template: :name' => 'Eliminar plantilla: :name ?',
|
||||
'Delete chunk: :name' => 'Eliminar chunk: :name ?',
|
||||
'Delete styles: :name' => 'Eliminar estilo: :name ?',
|
||||
'Create New Template' => 'Crear nueva plantilla',
|
||||
'New Template' => 'Nueva plantilla',
|
||||
'Delete template: :name' => 'Eliminar plantilla: :name',
|
||||
'Delete chunk: :name' => 'Eliminar chunk: :name',
|
||||
'Delete styles: :name' => 'Eliminar estilo: :name',
|
||||
'Templates' => 'Plantillas',
|
||||
'Clone' => 'Clonar',
|
||||
'Edit' => 'Editar',
|
||||
'Delete' => 'Eliminar',
|
||||
'Actions' => 'Acciones',
|
||||
'Create New Chunk' => 'Crear Nuevo Chunk',
|
||||
'New Chunk' => 'Nuevo Chunk',
|
||||
'Create New Chunk' => 'Crear nuevo chunk',
|
||||
'New Chunk' => 'Nuevo chunk',
|
||||
'Chunks' => 'Chunks',
|
||||
'Create New Styles' => 'Crear Nuevo Estilo',
|
||||
'New Styles' => 'Nuevo Estilo',
|
||||
'Create New Styles' => 'Crear nuevo estilo',
|
||||
'New Styles' => 'Nuevo estilo',
|
||||
'Styles' => 'Estilos',
|
||||
'Template content' => 'Contenido de la Plantilla',
|
||||
'Styles content' => 'Contenido del Estilo',
|
||||
'Chunk content' => 'Contenido del Chunk',
|
||||
'Edit Template' => 'Editar Plantilla',
|
||||
'Edit Chunk' => 'Editar Chunk',
|
||||
'Edit Styles' => 'Editar Estilo',
|
||||
'Site Theme' => 'Tema del Sitio',
|
||||
'Admin Theme' => 'Tema del Backend',
|
||||
'Current Site Theme' => 'Tema del Sitio Actual',
|
||||
'Current admin theme' => 'Tema de administración actual',
|
||||
'Template content' => 'Contenido de la plantilla',
|
||||
'Styles content' => 'Contenido del estilo',
|
||||
'Chunk content' => 'Contenido del chunk',
|
||||
'Edit Template' => 'Editar plantilla',
|
||||
'Edit Chunk' => 'Editar chunk',
|
||||
'Edit Styles' => 'Editar estilo',
|
||||
'Site Theme' => 'Tema del sitio',
|
||||
'Admin Theme' => 'Tema del backend',
|
||||
'Current Site Theme' => 'Tema actual del sitio',
|
||||
'Current admin theme' => 'Tema actual de administración',
|
||||
'This template already exists' => 'Esta plantilla ya existe',
|
||||
'This chunk already exists' => 'Este chunk ya existe',
|
||||
'This styles already exist' => 'Este estilo ya existe',
|
||||
'Components templates' => 'Componentes de plantilla',
|
||||
'Your changes to the chunk <i>:name</i> have been saved.' => 'Los cambios realizados en el chunk <i>:name</i> han sido guardados.',
|
||||
'Your changes to the styles <i>:name</i> have been saved.' => 'Los cambios realizados en el estilo <i>:name</i> han sido guardados.',
|
||||
'Your changes to the template <i>:name</i> have been saved.' => 'Los cambios realizados en la plantilla <i>:name</i> han sido guardados.',
|
||||
'Components templates' => 'Componentes de plantillas',
|
||||
'Your changes to the chunk <i>:name</i> have been saved.' => 'Sus cambios realizados en el chunk <i>:name</i> han sido guardados.',
|
||||
'Your changes to the styles <i>:name</i> have been saved.' => 'Sus cambios realizados en el estilo <i>:name</i> han sido guardados.',
|
||||
'Your changes to the template <i>:name</i> have been saved.' => 'Sus cambios realizados en la plantilla <i>:name</i> han sido guardados.',
|
||||
'Chunk <i>:name</i> deleted' => 'Chunk <i>:name</i> eliminado',
|
||||
'Template <i>:name</i> deleted' => 'Plantilla <i>:name</i> eliminado',
|
||||
'Styles <i>:name</i> deleted' => 'Estilo <i>:name</i> eliminado',
|
||||
'Template <i>:name</i> deleted' => 'Plantilla <i>:name</i> eliminada',
|
||||
'Styles <i>:name</i> deleted' => 'Estilo <i>:name</i> eliminado',
|
||||
'Required field' => 'Dato requerido',
|
||||
'Scripts' => 'Scripts',
|
||||
'Create New Script' => 'Crear Nuevo Script',
|
||||
'Script content' => 'Contenido del Script',
|
||||
'New Script' => 'Nuevo Script',
|
||||
'Edit Script' => 'Editar Script',
|
||||
'Site Theme' => 'Sitio del Tema',
|
||||
'Create New Script' => 'Crear nuevo script',
|
||||
'Script content' => 'Contenido del script',
|
||||
'New Script' => 'Nuevo script',
|
||||
'Edit Script' => 'Editar script',
|
||||
'Site Theme' => 'Tema del sitio',
|
||||
'Cancel' => 'Cancelar',
|
||||
)
|
||||
);
|
||||
|
54
plugins/box/themes/languages/ka-ge.lang.php
Normal file
54
plugins/box/themes/languages/ka-ge.lang.php
Normal file
@@ -0,0 +1,54 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'themes' => array(
|
||||
'Themes' => 'თემები',
|
||||
'Themes manager' => 'თემების მენეჯერი',
|
||||
'Select Theme' => 'თემის არჩევა',
|
||||
'Save' => 'შენახვა',
|
||||
'Name' => 'სახელწოდება',
|
||||
'Save and Exit' => 'შენახვა და შემდეგ გომოსვლა',
|
||||
'Create New Template' => 'ახალი Template-ის შექმნა',
|
||||
'New Template' => 'ახალი Template-ი',
|
||||
'Delete template: :name' => 'Template-ის წაშლა: :name',
|
||||
'Delete chunk: :name' => 'chunk-ის წაშლა: :name',
|
||||
'Delete styles: :name' => 'სტილის წაშლა: :name',
|
||||
'Templates' => 'Template-ები',
|
||||
'Clone' => 'კლონირება',
|
||||
'Edit' => 'რედაქტირება',
|
||||
'Delete' => 'წაშლა',
|
||||
'Actions' => 'მოქმედება',
|
||||
'Admin Theme' => 'თემა',
|
||||
'Create New Chunk' => 'ახალი Chunk-ის შექმნა',
|
||||
'New Chunk' => 'ახალი Chunk-ი',
|
||||
'Chunks' => 'Chunk-ები',
|
||||
'Create New Styles' => 'ახალი სტილის შექმნა',
|
||||
'New Styles' => 'ახალი სტილები',
|
||||
'Styles' => 'სტილები',
|
||||
'Template content' => 'Template-ის შემადგენლობა',
|
||||
'Styles content' => 'სტილების შემადგენლობა',
|
||||
'Chunk content' => 'Chunk-ის შემადგენლობა',
|
||||
'Edit Template' => 'Template-ის რედაქტირება',
|
||||
'Edit Chunk' => 'Chunk-ის რედაქტირება',
|
||||
'Edit Styles' => 'სტილების რედაქტირება',
|
||||
'Site Theme' => 'საიტის თემა',
|
||||
'Admin Theme' => 'ადმინის პანელის თემა',
|
||||
'Current Site Theme' => 'საიტის მიმდინარე თემა',
|
||||
'Current admin theme' => 'ადმინის პანელის მიმდინარე თემა',
|
||||
'This template already exists' => 'ეს Template-ი უკვე არსებობს',
|
||||
'This chunk already exists' => 'ეს Chunk-ი უკვე არსებობს',
|
||||
'This styles already exist' => 'ეს სტილები უკვე არსებობენ',
|
||||
'Components templates' => 'კომპონენტების Template-ები',
|
||||
'Your changes to the chunk <i>:name</i> have been saved.' => 'თქვენი ცვლილებები chunk-ის მიმართ <i>:name</i> შენახულია',
|
||||
'Your changes to the styles <i>:name</i> have been saved.' => 'თქვენი ცვლილებები სტილების მიმართ <i>:name</i> შენახულია',
|
||||
'Your changes to the template <i>:name</i> have been saved.' => 'თქვენი ცვლილებები Template-ის მიმართ <i>:name</i> შენახულია',
|
||||
'Chunk <i>:name</i> deleted' => 'Chunk-ი <i>:name</i> წაშლილია',
|
||||
'Required field' => 'აუცილებელი ველი',
|
||||
'Scripts' => 'Script-ები',
|
||||
'Create New Script' => 'ახალი Script-ის შექმნა',
|
||||
'Script content' => 'Script-ის შემადგენლობა',
|
||||
'New Script' => 'ახალი Script-ი',
|
||||
'Edit Script' => 'Script-ის რედაქტირება',
|
||||
'Cancel' => 'გაუქმება',
|
||||
)
|
||||
);
|
@@ -3,20 +3,20 @@
|
||||
return array(
|
||||
'users' => array(
|
||||
'Users' => 'Usuarios',
|
||||
'Login' => 'Entrar',
|
||||
'Username' => 'Usuario',
|
||||
'Login' => 'Iniciar sesión',
|
||||
'Username' => 'Nombre de usuario',
|
||||
'Password' => 'Contraseña',
|
||||
'Registered' => 'Registrado',
|
||||
'Email' => 'Correo',
|
||||
'Registered' => 'Fecha de registro',
|
||||
'Email' => 'Correo electrónico',
|
||||
'Role' => 'Nivel',
|
||||
'Roles' => 'Niveles',
|
||||
'Edit' => 'Editar',
|
||||
'Actions' => 'Acciones',
|
||||
'Delete' => 'Eliminar',
|
||||
'Enter' => 'Entrar',
|
||||
'Logout' => 'Salir',
|
||||
'Log In' => 'Iniciar sesión',
|
||||
'Log Out' => 'Cerrar sesión',
|
||||
'Register New User' => 'Registrar nuevo usuario',
|
||||
'New User Registration' => 'Registración de nuevo usuario',
|
||||
'New User Registration' => 'Registro de nuevo usuario',
|
||||
'Delete user: :user' => 'Eliminar usuario: :user',
|
||||
'User <i>:user</i> have been deleted.' => 'El usuario <i>:user</i> ha sido eliminado.',
|
||||
'This user already exists' => 'Este usuario ya existe',
|
||||
@@ -34,36 +34,36 @@
|
||||
'Old password' => 'Contraseña antigua',
|
||||
'New password' => 'Nueva contraseña',
|
||||
'Welcome' => 'Bienvenido',
|
||||
'Wrong <b>username</b> or <b>password</b>' => '<b>Nombre de usuario</b> o <b>Contraseña</b> erróneo',
|
||||
'Your changes have been saved.' => 'Tus cambios han sido guardados.',
|
||||
'Wrong <b>username</b> or <b>password</b>' => '<b>Nombre de usuario</b> o <b>contraseña</b> erróneo',
|
||||
'Your changes have been saved.' => 'Sus cambios han sido guardados.',
|
||||
'New user have been registered.' => 'Nuevo usuario registrado.',
|
||||
'Captcha' => 'Captcha',
|
||||
'Registration' => 'Registro',
|
||||
'Username' => 'Nombre de usuario',
|
||||
'User email is invalid' => 'Tu correo es inválido',
|
||||
'Reset Password' => 'Resetear contraseña',
|
||||
'User email is invalid' => 'Su correo es inválido',
|
||||
'Reset Password' => 'Restablecer contraseña',
|
||||
'Send New Password' => 'Enviar nueva contraseña',
|
||||
'This user doesnt alredy exist' => 'Este usuario no existe',
|
||||
'Users - Profile' => 'Usuarios - Perfil',
|
||||
'Users - Edit Profile' => 'Usuarios - Editar perfil',
|
||||
'Users - Login' => 'Usuarios - Entrar',
|
||||
'Users - Login' => 'Usuarios - Iniciar sesión',
|
||||
'Users - Registration' => 'Usuarios - Registro',
|
||||
'Users - Password Recover' => 'Usuarios - Recordar Contraseña',
|
||||
'New Password' => 'Nueva Contraseña',
|
||||
'Users - Password Recover' => 'Usuarios - Recuperar contraseña',
|
||||
'New Password' => 'Nueva contraseña',
|
||||
'Forgot your password?' => '¿Olvidó su contraseña?',
|
||||
'New password has been sent' => 'Nueva contraseña enviada',
|
||||
'Monstra says: This is not your profile...' => 'Monstra dice: Este es tu perfil...',
|
||||
'New password has been sent' => 'Su nueva contraseña ha sido enviada',
|
||||
'Monstra says: This is not your profile...' => 'Monstra dice: Este es su perfil...',
|
||||
'User registration is closed.' => 'El registro de usuarios está cerrado.',
|
||||
'Allow user registration' => 'Permitir registro',
|
||||
'Required field' => 'Dato requerido',
|
||||
'This user doesnt exist' => 'Este usuario no existe',
|
||||
'Captcha code is wrong' => 'Código captcha erroneo',
|
||||
'Your login details for :site_name has been sent' => 'Los detalles para loguearte en :site_name han sido enviados',
|
||||
'Your new password for :site_name' => 'Tu nueva contraseña para :site_name',
|
||||
'Your login details for :site_name' => 'Tus detalles para entrar en :site_name',
|
||||
'About Me' => 'Sobre mi',
|
||||
'Captcha code is wrong' => 'Código captcha erróneo',
|
||||
'Your login details for :site_name has been sent' => 'Sus detalles para iniciar sesión en :site_name han sido enviados',
|
||||
'Your new password for :site_name' => 'Su nueva contraseña para :site_name',
|
||||
'Your login details for :site_name' => 'Sus detalles para iniciar sesión en :site_name',
|
||||
'About Me' => 'Acerca de mí',
|
||||
'Profile' => 'Perfil',
|
||||
'You are banned for 10 minutes. Try again later' => 'Has sido baneado por 10 minutos. Intentalo nuevamente más tarde',
|
||||
'You are banned for 10 minutes. Try again later' => 'Ha sido baneado por 10 minutos. Inténtelo nuevamente más tarde',
|
||||
'Cancel' => 'Cancelar',
|
||||
)
|
||||
);
|
||||
|
67
plugins/box/users/languages/ka-ge.lang.php
Normal file
67
plugins/box/users/languages/ka-ge.lang.php
Normal file
@@ -0,0 +1,67 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'users' => array(
|
||||
'Users' => 'მომხმარებლები',
|
||||
'Login' => 'შესვლა',
|
||||
'Password' => 'პაროლი',
|
||||
'Email' => 'ელ-ფოსტა',
|
||||
'Registered' => 'დარეგისტრირებული',
|
||||
'Role' => 'როლი',
|
||||
'Roles' => 'როლები',
|
||||
'Actions' => 'მოქმედება',
|
||||
'Edit' => 'რედაქტირება',
|
||||
'Delete' => 'წაშლა',
|
||||
'Log In' => 'შესვლა',
|
||||
'Log Out' => 'გომოსვლა',
|
||||
'Register New User' => 'ახალი მომხმარებლის რეგისტრაცია',
|
||||
'New User Registration' => 'ახალი მომხმარებლის რეგისტრაცია',
|
||||
'Delete user: :user' => 'მომხმარებლის წაშლა: :user',
|
||||
'User <i>:user</i> have been deleted.' => 'მომხმარებელი <i>:user</i> წაშლილია.',
|
||||
'This user already exists' => 'ეს მომხმარებელი უკვე არსებობს',
|
||||
'This email already exists' => 'ეს ელ-ფოსტა უკვე არსებობს',
|
||||
'Changes saved' => 'ცვლილებები შენახულია',
|
||||
'Wrong old password' => 'არასწორი ძველი პაროლი',
|
||||
'Admin' => 'ადმინისტრატორი',
|
||||
'User' => 'მომხმარებელი',
|
||||
'Editor' => 'რედაქტორი',
|
||||
'Register' => 'რეგისტრაცია',
|
||||
'Edit profile' => 'მომხმარებლის პროფილის რედაქტირება',
|
||||
'Save' => 'შენახვა',
|
||||
'Firstname' => 'სახელი',
|
||||
'Lastname' => 'გვარი',
|
||||
'Old password' => 'ძველი პაროლი',
|
||||
'New password' => 'ახალი პაროლი',
|
||||
'Welcome' => 'მოგესალმებით',
|
||||
'Wrong <b>username</b> or <b>password</b>' => 'არასწორი <b>ლოგინი</b> ან <b>პაროლი</b>',
|
||||
'Your changes have been saved.' => 'თქვენი ცვლილებები შენახულია.',
|
||||
'New user have been registered.' => 'ახლი მომხმარებელი დარეგისტრირდა.',
|
||||
'Captcha' => 'Captcha',
|
||||
'Registration' => 'რეგისტრაცია',
|
||||
'Username' => 'მომხმარებლის სახელი',
|
||||
'User email is invalid' => 'ელ-ფოსტა არასწორია',
|
||||
'Reset Password' => 'პაროლის რესეტი',
|
||||
'Send New Password' => 'პაროლის გაგზავნა',
|
||||
'Users - Profile' => 'მომხმარებლები - პროფილი',
|
||||
'Users - Edit Profile' => 'მომხმარებლები - პროფილის რედაქტირება',
|
||||
'Users - Log In' => 'მომხმარებლები - შესვლა',
|
||||
'Users - Registration' => 'მომხმარებლები - რეგისტრაცია',
|
||||
'Users - Password Recover' => 'მომხმარებლები - პაროლის აღდგენა',
|
||||
'New Password' => 'ახალი პაროლი',
|
||||
'Forgot your password?' => 'პაროლი დაგავიწყდათ?',
|
||||
'New password has been sent' => 'ახალი პაროლი გაგზავნილია',
|
||||
'Monstra says: This is not your profile...' => 'Monstra ამბობს: ეს არ არის შენი პროფილი...',
|
||||
'User registration is closed.' => 'მომხმარებლების რეგისტრაცია დახურულია.',
|
||||
'Allow user registration' => 'მომხმარებლების რეგისტრაციას ნების მიცემა.',
|
||||
'Required field' => 'აუცილებელი ველი',
|
||||
'This user doesnt exist' => 'ასეთი მომხმარებელი არ არსებობს',
|
||||
'Captcha code is wrong' => 'Captcha-ზე პასუხი არასწორია!',
|
||||
'Your login details for :site_name has been sent' => 'თქვენი მონაცემები :site_name -ის მისაწვდომად გაგზავნილია',
|
||||
'Your new password for :site_name' => 'თქვენი ახალი პაროლი :site_name -თვის',
|
||||
'Your login details for :site_name' => 'თქვენი მონაცემები :site_name -ის მისაწვდომად',
|
||||
'About Me' => 'ჩემს შესახებ',
|
||||
'Profile' => 'პროფილი',
|
||||
'You are banned for 10 minutes. Try again later' => 'თქვენ 10 წუთით ხართ დაბლოკილი. სცადეთ მოგვიანებით',
|
||||
'Cancel' => 'გაუქმება',
|
||||
)
|
||||
);
|
9
plugins/captcha/languages/ka-ge.lang.php
Normal file
9
plugins/captcha/languages/ka-ge.lang.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'captcha' => array(
|
||||
'Captcha' => 'Captcha',
|
||||
'Captcha plugin for Monstra' => 'Captcha პლაგინი Monstra-თვის',
|
||||
'Captcha code is wrong' => 'Captcha-ზე პასუხი არასწორია!',
|
||||
)
|
||||
);
|
@@ -12,17 +12,18 @@
|
||||
*/
|
||||
|
||||
// Register plugin
|
||||
Plugin::register( __FILE__,
|
||||
Plugin::register(__FILE__,
|
||||
__('Markdown'),
|
||||
__('Markdown markup language plugin for Monstra'),
|
||||
__('Markdown markup language plugin for Monstra'),
|
||||
'1.0.0',
|
||||
'Awilum',
|
||||
'Awilum',
|
||||
'http://monstra.org/');
|
||||
|
||||
// Uncomment code below to use Markdown on Site Content
|
||||
Filter::add('content', 'markdown', 1);
|
||||
|
||||
use \Michelf\MarkdownExtra;
|
||||
|
||||
include PLUGINS . '/markdown/php-markdown/Michelf/Markdown.php';
|
||||
include PLUGINS . '/markdown/php-markdown/Michelf/MarkdownExtra.php';
|
||||
|
||||
|
10
plugins/sandbox/languages/ka-ge.lang.php
Normal file
10
plugins/sandbox/languages/ka-ge.lang.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'sandbox' => array(
|
||||
'Sandbox' => 'Sandbox',
|
||||
'Sandbox plugin for Monstra' => 'Sandbox-ის პლაგინი Monstra-თვის',
|
||||
'Sandbox template' => 'Sandbox-ის ნიმუში',
|
||||
'Save' => 'შენახვა',
|
||||
)
|
||||
);
|
BIN
public/assets/img/flags/sr.png
Executable file
BIN
public/assets/img/flags/sr.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 441 B |
Reference in New Issue
Block a user