Version Description
- 11.08.2015 =
- Bugfix : We fixed bug with loading the demo data.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Gallery by BestWebSoft |
Version | 4.3.5 |
Comparing to | |
See all releases |
Code changes from version 4.3.4 to 4.3.5
- gallery-plugin.php +1 -1
- inc/demo-data/demo-data-loader.php +13 -9
- languages/gallery-bg_BG.mo +0 -0
- languages/gallery-bg_BG.po +24 -24
- languages/gallery-cs_CZ.mo +0 -0
- languages/gallery-cs_CZ.po +24 -24
- languages/gallery-de_DE.mo +0 -0
- languages/gallery-de_DE.po +24 -24
- languages/gallery-es_ES.mo +0 -0
- languages/gallery-es_ES.po +24 -24
- languages/gallery-fr_FR.mo +0 -0
- languages/gallery-fr_FR.po +24 -24
- languages/gallery-nl_NL.mo +0 -0
- languages/gallery-nl_NL.po +24 -24
- languages/gallery-pt_BR.mo +0 -0
- languages/gallery-pt_BR.po +24 -24
- languages/gallery-ru_RU.mo +0 -0
- languages/gallery-ru_RU.po +24 -24
- languages/gallery-sk_SK.mo +0 -0
- languages/gallery-sk_SK.po +24 -24
- languages/gallery-sl_SI.mo +0 -0
- languages/gallery-sl_SI.po +24 -24
- languages/gallery-sr_RS.mo +0 -0
- languages/gallery-sr_RS.po +24 -24
- languages/gallery-tr.mo +0 -0
- languages/gallery-tr.po +23 -23
- languages/gallery-uk.mo +0 -0
- languages/gallery-uk.po +24 -24
- languages/gallery-zh_CN.mo +0 -0
- languages/gallery-zh_CN.po +24 -24
- readme.txt +15 -9
gallery-plugin.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Gallery by BestWebSoft
|
|
4 |
Plugin URI: http://bestwebsoft.com/products/
|
5 |
Description: This plugin allows you to implement gallery page into web site.
|
6 |
Author: BestWebSoft
|
7 |
-
Version: 4.3.
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
4 |
Plugin URI: http://bestwebsoft.com/products/
|
5 |
Description: This plugin allows you to implement gallery page into web site.
|
6 |
Author: BestWebSoft
|
7 |
+
Version: 4.3.5
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
inc/demo-data/demo-data-loader.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
/**
|
4 |
* Load demo data
|
5 |
-
* @version 1.0.
|
6 |
*/
|
7 |
|
8 |
/**
|
@@ -12,8 +12,10 @@
|
|
12 |
if ( ! function_exists( 'bws_get_plugin_data' ) ) {
|
13 |
function bws_get_plugin_data() {
|
14 |
global $bws_plugin_text_domain, $bws_plugin_prefix, $bws_plugin_file, $bws_plugin_name;
|
15 |
-
$
|
16 |
-
$
|
|
|
|
|
17 |
switch( $bws_plugin_file ) {
|
18 |
case 'gallery-plugin.php':
|
19 |
$bws_plugin_text_domain = 'gallery';
|
@@ -66,7 +68,7 @@ if ( ! function_exists( 'bws_get_plugin_data' ) ) {
|
|
66 |
if ( ! function_exists ( 'bws_button' ) ) {
|
67 |
function bws_button() {
|
68 |
if ( ! ( is_multisite() && is_network_admin() ) ) {
|
69 |
-
global $bws_plugin_text_domain, $bws_plugin_prefix;
|
70 |
if ( empty( $bws_plugin_prefix ) )
|
71 |
bws_get_plugin_data();
|
72 |
$demo_options = bws_get_demo_option();
|
@@ -80,12 +82,13 @@ plugin settings will be overwritten, however, when you delete the demo data, the
|
|
80 |
$button_title = __( 'Remove Demo Data', $bws_plugin_text_domain );
|
81 |
$form_title = __( 'Delete demo-data and restore old plugin settings.', $bws_plugin_text_domain );
|
82 |
}
|
83 |
-
$
|
|
|
84 |
<form method="post" action="" id="bws_handle_demo_data">
|
85 |
<p><?php echo $form_title; ?></p>
|
86 |
<p>
|
87 |
<button class="button" name="bws_handle_demo" value="<?php echo $value; ?>"><?php echo $button_title; ?></button>
|
88 |
-
<?php wp_nonce_field( $plugin_dir . '/' .
|
89 |
</p>
|
90 |
</form>
|
91 |
<?php }
|
@@ -123,7 +126,6 @@ if ( ! function_exists ( 'bws_demo_confirm' ) ) {
|
|
123 |
|
124 |
if ( ! function_exists( 'bws_handle_demo_data' ) ) {
|
125 |
function bws_handle_demo_data( $callback ) {
|
126 |
-
$plugin_dir = explode( '/', plugin_basename( __FILE__ ) )[0];
|
127 |
if ( isset( $_POST['bws_install_demo_confirm'] ) && check_admin_referer( plugin_basename( __FILE__ ), 'bws_settings_nonce_name' ) )
|
128 |
return bws_install_demo_data();
|
129 |
elseif ( isset( $_POST['bws_remove_demo_confirm'] ) && check_admin_referer( plugin_basename( __FILE__ ), 'bws_settings_nonce_name' ) )
|
@@ -456,7 +458,9 @@ if ( ! function_exists( 'bws_delete_demo_option' ) ) {
|
|
456 |
if ( ! function_exists( 'bws_handle_demo_notice' ) ) {
|
457 |
function bws_handle_demo_notice( $show_demo_notice ) {
|
458 |
if ( 1 == $show_demo_notice ) {
|
459 |
-
global $bws_plugin_text_domain, $bws_plugin_file, $bws_plugin_prefix, $bws_plugin_name, $hook_suffix, $wp_version;
|
|
|
|
|
460 |
if ( empty( $bws_plugin_text_domain ) )
|
461 |
bws_get_plugin_data();
|
462 |
if ( isset( $_POST['bws_hide_demo_notice'] ) ) {
|
@@ -482,7 +486,7 @@ if ( ! function_exists( 'bws_handle_demo_notice' ) ) {
|
|
482 |
width: 100%;
|
483 |
height: 100%;
|
484 |
border: none;
|
485 |
-
background: url("<?php echo plugins_url(
|
486 |
box-shadow: none;
|
487 |
<?php if ( 3.8 <= $wp_version ) { ?>
|
488 |
position: relative;
|
2 |
|
3 |
/**
|
4 |
* Load demo data
|
5 |
+
* @version 1.0.1
|
6 |
*/
|
7 |
|
8 |
/**
|
12 |
if ( ! function_exists( 'bws_get_plugin_data' ) ) {
|
13 |
function bws_get_plugin_data() {
|
14 |
global $bws_plugin_text_domain, $bws_plugin_prefix, $bws_plugin_file, $bws_plugin_name;
|
15 |
+
$plugin_dir_array = explode( '/', plugin_basename( __FILE__ ) );
|
16 |
+
$plugin_dir = $plugin_dir_array[0];
|
17 |
+
$bws_plugin_file_array = array_keys( get_plugins( "/" . $plugin_dir ) );
|
18 |
+
$bws_plugin_file = $bws_plugin_file_array[0];
|
19 |
switch( $bws_plugin_file ) {
|
20 |
case 'gallery-plugin.php':
|
21 |
$bws_plugin_text_domain = 'gallery';
|
68 |
if ( ! function_exists ( 'bws_button' ) ) {
|
69 |
function bws_button() {
|
70 |
if ( ! ( is_multisite() && is_network_admin() ) ) {
|
71 |
+
global $bws_plugin_text_domain, $bws_plugin_prefix, $bws_plugin_file;
|
72 |
if ( empty( $bws_plugin_prefix ) )
|
73 |
bws_get_plugin_data();
|
74 |
$demo_options = bws_get_demo_option();
|
82 |
$button_title = __( 'Remove Demo Data', $bws_plugin_text_domain );
|
83 |
$form_title = __( 'Delete demo-data and restore old plugin settings.', $bws_plugin_text_domain );
|
84 |
}
|
85 |
+
$plugin_dir_array = explode( '/', plugin_basename( __FILE__ ) );
|
86 |
+
$plugin_dir = $plugin_dir_array[0]; ?>
|
87 |
<form method="post" action="" id="bws_handle_demo_data">
|
88 |
<p><?php echo $form_title; ?></p>
|
89 |
<p>
|
90 |
<button class="button" name="bws_handle_demo" value="<?php echo $value; ?>"><?php echo $button_title; ?></button>
|
91 |
+
<?php wp_nonce_field( $plugin_dir . '/' . $bws_plugin_file, 'bws_settings_nonce_name' ); ?>
|
92 |
</p>
|
93 |
</form>
|
94 |
<?php }
|
126 |
|
127 |
if ( ! function_exists( 'bws_handle_demo_data' ) ) {
|
128 |
function bws_handle_demo_data( $callback ) {
|
|
|
129 |
if ( isset( $_POST['bws_install_demo_confirm'] ) && check_admin_referer( plugin_basename( __FILE__ ), 'bws_settings_nonce_name' ) )
|
130 |
return bws_install_demo_data();
|
131 |
elseif ( isset( $_POST['bws_remove_demo_confirm'] ) && check_admin_referer( plugin_basename( __FILE__ ), 'bws_settings_nonce_name' ) )
|
458 |
if ( ! function_exists( 'bws_handle_demo_notice' ) ) {
|
459 |
function bws_handle_demo_notice( $show_demo_notice ) {
|
460 |
if ( 1 == $show_demo_notice ) {
|
461 |
+
global $bws_plugin_text_domain, $bws_plugin_file, $bws_plugin_prefix, $bws_plugin_name, $hook_suffix, $wp_version;
|
462 |
+
$plugin_dir_array = explode( '/', plugin_basename( __FILE__ ) );
|
463 |
+
$plugin_dir = $plugin_dir_array[0];
|
464 |
if ( empty( $bws_plugin_text_domain ) )
|
465 |
bws_get_plugin_data();
|
466 |
if ( isset( $_POST['bws_hide_demo_notice'] ) ) {
|
486 |
width: 100%;
|
487 |
height: 100%;
|
488 |
border: none;
|
489 |
+
background: url("<?php echo plugins_url( $plugin_dir . '/bws_menu/images/close_banner.png' ); ?>") no-repeat center center;
|
490 |
box-shadow: none;
|
491 |
<?php if ( 3.8 <= $wp_version ) { ?>
|
492 |
position: relative;
|
languages/gallery-bg_BG.mo
CHANGED
Binary file
|
languages/gallery-bg_BG.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-08-
|
6 |
-
"PO-Revision-Date: 2015-08-
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Petya <p@pipermagus.com>\n"
|
9 |
"Language: uk_UA\n"
|
@@ -697,12 +697,12 @@ msgstr ""
|
|
697 |
msgid "Gallery Category"
|
698 |
msgstr "Размер на изображението в галерия"
|
699 |
|
700 |
-
#: inc/demo-data/demo-data-loader.php:
|
701 |
#, fuzzy
|
702 |
msgid "Install Demo Data"
|
703 |
msgstr "Установка %"
|
704 |
|
705 |
-
#: inc/demo-data/demo-data-loader.php:
|
706 |
msgid ""
|
707 |
"If you install the demo-data, will be created galleries with images, demo-"
|
708 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
@@ -710,85 +710,85 @@ msgid ""
|
|
710 |
"they will be restored."
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: inc/demo-data/demo-data-loader.php:
|
714 |
msgid "Remove Demo Data"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: inc/demo-data/demo-data-loader.php:
|
718 |
msgid "Delete demo-data and restore old plugin settings."
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: inc/demo-data/demo-data-loader.php:
|
722 |
msgid "Yes, install demo data"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: inc/demo-data/demo-data-loader.php:
|
726 |
msgid "Are you sure you want to install demo data?"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: inc/demo-data/demo-data-loader.php:
|
730 |
msgid "Yes, remove demo data"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: inc/demo-data/demo-data-loader.php:
|
734 |
msgid "Are you sure you want to remove demo data?"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: inc/demo-data/demo-data-loader.php:
|
738 |
#, fuzzy
|
739 |
msgid "No, go back to the settings page"
|
740 |
msgstr "на страницата с настройки за плъгина ("
|
741 |
|
742 |
-
#: inc/demo-data/demo-data-loader.php:
|
743 |
msgid "Can not get demo data."
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: inc/demo-data/demo-data-loader.php:
|
747 |
msgid "Demo options already installed."
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: inc/demo-data/demo-data-loader.php:
|
751 |
msgid "Demo data successfully installed."
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: inc/demo-data/demo-data-loader.php:
|
755 |
msgid "View post with shortcodes"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: inc/demo-data/demo-data-loader.php:
|
759 |
msgid "View page with examples"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: inc/demo-data/demo-data-loader.php:
|
763 |
msgid "Installation of demo data with some errors occurred."
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: inc/demo-data/demo-data-loader.php:
|
767 |
msgid "Posts data is missing."
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: inc/demo-data/demo-data-loader.php:
|
771 |
msgid "Demo data have already been removed."
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: inc/demo-data/demo-data-loader.php:
|
775 |
msgid "Demo data successfully removed."
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: inc/demo-data/demo-data-loader.php:
|
779 |
msgid "Removing demo data with some errors occurred."
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: inc/demo-data/demo-data-loader.php:
|
783 |
msgid "Close notice"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: inc/demo-data/demo-data-loader.php:
|
787 |
#, fuzzy
|
788 |
msgid "Install demo data"
|
789 |
msgstr "Установка %"
|
790 |
|
791 |
-
#: inc/demo-data/demo-data-loader.php:
|
792 |
msgid "for an acquaintance with the possibilities of the"
|
793 |
msgstr ""
|
794 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-08-11 12:12+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-08-11 12:12+0300\n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Petya <p@pipermagus.com>\n"
|
9 |
"Language: uk_UA\n"
|
697 |
msgid "Gallery Category"
|
698 |
msgstr "Размер на изображението в галерия"
|
699 |
|
700 |
+
#: inc/demo-data/demo-data-loader.php:77
|
701 |
#, fuzzy
|
702 |
msgid "Install Demo Data"
|
703 |
msgstr "Установка %"
|
704 |
|
705 |
+
#: inc/demo-data/demo-data-loader.php:78
|
706 |
msgid ""
|
707 |
"If you install the demo-data, will be created galleries with images, demo-"
|
708 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
710 |
"they will be restored."
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: inc/demo-data/demo-data-loader.php:82
|
714 |
msgid "Remove Demo Data"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: inc/demo-data/demo-data-loader.php:83
|
718 |
msgid "Delete demo-data and restore old plugin settings."
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: inc/demo-data/demo-data-loader.php:108
|
722 |
msgid "Yes, install demo data"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: inc/demo-data/demo-data-loader.php:109
|
726 |
msgid "Are you sure you want to install demo data?"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: inc/demo-data/demo-data-loader.php:111
|
730 |
msgid "Yes, remove demo data"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: inc/demo-data/demo-data-loader.php:112
|
734 |
msgid "Are you sure you want to remove demo data?"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: inc/demo-data/demo-data-loader.php:119
|
738 |
#, fuzzy
|
739 |
msgid "No, go back to the settings page"
|
740 |
msgstr "на страницата с настройки за плъгина ("
|
741 |
|
742 |
+
#: inc/demo-data/demo-data-loader.php:167
|
743 |
msgid "Can not get demo data."
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: inc/demo-data/demo-data-loader.php:173
|
747 |
msgid "Demo options already installed."
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: inc/demo-data/demo-data-loader.php:294
|
751 |
msgid "Demo data successfully installed."
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: inc/demo-data/demo-data-loader.php:296
|
755 |
msgid "View post with shortcodes"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: inc/demo-data/demo-data-loader.php:299
|
759 |
msgid "View page with examples"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: inc/demo-data/demo-data-loader.php:303
|
763 |
msgid "Installation of demo data with some errors occurred."
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: inc/demo-data/demo-data-loader.php:306
|
767 |
msgid "Posts data is missing."
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: inc/demo-data/demo-data-loader.php:331
|
771 |
msgid "Demo data have already been removed."
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: inc/demo-data/demo-data-loader.php:378
|
775 |
msgid "Demo data successfully removed."
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: inc/demo-data/demo-data-loader.php:381
|
779 |
msgid "Removing demo data with some errors occurred."
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: inc/demo-data/demo-data-loader.php:510
|
783 |
msgid "Close notice"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: inc/demo-data/demo-data-loader.php:513
|
787 |
#, fuzzy
|
788 |
msgid "Install demo data"
|
789 |
msgstr "Установка %"
|
790 |
|
791 |
+
#: inc/demo-data/demo-data-loader.php:513
|
792 |
msgid "for an acquaintance with the possibilities of the"
|
793 |
msgstr ""
|
794 |
|
languages/gallery-cs_CZ.mo
CHANGED
Binary file
|
languages/gallery-cs_CZ.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-08-
|
6 |
-
"PO-Revision-Date: 2015-08-
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Lagya <lagya@me.com>\n"
|
9 |
"Language: cs\n"
|
@@ -702,12 +702,12 @@ msgstr "Špatná cesta"
|
|
702 |
msgid "Gallery Category"
|
703 |
msgstr "Velikost obrázku v galerii"
|
704 |
|
705 |
-
#: inc/demo-data/demo-data-loader.php:
|
706 |
#, fuzzy
|
707 |
msgid "Install Demo Data"
|
708 |
msgstr "Установка %"
|
709 |
|
710 |
-
#: inc/demo-data/demo-data-loader.php:
|
711 |
msgid ""
|
712 |
"If you install the demo-data, will be created galleries with images, demo-"
|
713 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
@@ -715,85 +715,85 @@ msgid ""
|
|
715 |
"they will be restored."
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: inc/demo-data/demo-data-loader.php:
|
719 |
msgid "Remove Demo Data"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: inc/demo-data/demo-data-loader.php:
|
723 |
msgid "Delete demo-data and restore old plugin settings."
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: inc/demo-data/demo-data-loader.php:
|
727 |
msgid "Yes, install demo data"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: inc/demo-data/demo-data-loader.php:
|
731 |
msgid "Are you sure you want to install demo data?"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: inc/demo-data/demo-data-loader.php:
|
735 |
msgid "Yes, remove demo data"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: inc/demo-data/demo-data-loader.php:
|
739 |
msgid "Are you sure you want to remove demo data?"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: inc/demo-data/demo-data-loader.php:
|
743 |
#, fuzzy
|
744 |
msgid "No, go back to the settings page"
|
745 |
msgstr "na stránce pluginu ("
|
746 |
|
747 |
-
#: inc/demo-data/demo-data-loader.php:
|
748 |
msgid "Can not get demo data."
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: inc/demo-data/demo-data-loader.php:
|
752 |
msgid "Demo options already installed."
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: inc/demo-data/demo-data-loader.php:
|
756 |
msgid "Demo data successfully installed."
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: inc/demo-data/demo-data-loader.php:
|
760 |
msgid "View post with shortcodes"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: inc/demo-data/demo-data-loader.php:
|
764 |
msgid "View page with examples"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: inc/demo-data/demo-data-loader.php:
|
768 |
msgid "Installation of demo data with some errors occurred."
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: inc/demo-data/demo-data-loader.php:
|
772 |
msgid "Posts data is missing."
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: inc/demo-data/demo-data-loader.php:
|
776 |
msgid "Demo data have already been removed."
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: inc/demo-data/demo-data-loader.php:
|
780 |
msgid "Demo data successfully removed."
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: inc/demo-data/demo-data-loader.php:
|
784 |
msgid "Removing demo data with some errors occurred."
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: inc/demo-data/demo-data-loader.php:
|
788 |
msgid "Close notice"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: inc/demo-data/demo-data-loader.php:
|
792 |
#, fuzzy
|
793 |
msgid "Install demo data"
|
794 |
msgstr "Установка %"
|
795 |
|
796 |
-
#: inc/demo-data/demo-data-loader.php:
|
797 |
msgid "for an acquaintance with the possibilities of the"
|
798 |
msgstr ""
|
799 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-08-11 12:12+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-08-11 12:13+0300\n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Lagya <lagya@me.com>\n"
|
9 |
"Language: cs\n"
|
702 |
msgid "Gallery Category"
|
703 |
msgstr "Velikost obrázku v galerii"
|
704 |
|
705 |
+
#: inc/demo-data/demo-data-loader.php:77
|
706 |
#, fuzzy
|
707 |
msgid "Install Demo Data"
|
708 |
msgstr "Установка %"
|
709 |
|
710 |
+
#: inc/demo-data/demo-data-loader.php:78
|
711 |
msgid ""
|
712 |
"If you install the demo-data, will be created galleries with images, demo-"
|
713 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
715 |
"they will be restored."
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: inc/demo-data/demo-data-loader.php:82
|
719 |
msgid "Remove Demo Data"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: inc/demo-data/demo-data-loader.php:83
|
723 |
msgid "Delete demo-data and restore old plugin settings."
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: inc/demo-data/demo-data-loader.php:108
|
727 |
msgid "Yes, install demo data"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: inc/demo-data/demo-data-loader.php:109
|
731 |
msgid "Are you sure you want to install demo data?"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: inc/demo-data/demo-data-loader.php:111
|
735 |
msgid "Yes, remove demo data"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: inc/demo-data/demo-data-loader.php:112
|
739 |
msgid "Are you sure you want to remove demo data?"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: inc/demo-data/demo-data-loader.php:119
|
743 |
#, fuzzy
|
744 |
msgid "No, go back to the settings page"
|
745 |
msgstr "na stránce pluginu ("
|
746 |
|
747 |
+
#: inc/demo-data/demo-data-loader.php:167
|
748 |
msgid "Can not get demo data."
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: inc/demo-data/demo-data-loader.php:173
|
752 |
msgid "Demo options already installed."
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: inc/demo-data/demo-data-loader.php:294
|
756 |
msgid "Demo data successfully installed."
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: inc/demo-data/demo-data-loader.php:296
|
760 |
msgid "View post with shortcodes"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: inc/demo-data/demo-data-loader.php:299
|
764 |
msgid "View page with examples"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: inc/demo-data/demo-data-loader.php:303
|
768 |
msgid "Installation of demo data with some errors occurred."
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: inc/demo-data/demo-data-loader.php:306
|
772 |
msgid "Posts data is missing."
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: inc/demo-data/demo-data-loader.php:331
|
776 |
msgid "Demo data have already been removed."
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: inc/demo-data/demo-data-loader.php:378
|
780 |
msgid "Demo data successfully removed."
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: inc/demo-data/demo-data-loader.php:381
|
784 |
msgid "Removing demo data with some errors occurred."
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: inc/demo-data/demo-data-loader.php:510
|
788 |
msgid "Close notice"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: inc/demo-data/demo-data-loader.php:513
|
792 |
#, fuzzy
|
793 |
msgid "Install demo data"
|
794 |
msgstr "Установка %"
|
795 |
|
796 |
+
#: inc/demo-data/demo-data-loader.php:513
|
797 |
msgid "for an acquaintance with the possibilities of the"
|
798 |
msgstr ""
|
799 |
|
languages/gallery-de_DE.mo
CHANGED
Binary file
|
languages/gallery-de_DE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-08-
|
6 |
-
"PO-Revision-Date: 2015-08-
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Jonas Seemann <info@ahoidesign.de>\n"
|
9 |
"Language: uk_UA\n"
|
@@ -692,12 +692,12 @@ msgstr ""
|
|
692 |
msgid "Gallery Category"
|
693 |
msgstr "Bildgröße für Galerie"
|
694 |
|
695 |
-
#: inc/demo-data/demo-data-loader.php:
|
696 |
#, fuzzy
|
697 |
msgid "Install Demo Data"
|
698 |
msgstr "Installiere %s"
|
699 |
|
700 |
-
#: inc/demo-data/demo-data-loader.php:
|
701 |
msgid ""
|
702 |
"If you install the demo-data, will be created galleries with images, demo-"
|
703 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
@@ -705,85 +705,85 @@ msgid ""
|
|
705 |
"they will be restored."
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: inc/demo-data/demo-data-loader.php:
|
709 |
msgid "Remove Demo Data"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: inc/demo-data/demo-data-loader.php:
|
713 |
msgid "Delete demo-data and restore old plugin settings."
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: inc/demo-data/demo-data-loader.php:
|
717 |
msgid "Yes, install demo data"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: inc/demo-data/demo-data-loader.php:
|
721 |
msgid "Are you sure you want to install demo data?"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: inc/demo-data/demo-data-loader.php:
|
725 |
msgid "Yes, remove demo data"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: inc/demo-data/demo-data-loader.php:
|
729 |
msgid "Are you sure you want to remove demo data?"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: inc/demo-data/demo-data-loader.php:
|
733 |
#, fuzzy
|
734 |
msgid "No, go back to the settings page"
|
735 |
msgstr "auf der Plugin-Optionen-Seite ("
|
736 |
|
737 |
-
#: inc/demo-data/demo-data-loader.php:
|
738 |
msgid "Can not get demo data."
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: inc/demo-data/demo-data-loader.php:
|
742 |
msgid "Demo options already installed."
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: inc/demo-data/demo-data-loader.php:
|
746 |
msgid "Demo data successfully installed."
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: inc/demo-data/demo-data-loader.php:
|
750 |
msgid "View post with shortcodes"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: inc/demo-data/demo-data-loader.php:
|
754 |
msgid "View page with examples"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: inc/demo-data/demo-data-loader.php:
|
758 |
msgid "Installation of demo data with some errors occurred."
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: inc/demo-data/demo-data-loader.php:
|
762 |
msgid "Posts data is missing."
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: inc/demo-data/demo-data-loader.php:
|
766 |
msgid "Demo data have already been removed."
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: inc/demo-data/demo-data-loader.php:
|
770 |
msgid "Demo data successfully removed."
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: inc/demo-data/demo-data-loader.php:
|
774 |
msgid "Removing demo data with some errors occurred."
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: inc/demo-data/demo-data-loader.php:
|
778 |
msgid "Close notice"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: inc/demo-data/demo-data-loader.php:
|
782 |
#, fuzzy
|
783 |
msgid "Install demo data"
|
784 |
msgstr "Installiere %s"
|
785 |
|
786 |
-
#: inc/demo-data/demo-data-loader.php:
|
787 |
msgid "for an acquaintance with the possibilities of the"
|
788 |
msgstr ""
|
789 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-08-11 12:13+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-08-11 12:13+0300\n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Jonas Seemann <info@ahoidesign.de>\n"
|
9 |
"Language: uk_UA\n"
|
692 |
msgid "Gallery Category"
|
693 |
msgstr "Bildgröße für Galerie"
|
694 |
|
695 |
+
#: inc/demo-data/demo-data-loader.php:77
|
696 |
#, fuzzy
|
697 |
msgid "Install Demo Data"
|
698 |
msgstr "Installiere %s"
|
699 |
|
700 |
+
#: inc/demo-data/demo-data-loader.php:78
|
701 |
msgid ""
|
702 |
"If you install the demo-data, will be created galleries with images, demo-"
|
703 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
705 |
"they will be restored."
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: inc/demo-data/demo-data-loader.php:82
|
709 |
msgid "Remove Demo Data"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: inc/demo-data/demo-data-loader.php:83
|
713 |
msgid "Delete demo-data and restore old plugin settings."
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: inc/demo-data/demo-data-loader.php:108
|
717 |
msgid "Yes, install demo data"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: inc/demo-data/demo-data-loader.php:109
|
721 |
msgid "Are you sure you want to install demo data?"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: inc/demo-data/demo-data-loader.php:111
|
725 |
msgid "Yes, remove demo data"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: inc/demo-data/demo-data-loader.php:112
|
729 |
msgid "Are you sure you want to remove demo data?"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: inc/demo-data/demo-data-loader.php:119
|
733 |
#, fuzzy
|
734 |
msgid "No, go back to the settings page"
|
735 |
msgstr "auf der Plugin-Optionen-Seite ("
|
736 |
|
737 |
+
#: inc/demo-data/demo-data-loader.php:167
|
738 |
msgid "Can not get demo data."
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: inc/demo-data/demo-data-loader.php:173
|
742 |
msgid "Demo options already installed."
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: inc/demo-data/demo-data-loader.php:294
|
746 |
msgid "Demo data successfully installed."
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: inc/demo-data/demo-data-loader.php:296
|
750 |
msgid "View post with shortcodes"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: inc/demo-data/demo-data-loader.php:299
|
754 |
msgid "View page with examples"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: inc/demo-data/demo-data-loader.php:303
|
758 |
msgid "Installation of demo data with some errors occurred."
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: inc/demo-data/demo-data-loader.php:306
|
762 |
msgid "Posts data is missing."
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: inc/demo-data/demo-data-loader.php:331
|
766 |
msgid "Demo data have already been removed."
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: inc/demo-data/demo-data-loader.php:378
|
770 |
msgid "Demo data successfully removed."
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: inc/demo-data/demo-data-loader.php:381
|
774 |
msgid "Removing demo data with some errors occurred."
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: inc/demo-data/demo-data-loader.php:510
|
778 |
msgid "Close notice"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: inc/demo-data/demo-data-loader.php:513
|
782 |
#, fuzzy
|
783 |
msgid "Install demo data"
|
784 |
msgstr "Installiere %s"
|
785 |
|
786 |
+
#: inc/demo-data/demo-data-loader.php:513
|
787 |
msgid "for an acquaintance with the possibilities of the"
|
788 |
msgstr ""
|
789 |
|
languages/gallery-es_ES.mo
CHANGED
Binary file
|
languages/gallery-es_ES.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-08-
|
6 |
-
"PO-Revision-Date: 2015-08-
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Carlos Limia <climia@climia.es>\n"
|
9 |
"Language: pt_BR\n"
|
@@ -809,11 +809,11 @@ msgstr "Ruta incorrecta."
|
|
809 |
msgid "Gallery Category"
|
810 |
msgstr "Tamanño de da imagen de la galeria"
|
811 |
|
812 |
-
#: inc/demo-data/demo-data-loader.php:
|
813 |
msgid "Install Demo Data"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: inc/demo-data/demo-data-loader.php:
|
817 |
msgid ""
|
818 |
"If you install the demo-data, will be created galleries with images, demo-"
|
819 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
@@ -821,84 +821,84 @@ msgid ""
|
|
821 |
"they will be restored."
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: inc/demo-data/demo-data-loader.php:
|
825 |
msgid "Remove Demo Data"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: inc/demo-data/demo-data-loader.php:
|
829 |
msgid "Delete demo-data and restore old plugin settings."
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: inc/demo-data/demo-data-loader.php:
|
833 |
msgid "Yes, install demo data"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: inc/demo-data/demo-data-loader.php:
|
837 |
msgid "Are you sure you want to install demo data?"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: inc/demo-data/demo-data-loader.php:
|
841 |
msgid "Yes, remove demo data"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: inc/demo-data/demo-data-loader.php:
|
845 |
msgid "Are you sure you want to remove demo data?"
|
846 |
msgstr ""
|
847 |
|
848 |
# @ gallery
|
849 |
-
#: inc/demo-data/demo-data-loader.php:
|
850 |
#, fuzzy
|
851 |
msgid "No, go back to the settings page"
|
852 |
msgstr "En la pagina de opciones de este plugin ("
|
853 |
|
854 |
-
#: inc/demo-data/demo-data-loader.php:
|
855 |
msgid "Can not get demo data."
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: inc/demo-data/demo-data-loader.php:
|
859 |
msgid "Demo options already installed."
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: inc/demo-data/demo-data-loader.php:
|
863 |
msgid "Demo data successfully installed."
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: inc/demo-data/demo-data-loader.php:
|
867 |
msgid "View post with shortcodes"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: inc/demo-data/demo-data-loader.php:
|
871 |
msgid "View page with examples"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: inc/demo-data/demo-data-loader.php:
|
875 |
msgid "Installation of demo data with some errors occurred."
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: inc/demo-data/demo-data-loader.php:
|
879 |
msgid "Posts data is missing."
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: inc/demo-data/demo-data-loader.php:
|
883 |
msgid "Demo data have already been removed."
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: inc/demo-data/demo-data-loader.php:
|
887 |
msgid "Demo data successfully removed."
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: inc/demo-data/demo-data-loader.php:
|
891 |
msgid "Removing demo data with some errors occurred."
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: inc/demo-data/demo-data-loader.php:
|
895 |
msgid "Close notice"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: inc/demo-data/demo-data-loader.php:
|
899 |
msgid "Install demo data"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: inc/demo-data/demo-data-loader.php:
|
903 |
msgid "for an acquaintance with the possibilities of the"
|
904 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-08-11 12:13+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-08-11 12:13+0300\n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Carlos Limia <climia@climia.es>\n"
|
9 |
"Language: pt_BR\n"
|
809 |
msgid "Gallery Category"
|
810 |
msgstr "Tamanño de da imagen de la galeria"
|
811 |
|
812 |
+
#: inc/demo-data/demo-data-loader.php:77
|
813 |
msgid "Install Demo Data"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: inc/demo-data/demo-data-loader.php:78
|
817 |
msgid ""
|
818 |
"If you install the demo-data, will be created galleries with images, demo-"
|
819 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
821 |
"they will be restored."
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: inc/demo-data/demo-data-loader.php:82
|
825 |
msgid "Remove Demo Data"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: inc/demo-data/demo-data-loader.php:83
|
829 |
msgid "Delete demo-data and restore old plugin settings."
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: inc/demo-data/demo-data-loader.php:108
|
833 |
msgid "Yes, install demo data"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: inc/demo-data/demo-data-loader.php:109
|
837 |
msgid "Are you sure you want to install demo data?"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: inc/demo-data/demo-data-loader.php:111
|
841 |
msgid "Yes, remove demo data"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: inc/demo-data/demo-data-loader.php:112
|
845 |
msgid "Are you sure you want to remove demo data?"
|
846 |
msgstr ""
|
847 |
|
848 |
# @ gallery
|
849 |
+
#: inc/demo-data/demo-data-loader.php:119
|
850 |
#, fuzzy
|
851 |
msgid "No, go back to the settings page"
|
852 |
msgstr "En la pagina de opciones de este plugin ("
|
853 |
|
854 |
+
#: inc/demo-data/demo-data-loader.php:167
|
855 |
msgid "Can not get demo data."
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: inc/demo-data/demo-data-loader.php:173
|
859 |
msgid "Demo options already installed."
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: inc/demo-data/demo-data-loader.php:294
|
863 |
msgid "Demo data successfully installed."
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: inc/demo-data/demo-data-loader.php:296
|
867 |
msgid "View post with shortcodes"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: inc/demo-data/demo-data-loader.php:299
|
871 |
msgid "View page with examples"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: inc/demo-data/demo-data-loader.php:303
|
875 |
msgid "Installation of demo data with some errors occurred."
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: inc/demo-data/demo-data-loader.php:306
|
879 |
msgid "Posts data is missing."
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: inc/demo-data/demo-data-loader.php:331
|
883 |
msgid "Demo data have already been removed."
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: inc/demo-data/demo-data-loader.php:378
|
887 |
msgid "Demo data successfully removed."
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: inc/demo-data/demo-data-loader.php:381
|
891 |
msgid "Removing demo data with some errors occurred."
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: inc/demo-data/demo-data-loader.php:510
|
895 |
msgid "Close notice"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: inc/demo-data/demo-data-loader.php:513
|
899 |
msgid "Install demo data"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: inc/demo-data/demo-data-loader.php:513
|
903 |
msgid "for an acquaintance with the possibilities of the"
|
904 |
msgstr ""
|
languages/gallery-fr_FR.mo
CHANGED
Binary file
|
languages/gallery-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery 4.3.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-08-
|
6 |
-
"PO-Revision-Date: 2015-08-
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Didier, L Capronnier <lcapronnier@yahoo.com>\n"
|
9 |
"Language: fr_FR\n"
|
@@ -699,12 +699,12 @@ msgstr "Chemin invalide"
|
|
699 |
msgid "Gallery Category"
|
700 |
msgstr "Catégories de galeries"
|
701 |
|
702 |
-
#: inc/demo-data/demo-data-loader.php:
|
703 |
#, fuzzy
|
704 |
msgid "Install Demo Data"
|
705 |
msgstr "Installé maintenant"
|
706 |
|
707 |
-
#: inc/demo-data/demo-data-loader.php:
|
708 |
msgid ""
|
709 |
"If you install the demo-data, will be created galleries with images, demo-"
|
710 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
@@ -712,86 +712,86 @@ msgid ""
|
|
712 |
"they will be restored."
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: inc/demo-data/demo-data-loader.php:
|
716 |
msgid "Remove Demo Data"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: inc/demo-data/demo-data-loader.php:
|
720 |
msgid "Delete demo-data and restore old plugin settings."
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: inc/demo-data/demo-data-loader.php:
|
724 |
msgid "Yes, install demo data"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: inc/demo-data/demo-data-loader.php:
|
728 |
msgid "Are you sure you want to install demo data?"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: inc/demo-data/demo-data-loader.php:
|
732 |
msgid "Yes, remove demo data"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: inc/demo-data/demo-data-loader.php:
|
736 |
msgid "Are you sure you want to remove demo data?"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: inc/demo-data/demo-data-loader.php:
|
740 |
#, fuzzy
|
741 |
msgid "No, go back to the settings page"
|
742 |
msgstr "la page des paramètres"
|
743 |
|
744 |
-
#: inc/demo-data/demo-data-loader.php:
|
745 |
msgid "Can not get demo data."
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: inc/demo-data/demo-data-loader.php:
|
749 |
#, fuzzy
|
750 |
msgid "Demo options already installed."
|
751 |
msgstr "Déjà installé"
|
752 |
|
753 |
-
#: inc/demo-data/demo-data-loader.php:
|
754 |
msgid "Demo data successfully installed."
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: inc/demo-data/demo-data-loader.php:
|
758 |
msgid "View post with shortcodes"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: inc/demo-data/demo-data-loader.php:
|
762 |
msgid "View page with examples"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: inc/demo-data/demo-data-loader.php:
|
766 |
msgid "Installation of demo data with some errors occurred."
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: inc/demo-data/demo-data-loader.php:
|
770 |
msgid "Posts data is missing."
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: inc/demo-data/demo-data-loader.php:
|
774 |
msgid "Demo data have already been removed."
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: inc/demo-data/demo-data-loader.php:
|
778 |
msgid "Demo data successfully removed."
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: inc/demo-data/demo-data-loader.php:
|
782 |
msgid "Removing demo data with some errors occurred."
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: inc/demo-data/demo-data-loader.php:
|
786 |
msgid "Close notice"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: inc/demo-data/demo-data-loader.php:
|
790 |
#, fuzzy
|
791 |
msgid "Install demo data"
|
792 |
msgstr "Installé maintenant"
|
793 |
|
794 |
-
#: inc/demo-data/demo-data-loader.php:
|
795 |
msgid "for an acquaintance with the possibilities of the"
|
796 |
msgstr ""
|
797 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery 4.3.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-08-11 12:13+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-08-11 12:13+0300\n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Didier, L Capronnier <lcapronnier@yahoo.com>\n"
|
9 |
"Language: fr_FR\n"
|
699 |
msgid "Gallery Category"
|
700 |
msgstr "Catégories de galeries"
|
701 |
|
702 |
+
#: inc/demo-data/demo-data-loader.php:77
|
703 |
#, fuzzy
|
704 |
msgid "Install Demo Data"
|
705 |
msgstr "Installé maintenant"
|
706 |
|
707 |
+
#: inc/demo-data/demo-data-loader.php:78
|
708 |
msgid ""
|
709 |
"If you install the demo-data, will be created galleries with images, demo-"
|
710 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
712 |
"they will be restored."
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: inc/demo-data/demo-data-loader.php:82
|
716 |
msgid "Remove Demo Data"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: inc/demo-data/demo-data-loader.php:83
|
720 |
msgid "Delete demo-data and restore old plugin settings."
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: inc/demo-data/demo-data-loader.php:108
|
724 |
msgid "Yes, install demo data"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: inc/demo-data/demo-data-loader.php:109
|
728 |
msgid "Are you sure you want to install demo data?"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: inc/demo-data/demo-data-loader.php:111
|
732 |
msgid "Yes, remove demo data"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: inc/demo-data/demo-data-loader.php:112
|
736 |
msgid "Are you sure you want to remove demo data?"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: inc/demo-data/demo-data-loader.php:119
|
740 |
#, fuzzy
|
741 |
msgid "No, go back to the settings page"
|
742 |
msgstr "la page des paramètres"
|
743 |
|
744 |
+
#: inc/demo-data/demo-data-loader.php:167
|
745 |
msgid "Can not get demo data."
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: inc/demo-data/demo-data-loader.php:173
|
749 |
#, fuzzy
|
750 |
msgid "Demo options already installed."
|
751 |
msgstr "Déjà installé"
|
752 |
|
753 |
+
#: inc/demo-data/demo-data-loader.php:294
|
754 |
msgid "Demo data successfully installed."
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: inc/demo-data/demo-data-loader.php:296
|
758 |
msgid "View post with shortcodes"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: inc/demo-data/demo-data-loader.php:299
|
762 |
msgid "View page with examples"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: inc/demo-data/demo-data-loader.php:303
|
766 |
msgid "Installation of demo data with some errors occurred."
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: inc/demo-data/demo-data-loader.php:306
|
770 |
msgid "Posts data is missing."
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: inc/demo-data/demo-data-loader.php:331
|
774 |
msgid "Demo data have already been removed."
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: inc/demo-data/demo-data-loader.php:378
|
778 |
msgid "Demo data successfully removed."
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: inc/demo-data/demo-data-loader.php:381
|
782 |
msgid "Removing demo data with some errors occurred."
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: inc/demo-data/demo-data-loader.php:510
|
786 |
msgid "Close notice"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: inc/demo-data/demo-data-loader.php:513
|
790 |
#, fuzzy
|
791 |
msgid "Install demo data"
|
792 |
msgstr "Installé maintenant"
|
793 |
|
794 |
+
#: inc/demo-data/demo-data-loader.php:513
|
795 |
msgid "for an acquaintance with the possibilities of the"
|
796 |
msgstr ""
|
797 |
|
languages/gallery-nl_NL.mo
CHANGED
Binary file
|
languages/gallery-nl_NL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-08-
|
6 |
-
"PO-Revision-Date: 2015-08-
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: J Goessens <j.goessens@gmail.com>\n"
|
9 |
"Language: nl_NL\n"
|
@@ -698,12 +698,12 @@ msgstr "Ongeldig pad"
|
|
698 |
msgid "Gallery Category"
|
699 |
msgstr "Afmeting galerij foto"
|
700 |
|
701 |
-
#: inc/demo-data/demo-data-loader.php:
|
702 |
#, fuzzy
|
703 |
msgid "Install Demo Data"
|
704 |
msgstr "Установка %"
|
705 |
|
706 |
-
#: inc/demo-data/demo-data-loader.php:
|
707 |
msgid ""
|
708 |
"If you install the demo-data, will be created galleries with images, demo-"
|
709 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
@@ -711,85 +711,85 @@ msgid ""
|
|
711 |
"they will be restored."
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: inc/demo-data/demo-data-loader.php:
|
715 |
msgid "Remove Demo Data"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: inc/demo-data/demo-data-loader.php:
|
719 |
msgid "Delete demo-data and restore old plugin settings."
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: inc/demo-data/demo-data-loader.php:
|
723 |
msgid "Yes, install demo data"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: inc/demo-data/demo-data-loader.php:
|
727 |
msgid "Are you sure you want to install demo data?"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: inc/demo-data/demo-data-loader.php:
|
731 |
msgid "Yes, remove demo data"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: inc/demo-data/demo-data-loader.php:
|
735 |
msgid "Are you sure you want to remove demo data?"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: inc/demo-data/demo-data-loader.php:
|
739 |
#, fuzzy
|
740 |
msgid "No, go back to the settings page"
|
741 |
msgstr "op de plugin instellingen pagina ("
|
742 |
|
743 |
-
#: inc/demo-data/demo-data-loader.php:
|
744 |
msgid "Can not get demo data."
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: inc/demo-data/demo-data-loader.php:
|
748 |
msgid "Demo options already installed."
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: inc/demo-data/demo-data-loader.php:
|
752 |
msgid "Demo data successfully installed."
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: inc/demo-data/demo-data-loader.php:
|
756 |
msgid "View post with shortcodes"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: inc/demo-data/demo-data-loader.php:
|
760 |
msgid "View page with examples"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: inc/demo-data/demo-data-loader.php:
|
764 |
msgid "Installation of demo data with some errors occurred."
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: inc/demo-data/demo-data-loader.php:
|
768 |
msgid "Posts data is missing."
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: inc/demo-data/demo-data-loader.php:
|
772 |
msgid "Demo data have already been removed."
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: inc/demo-data/demo-data-loader.php:
|
776 |
msgid "Demo data successfully removed."
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: inc/demo-data/demo-data-loader.php:
|
780 |
msgid "Removing demo data with some errors occurred."
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: inc/demo-data/demo-data-loader.php:
|
784 |
msgid "Close notice"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: inc/demo-data/demo-data-loader.php:
|
788 |
#, fuzzy
|
789 |
msgid "Install demo data"
|
790 |
msgstr "Установка %"
|
791 |
|
792 |
-
#: inc/demo-data/demo-data-loader.php:
|
793 |
msgid "for an acquaintance with the possibilities of the"
|
794 |
msgstr ""
|
795 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-08-11 12:13+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-08-11 12:13+0300\n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: J Goessens <j.goessens@gmail.com>\n"
|
9 |
"Language: nl_NL\n"
|
698 |
msgid "Gallery Category"
|
699 |
msgstr "Afmeting galerij foto"
|
700 |
|
701 |
+
#: inc/demo-data/demo-data-loader.php:77
|
702 |
#, fuzzy
|
703 |
msgid "Install Demo Data"
|
704 |
msgstr "Установка %"
|
705 |
|
706 |
+
#: inc/demo-data/demo-data-loader.php:78
|
707 |
msgid ""
|
708 |
"If you install the demo-data, will be created galleries with images, demo-"
|
709 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
711 |
"they will be restored."
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: inc/demo-data/demo-data-loader.php:82
|
715 |
msgid "Remove Demo Data"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: inc/demo-data/demo-data-loader.php:83
|
719 |
msgid "Delete demo-data and restore old plugin settings."
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: inc/demo-data/demo-data-loader.php:108
|
723 |
msgid "Yes, install demo data"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: inc/demo-data/demo-data-loader.php:109
|
727 |
msgid "Are you sure you want to install demo data?"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: inc/demo-data/demo-data-loader.php:111
|
731 |
msgid "Yes, remove demo data"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: inc/demo-data/demo-data-loader.php:112
|
735 |
msgid "Are you sure you want to remove demo data?"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: inc/demo-data/demo-data-loader.php:119
|
739 |
#, fuzzy
|
740 |
msgid "No, go back to the settings page"
|
741 |
msgstr "op de plugin instellingen pagina ("
|
742 |
|
743 |
+
#: inc/demo-data/demo-data-loader.php:167
|
744 |
msgid "Can not get demo data."
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: inc/demo-data/demo-data-loader.php:173
|
748 |
msgid "Demo options already installed."
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: inc/demo-data/demo-data-loader.php:294
|
752 |
msgid "Demo data successfully installed."
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: inc/demo-data/demo-data-loader.php:296
|
756 |
msgid "View post with shortcodes"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: inc/demo-data/demo-data-loader.php:299
|
760 |
msgid "View page with examples"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: inc/demo-data/demo-data-loader.php:303
|
764 |
msgid "Installation of demo data with some errors occurred."
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: inc/demo-data/demo-data-loader.php:306
|
768 |
msgid "Posts data is missing."
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: inc/demo-data/demo-data-loader.php:331
|
772 |
msgid "Demo data have already been removed."
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: inc/demo-data/demo-data-loader.php:378
|
776 |
msgid "Demo data successfully removed."
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: inc/demo-data/demo-data-loader.php:381
|
780 |
msgid "Removing demo data with some errors occurred."
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: inc/demo-data/demo-data-loader.php:510
|
784 |
msgid "Close notice"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: inc/demo-data/demo-data-loader.php:513
|
788 |
#, fuzzy
|
789 |
msgid "Install demo data"
|
790 |
msgstr "Установка %"
|
791 |
|
792 |
+
#: inc/demo-data/demo-data-loader.php:513
|
793 |
msgid "for an acquaintance with the possibilities of the"
|
794 |
msgstr ""
|
795 |
|
languages/gallery-pt_BR.mo
CHANGED
Binary file
|
languages/gallery-pt_BR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-08-
|
6 |
-
"PO-Revision-Date: 2015-08-
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: DJIO | Dionizio Bonfim Bach <wordpress@djio.com.br>\n"
|
9 |
"Language: pt_BR\n"
|
@@ -803,11 +803,11 @@ msgstr ""
|
|
803 |
msgid "Gallery Category"
|
804 |
msgstr "Tamanho da imagem da galeria"
|
805 |
|
806 |
-
#: inc/demo-data/demo-data-loader.php:
|
807 |
msgid "Install Demo Data"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: inc/demo-data/demo-data-loader.php:
|
811 |
msgid ""
|
812 |
"If you install the demo-data, will be created galleries with images, demo-"
|
813 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
@@ -815,84 +815,84 @@ msgid ""
|
|
815 |
"they will be restored."
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: inc/demo-data/demo-data-loader.php:
|
819 |
msgid "Remove Demo Data"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: inc/demo-data/demo-data-loader.php:
|
823 |
msgid "Delete demo-data and restore old plugin settings."
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: inc/demo-data/demo-data-loader.php:
|
827 |
msgid "Yes, install demo data"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: inc/demo-data/demo-data-loader.php:
|
831 |
msgid "Are you sure you want to install demo data?"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: inc/demo-data/demo-data-loader.php:
|
835 |
msgid "Yes, remove demo data"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: inc/demo-data/demo-data-loader.php:
|
839 |
msgid "Are you sure you want to remove demo data?"
|
840 |
msgstr ""
|
841 |
|
842 |
# @ gallery
|
843 |
-
#: inc/demo-data/demo-data-loader.php:
|
844 |
#, fuzzy
|
845 |
msgid "No, go back to the settings page"
|
846 |
msgstr "da página de configurações do plugin ("
|
847 |
|
848 |
-
#: inc/demo-data/demo-data-loader.php:
|
849 |
msgid "Can not get demo data."
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: inc/demo-data/demo-data-loader.php:
|
853 |
msgid "Demo options already installed."
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: inc/demo-data/demo-data-loader.php:
|
857 |
msgid "Demo data successfully installed."
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: inc/demo-data/demo-data-loader.php:
|
861 |
msgid "View post with shortcodes"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: inc/demo-data/demo-data-loader.php:
|
865 |
msgid "View page with examples"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: inc/demo-data/demo-data-loader.php:
|
869 |
msgid "Installation of demo data with some errors occurred."
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: inc/demo-data/demo-data-loader.php:
|
873 |
msgid "Posts data is missing."
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: inc/demo-data/demo-data-loader.php:
|
877 |
msgid "Demo data have already been removed."
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: inc/demo-data/demo-data-loader.php:
|
881 |
msgid "Demo data successfully removed."
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: inc/demo-data/demo-data-loader.php:
|
885 |
msgid "Removing demo data with some errors occurred."
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: inc/demo-data/demo-data-loader.php:
|
889 |
msgid "Close notice"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: inc/demo-data/demo-data-loader.php:
|
893 |
msgid "Install demo data"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: inc/demo-data/demo-data-loader.php:
|
897 |
msgid "for an acquaintance with the possibilities of the"
|
898 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-08-11 12:13+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-08-11 12:13+0300\n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: DJIO | Dionizio Bonfim Bach <wordpress@djio.com.br>\n"
|
9 |
"Language: pt_BR\n"
|
803 |
msgid "Gallery Category"
|
804 |
msgstr "Tamanho da imagem da galeria"
|
805 |
|
806 |
+
#: inc/demo-data/demo-data-loader.php:77
|
807 |
msgid "Install Demo Data"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: inc/demo-data/demo-data-loader.php:78
|
811 |
msgid ""
|
812 |
"If you install the demo-data, will be created galleries with images, demo-"
|
813 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
815 |
"they will be restored."
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: inc/demo-data/demo-data-loader.php:82
|
819 |
msgid "Remove Demo Data"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: inc/demo-data/demo-data-loader.php:83
|
823 |
msgid "Delete demo-data and restore old plugin settings."
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: inc/demo-data/demo-data-loader.php:108
|
827 |
msgid "Yes, install demo data"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: inc/demo-data/demo-data-loader.php:109
|
831 |
msgid "Are you sure you want to install demo data?"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: inc/demo-data/demo-data-loader.php:111
|
835 |
msgid "Yes, remove demo data"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: inc/demo-data/demo-data-loader.php:112
|
839 |
msgid "Are you sure you want to remove demo data?"
|
840 |
msgstr ""
|
841 |
|
842 |
# @ gallery
|
843 |
+
#: inc/demo-data/demo-data-loader.php:119
|
844 |
#, fuzzy
|
845 |
msgid "No, go back to the settings page"
|
846 |
msgstr "da página de configurações do plugin ("
|
847 |
|
848 |
+
#: inc/demo-data/demo-data-loader.php:167
|
849 |
msgid "Can not get demo data."
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: inc/demo-data/demo-data-loader.php:173
|
853 |
msgid "Demo options already installed."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: inc/demo-data/demo-data-loader.php:294
|
857 |
msgid "Demo data successfully installed."
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: inc/demo-data/demo-data-loader.php:296
|
861 |
msgid "View post with shortcodes"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: inc/demo-data/demo-data-loader.php:299
|
865 |
msgid "View page with examples"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: inc/demo-data/demo-data-loader.php:303
|
869 |
msgid "Installation of demo data with some errors occurred."
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: inc/demo-data/demo-data-loader.php:306
|
873 |
msgid "Posts data is missing."
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: inc/demo-data/demo-data-loader.php:331
|
877 |
msgid "Demo data have already been removed."
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: inc/demo-data/demo-data-loader.php:378
|
881 |
msgid "Demo data successfully removed."
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: inc/demo-data/demo-data-loader.php:381
|
885 |
msgid "Removing demo data with some errors occurred."
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: inc/demo-data/demo-data-loader.php:510
|
889 |
msgid "Close notice"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: inc/demo-data/demo-data-loader.php:513
|
893 |
msgid "Install demo data"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: inc/demo-data/demo-data-loader.php:513
|
897 |
msgid "for an acquaintance with the possibilities of the"
|
898 |
msgstr ""
|
languages/gallery-ru_RU.mo
CHANGED
Binary file
|
languages/gallery-ru_RU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-08-
|
6 |
-
"PO-Revision-Date: 2015-08-
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -696,11 +696,11 @@ msgstr "Путь к изображению для редактирования
|
|
696 |
msgid "Gallery Category"
|
697 |
msgstr "Категория галерей"
|
698 |
|
699 |
-
#: inc/demo-data/demo-data-loader.php:
|
700 |
msgid "Install Demo Data"
|
701 |
msgstr "Установить демо-данные"
|
702 |
|
703 |
-
#: inc/demo-data/demo-data-loader.php:
|
704 |
msgid ""
|
705 |
"If you install the demo-data, will be created galleries with images, demo-"
|
706 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
@@ -712,83 +712,83 @@ msgstr ""
|
|
712 |
"будут перезаписаны, однако, при удалении демо-данных, они будут "
|
713 |
"восстановлены."
|
714 |
|
715 |
-
#: inc/demo-data/demo-data-loader.php:
|
716 |
msgid "Remove Demo Data"
|
717 |
msgstr "Удалить демо-данные"
|
718 |
|
719 |
-
#: inc/demo-data/demo-data-loader.php:
|
720 |
msgid "Delete demo-data and restore old plugin settings."
|
721 |
msgstr "Удалить демо-данные и восстановить старые настройки плагина. "
|
722 |
|
723 |
-
#: inc/demo-data/demo-data-loader.php:
|
724 |
msgid "Yes, install demo data"
|
725 |
msgstr "Да, установить демо-данные"
|
726 |
|
727 |
-
#: inc/demo-data/demo-data-loader.php:
|
728 |
msgid "Are you sure you want to install demo data?"
|
729 |
msgstr "Вы уверены, что хотите установить демо-данные?"
|
730 |
|
731 |
-
#: inc/demo-data/demo-data-loader.php:
|
732 |
msgid "Yes, remove demo data"
|
733 |
msgstr "Да, удалить демо-данные"
|
734 |
|
735 |
-
#: inc/demo-data/demo-data-loader.php:
|
736 |
msgid "Are you sure you want to remove demo data?"
|
737 |
msgstr "Вы уверены, что хотите удалить демо-данные?"
|
738 |
|
739 |
-
#: inc/demo-data/demo-data-loader.php:
|
740 |
msgid "No, go back to the settings page"
|
741 |
msgstr "Нет, вернуться на страницу настроек"
|
742 |
|
743 |
-
#: inc/demo-data/demo-data-loader.php:
|
744 |
msgid "Can not get demo data."
|
745 |
msgstr "Невозможно получить демо-данные."
|
746 |
|
747 |
-
#: inc/demo-data/demo-data-loader.php:
|
748 |
msgid "Demo options already installed."
|
749 |
msgstr "Настройки демо уже установлены."
|
750 |
|
751 |
-
#: inc/demo-data/demo-data-loader.php:
|
752 |
msgid "Demo data successfully installed."
|
753 |
msgstr "Демо-данные успешно установлены."
|
754 |
|
755 |
-
#: inc/demo-data/demo-data-loader.php:
|
756 |
msgid "View post with shortcodes"
|
757 |
msgstr "Просмотрите запись с шорткодами"
|
758 |
|
759 |
-
#: inc/demo-data/demo-data-loader.php:
|
760 |
msgid "View page with examples"
|
761 |
msgstr "Просмотрите запись с примерами"
|
762 |
|
763 |
-
#: inc/demo-data/demo-data-loader.php:
|
764 |
msgid "Installation of demo data with some errors occurred."
|
765 |
msgstr "Установка демо-данных прошла с ошибками."
|
766 |
|
767 |
-
#: inc/demo-data/demo-data-loader.php:
|
768 |
msgid "Posts data is missing."
|
769 |
msgstr "Контент записи отсутствует."
|
770 |
|
771 |
-
#: inc/demo-data/demo-data-loader.php:
|
772 |
msgid "Demo data have already been removed."
|
773 |
msgstr "Демо-данные уже кдалены."
|
774 |
|
775 |
-
#: inc/demo-data/demo-data-loader.php:
|
776 |
msgid "Demo data successfully removed."
|
777 |
msgstr "Демо-данные успешно удалены."
|
778 |
|
779 |
-
#: inc/demo-data/demo-data-loader.php:
|
780 |
msgid "Removing demo data with some errors occurred."
|
781 |
msgstr "Удаление демо-данных прошло с ошибками."
|
782 |
|
783 |
-
#: inc/demo-data/demo-data-loader.php:
|
784 |
msgid "Close notice"
|
785 |
msgstr "Закрыть сообщение"
|
786 |
|
787 |
-
#: inc/demo-data/demo-data-loader.php:
|
788 |
msgid "Install demo data"
|
789 |
msgstr "Установить демо-данные"
|
790 |
|
791 |
-
#: inc/demo-data/demo-data-loader.php:
|
792 |
msgid "for an acquaintance with the possibilities of the"
|
793 |
msgstr "для ознакомления с возможностями плагина"
|
794 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-08-11 12:13+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-08-11 12:13+0300\n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
696 |
msgid "Gallery Category"
|
697 |
msgstr "Категория галерей"
|
698 |
|
699 |
+
#: inc/demo-data/demo-data-loader.php:77
|
700 |
msgid "Install Demo Data"
|
701 |
msgstr "Установить демо-данные"
|
702 |
|
703 |
+
#: inc/demo-data/demo-data-loader.php:78
|
704 |
msgid ""
|
705 |
"If you install the demo-data, will be created galleries with images, demo-"
|
706 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
712 |
"будут перезаписаны, однако, при удалении демо-данных, они будут "
|
713 |
"восстановлены."
|
714 |
|
715 |
+
#: inc/demo-data/demo-data-loader.php:82
|
716 |
msgid "Remove Demo Data"
|
717 |
msgstr "Удалить демо-данные"
|
718 |
|
719 |
+
#: inc/demo-data/demo-data-loader.php:83
|
720 |
msgid "Delete demo-data and restore old plugin settings."
|
721 |
msgstr "Удалить демо-данные и восстановить старые настройки плагина. "
|
722 |
|
723 |
+
#: inc/demo-data/demo-data-loader.php:108
|
724 |
msgid "Yes, install demo data"
|
725 |
msgstr "Да, установить демо-данные"
|
726 |
|
727 |
+
#: inc/demo-data/demo-data-loader.php:109
|
728 |
msgid "Are you sure you want to install demo data?"
|
729 |
msgstr "Вы уверены, что хотите установить демо-данные?"
|
730 |
|
731 |
+
#: inc/demo-data/demo-data-loader.php:111
|
732 |
msgid "Yes, remove demo data"
|
733 |
msgstr "Да, удалить демо-данные"
|
734 |
|
735 |
+
#: inc/demo-data/demo-data-loader.php:112
|
736 |
msgid "Are you sure you want to remove demo data?"
|
737 |
msgstr "Вы уверены, что хотите удалить демо-данные?"
|
738 |
|
739 |
+
#: inc/demo-data/demo-data-loader.php:119
|
740 |
msgid "No, go back to the settings page"
|
741 |
msgstr "Нет, вернуться на страницу настроек"
|
742 |
|
743 |
+
#: inc/demo-data/demo-data-loader.php:167
|
744 |
msgid "Can not get demo data."
|
745 |
msgstr "Невозможно получить демо-данные."
|
746 |
|
747 |
+
#: inc/demo-data/demo-data-loader.php:173
|
748 |
msgid "Demo options already installed."
|
749 |
msgstr "Настройки демо уже установлены."
|
750 |
|
751 |
+
#: inc/demo-data/demo-data-loader.php:294
|
752 |
msgid "Demo data successfully installed."
|
753 |
msgstr "Демо-данные успешно установлены."
|
754 |
|
755 |
+
#: inc/demo-data/demo-data-loader.php:296
|
756 |
msgid "View post with shortcodes"
|
757 |
msgstr "Просмотрите запись с шорткодами"
|
758 |
|
759 |
+
#: inc/demo-data/demo-data-loader.php:299
|
760 |
msgid "View page with examples"
|
761 |
msgstr "Просмотрите запись с примерами"
|
762 |
|
763 |
+
#: inc/demo-data/demo-data-loader.php:303
|
764 |
msgid "Installation of demo data with some errors occurred."
|
765 |
msgstr "Установка демо-данных прошла с ошибками."
|
766 |
|
767 |
+
#: inc/demo-data/demo-data-loader.php:306
|
768 |
msgid "Posts data is missing."
|
769 |
msgstr "Контент записи отсутствует."
|
770 |
|
771 |
+
#: inc/demo-data/demo-data-loader.php:331
|
772 |
msgid "Demo data have already been removed."
|
773 |
msgstr "Демо-данные уже кдалены."
|
774 |
|
775 |
+
#: inc/demo-data/demo-data-loader.php:378
|
776 |
msgid "Demo data successfully removed."
|
777 |
msgstr "Демо-данные успешно удалены."
|
778 |
|
779 |
+
#: inc/demo-data/demo-data-loader.php:381
|
780 |
msgid "Removing demo data with some errors occurred."
|
781 |
msgstr "Удаление демо-данных прошло с ошибками."
|
782 |
|
783 |
+
#: inc/demo-data/demo-data-loader.php:510
|
784 |
msgid "Close notice"
|
785 |
msgstr "Закрыть сообщение"
|
786 |
|
787 |
+
#: inc/demo-data/demo-data-loader.php:513
|
788 |
msgid "Install demo data"
|
789 |
msgstr "Установить демо-данные"
|
790 |
|
791 |
+
#: inc/demo-data/demo-data-loader.php:513
|
792 |
msgid "for an acquaintance with the possibilities of the"
|
793 |
msgstr "для ознакомления с возможностями плагина"
|
794 |
|
languages/gallery-sk_SK.mo
CHANGED
Binary file
|
languages/gallery-sk_SK.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-08-
|
6 |
-
"PO-Revision-Date: 2015-08-
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Michal Králik <ja@michalkralik.sk>\n"
|
9 |
"Language: sk_SK\n"
|
@@ -698,12 +698,12 @@ msgstr "Neplatná cesta"
|
|
698 |
msgid "Gallery Category"
|
699 |
msgstr "Veľkosť obrázka galérie"
|
700 |
|
701 |
-
#: inc/demo-data/demo-data-loader.php:
|
702 |
#, fuzzy
|
703 |
msgid "Install Demo Data"
|
704 |
msgstr "Inštalovať %s"
|
705 |
|
706 |
-
#: inc/demo-data/demo-data-loader.php:
|
707 |
msgid ""
|
708 |
"If you install the demo-data, will be created galleries with images, demo-"
|
709 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
@@ -711,85 +711,85 @@ msgid ""
|
|
711 |
"they will be restored."
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: inc/demo-data/demo-data-loader.php:
|
715 |
msgid "Remove Demo Data"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: inc/demo-data/demo-data-loader.php:
|
719 |
msgid "Delete demo-data and restore old plugin settings."
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: inc/demo-data/demo-data-loader.php:
|
723 |
msgid "Yes, install demo data"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: inc/demo-data/demo-data-loader.php:
|
727 |
msgid "Are you sure you want to install demo data?"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: inc/demo-data/demo-data-loader.php:
|
731 |
msgid "Yes, remove demo data"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: inc/demo-data/demo-data-loader.php:
|
735 |
msgid "Are you sure you want to remove demo data?"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: inc/demo-data/demo-data-loader.php:
|
739 |
#, fuzzy
|
740 |
msgid "No, go back to the settings page"
|
741 |
msgstr "na strane nastavení ("
|
742 |
|
743 |
-
#: inc/demo-data/demo-data-loader.php:
|
744 |
msgid "Can not get demo data."
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: inc/demo-data/demo-data-loader.php:
|
748 |
msgid "Demo options already installed."
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: inc/demo-data/demo-data-loader.php:
|
752 |
msgid "Demo data successfully installed."
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: inc/demo-data/demo-data-loader.php:
|
756 |
msgid "View post with shortcodes"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: inc/demo-data/demo-data-loader.php:
|
760 |
msgid "View page with examples"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: inc/demo-data/demo-data-loader.php:
|
764 |
msgid "Installation of demo data with some errors occurred."
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: inc/demo-data/demo-data-loader.php:
|
768 |
msgid "Posts data is missing."
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: inc/demo-data/demo-data-loader.php:
|
772 |
msgid "Demo data have already been removed."
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: inc/demo-data/demo-data-loader.php:
|
776 |
msgid "Demo data successfully removed."
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: inc/demo-data/demo-data-loader.php:
|
780 |
msgid "Removing demo data with some errors occurred."
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: inc/demo-data/demo-data-loader.php:
|
784 |
msgid "Close notice"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: inc/demo-data/demo-data-loader.php:
|
788 |
#, fuzzy
|
789 |
msgid "Install demo data"
|
790 |
msgstr "Inštalovať %s"
|
791 |
|
792 |
-
#: inc/demo-data/demo-data-loader.php:
|
793 |
msgid "for an acquaintance with the possibilities of the"
|
794 |
msgstr ""
|
795 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-08-11 12:13+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-08-11 12:13+0300\n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Michal Králik <ja@michalkralik.sk>\n"
|
9 |
"Language: sk_SK\n"
|
698 |
msgid "Gallery Category"
|
699 |
msgstr "Veľkosť obrázka galérie"
|
700 |
|
701 |
+
#: inc/demo-data/demo-data-loader.php:77
|
702 |
#, fuzzy
|
703 |
msgid "Install Demo Data"
|
704 |
msgstr "Inštalovať %s"
|
705 |
|
706 |
+
#: inc/demo-data/demo-data-loader.php:78
|
707 |
msgid ""
|
708 |
"If you install the demo-data, will be created galleries with images, demo-"
|
709 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
711 |
"they will be restored."
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: inc/demo-data/demo-data-loader.php:82
|
715 |
msgid "Remove Demo Data"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: inc/demo-data/demo-data-loader.php:83
|
719 |
msgid "Delete demo-data and restore old plugin settings."
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: inc/demo-data/demo-data-loader.php:108
|
723 |
msgid "Yes, install demo data"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: inc/demo-data/demo-data-loader.php:109
|
727 |
msgid "Are you sure you want to install demo data?"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: inc/demo-data/demo-data-loader.php:111
|
731 |
msgid "Yes, remove demo data"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: inc/demo-data/demo-data-loader.php:112
|
735 |
msgid "Are you sure you want to remove demo data?"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: inc/demo-data/demo-data-loader.php:119
|
739 |
#, fuzzy
|
740 |
msgid "No, go back to the settings page"
|
741 |
msgstr "na strane nastavení ("
|
742 |
|
743 |
+
#: inc/demo-data/demo-data-loader.php:167
|
744 |
msgid "Can not get demo data."
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: inc/demo-data/demo-data-loader.php:173
|
748 |
msgid "Demo options already installed."
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: inc/demo-data/demo-data-loader.php:294
|
752 |
msgid "Demo data successfully installed."
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: inc/demo-data/demo-data-loader.php:296
|
756 |
msgid "View post with shortcodes"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: inc/demo-data/demo-data-loader.php:299
|
760 |
msgid "View page with examples"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: inc/demo-data/demo-data-loader.php:303
|
764 |
msgid "Installation of demo data with some errors occurred."
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: inc/demo-data/demo-data-loader.php:306
|
768 |
msgid "Posts data is missing."
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: inc/demo-data/demo-data-loader.php:331
|
772 |
msgid "Demo data have already been removed."
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: inc/demo-data/demo-data-loader.php:378
|
776 |
msgid "Demo data successfully removed."
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: inc/demo-data/demo-data-loader.php:381
|
780 |
msgid "Removing demo data with some errors occurred."
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: inc/demo-data/demo-data-loader.php:510
|
784 |
msgid "Close notice"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: inc/demo-data/demo-data-loader.php:513
|
788 |
#, fuzzy
|
789 |
msgid "Install demo data"
|
790 |
msgstr "Inštalovať %s"
|
791 |
|
792 |
+
#: inc/demo-data/demo-data-loader.php:513
|
793 |
msgid "for an acquaintance with the possibilities of the"
|
794 |
msgstr ""
|
795 |
|
languages/gallery-sl_SI.mo
CHANGED
Binary file
|
languages/gallery-sl_SI.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-08-
|
6 |
-
"PO-Revision-Date: 2015-08-
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Tilen <tilen@divided.si>\n"
|
9 |
"Language: sl_SI\n"
|
@@ -693,12 +693,12 @@ msgstr "Napačna pot"
|
|
693 |
msgid "Gallery Category"
|
694 |
msgstr "Velikost slike v galeriji"
|
695 |
|
696 |
-
#: inc/demo-data/demo-data-loader.php:
|
697 |
#, fuzzy
|
698 |
msgid "Install Demo Data"
|
699 |
msgstr "Instalacija %s"
|
700 |
|
701 |
-
#: inc/demo-data/demo-data-loader.php:
|
702 |
msgid ""
|
703 |
"If you install the demo-data, will be created galleries with images, demo-"
|
704 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
@@ -706,85 +706,85 @@ msgid ""
|
|
706 |
"they will be restored."
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: inc/demo-data/demo-data-loader.php:
|
710 |
msgid "Remove Demo Data"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: inc/demo-data/demo-data-loader.php:
|
714 |
msgid "Delete demo-data and restore old plugin settings."
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: inc/demo-data/demo-data-loader.php:
|
718 |
msgid "Yes, install demo data"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: inc/demo-data/demo-data-loader.php:
|
722 |
msgid "Are you sure you want to install demo data?"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: inc/demo-data/demo-data-loader.php:
|
726 |
msgid "Yes, remove demo data"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: inc/demo-data/demo-data-loader.php:
|
730 |
msgid "Are you sure you want to remove demo data?"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: inc/demo-data/demo-data-loader.php:
|
734 |
#, fuzzy
|
735 |
msgid "No, go back to the settings page"
|
736 |
msgstr "na strani za nastavitve vtičnikov ("
|
737 |
|
738 |
-
#: inc/demo-data/demo-data-loader.php:
|
739 |
msgid "Can not get demo data."
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: inc/demo-data/demo-data-loader.php:
|
743 |
msgid "Demo options already installed."
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: inc/demo-data/demo-data-loader.php:
|
747 |
msgid "Demo data successfully installed."
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: inc/demo-data/demo-data-loader.php:
|
751 |
msgid "View post with shortcodes"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: inc/demo-data/demo-data-loader.php:
|
755 |
msgid "View page with examples"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: inc/demo-data/demo-data-loader.php:
|
759 |
msgid "Installation of demo data with some errors occurred."
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: inc/demo-data/demo-data-loader.php:
|
763 |
msgid "Posts data is missing."
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: inc/demo-data/demo-data-loader.php:
|
767 |
msgid "Demo data have already been removed."
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: inc/demo-data/demo-data-loader.php:
|
771 |
msgid "Demo data successfully removed."
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: inc/demo-data/demo-data-loader.php:
|
775 |
msgid "Removing demo data with some errors occurred."
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: inc/demo-data/demo-data-loader.php:
|
779 |
msgid "Close notice"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: inc/demo-data/demo-data-loader.php:
|
783 |
#, fuzzy
|
784 |
msgid "Install demo data"
|
785 |
msgstr "Instalacija %s"
|
786 |
|
787 |
-
#: inc/demo-data/demo-data-loader.php:
|
788 |
msgid "for an acquaintance with the possibilities of the"
|
789 |
msgstr ""
|
790 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-08-11 12:13+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-08-11 12:13+0300\n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Tilen <tilen@divided.si>\n"
|
9 |
"Language: sl_SI\n"
|
693 |
msgid "Gallery Category"
|
694 |
msgstr "Velikost slike v galeriji"
|
695 |
|
696 |
+
#: inc/demo-data/demo-data-loader.php:77
|
697 |
#, fuzzy
|
698 |
msgid "Install Demo Data"
|
699 |
msgstr "Instalacija %s"
|
700 |
|
701 |
+
#: inc/demo-data/demo-data-loader.php:78
|
702 |
msgid ""
|
703 |
"If you install the demo-data, will be created galleries with images, demo-"
|
704 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
706 |
"they will be restored."
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: inc/demo-data/demo-data-loader.php:82
|
710 |
msgid "Remove Demo Data"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: inc/demo-data/demo-data-loader.php:83
|
714 |
msgid "Delete demo-data and restore old plugin settings."
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: inc/demo-data/demo-data-loader.php:108
|
718 |
msgid "Yes, install demo data"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: inc/demo-data/demo-data-loader.php:109
|
722 |
msgid "Are you sure you want to install demo data?"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: inc/demo-data/demo-data-loader.php:111
|
726 |
msgid "Yes, remove demo data"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: inc/demo-data/demo-data-loader.php:112
|
730 |
msgid "Are you sure you want to remove demo data?"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: inc/demo-data/demo-data-loader.php:119
|
734 |
#, fuzzy
|
735 |
msgid "No, go back to the settings page"
|
736 |
msgstr "na strani za nastavitve vtičnikov ("
|
737 |
|
738 |
+
#: inc/demo-data/demo-data-loader.php:167
|
739 |
msgid "Can not get demo data."
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: inc/demo-data/demo-data-loader.php:173
|
743 |
msgid "Demo options already installed."
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: inc/demo-data/demo-data-loader.php:294
|
747 |
msgid "Demo data successfully installed."
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: inc/demo-data/demo-data-loader.php:296
|
751 |
msgid "View post with shortcodes"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: inc/demo-data/demo-data-loader.php:299
|
755 |
msgid "View page with examples"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: inc/demo-data/demo-data-loader.php:303
|
759 |
msgid "Installation of demo data with some errors occurred."
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: inc/demo-data/demo-data-loader.php:306
|
763 |
msgid "Posts data is missing."
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: inc/demo-data/demo-data-loader.php:331
|
767 |
msgid "Demo data have already been removed."
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: inc/demo-data/demo-data-loader.php:378
|
771 |
msgid "Demo data successfully removed."
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: inc/demo-data/demo-data-loader.php:381
|
775 |
msgid "Removing demo data with some errors occurred."
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: inc/demo-data/demo-data-loader.php:510
|
779 |
msgid "Close notice"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: inc/demo-data/demo-data-loader.php:513
|
783 |
#, fuzzy
|
784 |
msgid "Install demo data"
|
785 |
msgstr "Instalacija %s"
|
786 |
|
787 |
+
#: inc/demo-data/demo-data-loader.php:513
|
788 |
msgid "for an acquaintance with the possibilities of the"
|
789 |
msgstr ""
|
790 |
|
languages/gallery-sr_RS.mo
CHANGED
Binary file
|
languages/gallery-sr_RS.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-08-
|
6 |
-
"PO-Revision-Date: 2015-08-
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Radovan Georgijevic, Andrijana Nikolic <http://www."
|
9 |
"georgijevic.info, andrijanan@webhostinggeeks.com>\n"
|
@@ -706,12 +706,12 @@ msgstr ""
|
|
706 |
msgid "Gallery Category"
|
707 |
msgstr "Veličina slika u galeriji"
|
708 |
|
709 |
-
#: inc/demo-data/demo-data-loader.php:
|
710 |
#, fuzzy
|
711 |
msgid "Install Demo Data"
|
712 |
msgstr "Instalacija %s"
|
713 |
|
714 |
-
#: inc/demo-data/demo-data-loader.php:
|
715 |
msgid ""
|
716 |
"If you install the demo-data, will be created galleries with images, demo-"
|
717 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
@@ -719,85 +719,85 @@ msgid ""
|
|
719 |
"they will be restored."
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: inc/demo-data/demo-data-loader.php:
|
723 |
msgid "Remove Demo Data"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: inc/demo-data/demo-data-loader.php:
|
727 |
msgid "Delete demo-data and restore old plugin settings."
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: inc/demo-data/demo-data-loader.php:
|
731 |
msgid "Yes, install demo data"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: inc/demo-data/demo-data-loader.php:
|
735 |
msgid "Are you sure you want to install demo data?"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: inc/demo-data/demo-data-loader.php:
|
739 |
msgid "Yes, remove demo data"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: inc/demo-data/demo-data-loader.php:
|
743 |
msgid "Are you sure you want to remove demo data?"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: inc/demo-data/demo-data-loader.php:
|
747 |
#, fuzzy
|
748 |
msgid "No, go back to the settings page"
|
749 |
msgstr "na stranici za podešavanje modula ("
|
750 |
|
751 |
-
#: inc/demo-data/demo-data-loader.php:
|
752 |
msgid "Can not get demo data."
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: inc/demo-data/demo-data-loader.php:
|
756 |
msgid "Demo options already installed."
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: inc/demo-data/demo-data-loader.php:
|
760 |
msgid "Demo data successfully installed."
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: inc/demo-data/demo-data-loader.php:
|
764 |
msgid "View post with shortcodes"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: inc/demo-data/demo-data-loader.php:
|
768 |
msgid "View page with examples"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: inc/demo-data/demo-data-loader.php:
|
772 |
msgid "Installation of demo data with some errors occurred."
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: inc/demo-data/demo-data-loader.php:
|
776 |
msgid "Posts data is missing."
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: inc/demo-data/demo-data-loader.php:
|
780 |
msgid "Demo data have already been removed."
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: inc/demo-data/demo-data-loader.php:
|
784 |
msgid "Demo data successfully removed."
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: inc/demo-data/demo-data-loader.php:
|
788 |
msgid "Removing demo data with some errors occurred."
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: inc/demo-data/demo-data-loader.php:
|
792 |
msgid "Close notice"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: inc/demo-data/demo-data-loader.php:
|
796 |
#, fuzzy
|
797 |
msgid "Install demo data"
|
798 |
msgstr "Instalacija %s"
|
799 |
|
800 |
-
#: inc/demo-data/demo-data-loader.php:
|
801 |
msgid "for an acquaintance with the possibilities of the"
|
802 |
msgstr ""
|
803 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-08-11 12:13+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-08-11 12:13+0300\n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Radovan Georgijevic, Andrijana Nikolic <http://www."
|
9 |
"georgijevic.info, andrijanan@webhostinggeeks.com>\n"
|
706 |
msgid "Gallery Category"
|
707 |
msgstr "Veličina slika u galeriji"
|
708 |
|
709 |
+
#: inc/demo-data/demo-data-loader.php:77
|
710 |
#, fuzzy
|
711 |
msgid "Install Demo Data"
|
712 |
msgstr "Instalacija %s"
|
713 |
|
714 |
+
#: inc/demo-data/demo-data-loader.php:78
|
715 |
msgid ""
|
716 |
"If you install the demo-data, will be created galleries with images, demo-"
|
717 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
719 |
"they will be restored."
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: inc/demo-data/demo-data-loader.php:82
|
723 |
msgid "Remove Demo Data"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: inc/demo-data/demo-data-loader.php:83
|
727 |
msgid "Delete demo-data and restore old plugin settings."
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: inc/demo-data/demo-data-loader.php:108
|
731 |
msgid "Yes, install demo data"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: inc/demo-data/demo-data-loader.php:109
|
735 |
msgid "Are you sure you want to install demo data?"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: inc/demo-data/demo-data-loader.php:111
|
739 |
msgid "Yes, remove demo data"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: inc/demo-data/demo-data-loader.php:112
|
743 |
msgid "Are you sure you want to remove demo data?"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: inc/demo-data/demo-data-loader.php:119
|
747 |
#, fuzzy
|
748 |
msgid "No, go back to the settings page"
|
749 |
msgstr "na stranici za podešavanje modula ("
|
750 |
|
751 |
+
#: inc/demo-data/demo-data-loader.php:167
|
752 |
msgid "Can not get demo data."
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: inc/demo-data/demo-data-loader.php:173
|
756 |
msgid "Demo options already installed."
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: inc/demo-data/demo-data-loader.php:294
|
760 |
msgid "Demo data successfully installed."
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: inc/demo-data/demo-data-loader.php:296
|
764 |
msgid "View post with shortcodes"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: inc/demo-data/demo-data-loader.php:299
|
768 |
msgid "View page with examples"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: inc/demo-data/demo-data-loader.php:303
|
772 |
msgid "Installation of demo data with some errors occurred."
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: inc/demo-data/demo-data-loader.php:306
|
776 |
msgid "Posts data is missing."
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: inc/demo-data/demo-data-loader.php:331
|
780 |
msgid "Demo data have already been removed."
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: inc/demo-data/demo-data-loader.php:378
|
784 |
msgid "Demo data successfully removed."
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: inc/demo-data/demo-data-loader.php:381
|
788 |
msgid "Removing demo data with some errors occurred."
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: inc/demo-data/demo-data-loader.php:510
|
792 |
msgid "Close notice"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: inc/demo-data/demo-data-loader.php:513
|
796 |
#, fuzzy
|
797 |
msgid "Install demo data"
|
798 |
msgstr "Instalacija %s"
|
799 |
|
800 |
+
#: inc/demo-data/demo-data-loader.php:513
|
801 |
msgid "for an acquaintance with the possibilities of the"
|
802 |
msgstr ""
|
803 |
|
languages/gallery-tr.mo
CHANGED
Binary file
|
languages/gallery-tr.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-08-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ismail Demirbilek <ce.demirbilek@gmail.com>\n"
|
@@ -695,12 +695,12 @@ msgstr ""
|
|
695 |
msgid "Gallery Category"
|
696 |
msgstr "Galeri resim boyutu"
|
697 |
|
698 |
-
#: inc/demo-data/demo-data-loader.php:
|
699 |
#, fuzzy
|
700 |
msgid "Install Demo Data"
|
701 |
msgstr "%s yükle"
|
702 |
|
703 |
-
#: inc/demo-data/demo-data-loader.php:
|
704 |
msgid ""
|
705 |
"If you install the demo-data, will be created galleries with images, demo-"
|
706 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
@@ -708,85 +708,85 @@ msgid ""
|
|
708 |
"they will be restored."
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: inc/demo-data/demo-data-loader.php:
|
712 |
msgid "Remove Demo Data"
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: inc/demo-data/demo-data-loader.php:
|
716 |
msgid "Delete demo-data and restore old plugin settings."
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: inc/demo-data/demo-data-loader.php:
|
720 |
msgid "Yes, install demo data"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: inc/demo-data/demo-data-loader.php:
|
724 |
msgid "Are you sure you want to install demo data?"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: inc/demo-data/demo-data-loader.php:
|
728 |
msgid "Yes, remove demo data"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: inc/demo-data/demo-data-loader.php:
|
732 |
msgid "Are you sure you want to remove demo data?"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: inc/demo-data/demo-data-loader.php:
|
736 |
#, fuzzy
|
737 |
msgid "No, go back to the settings page"
|
738 |
msgstr "Eklenti ayarları: ("
|
739 |
|
740 |
-
#: inc/demo-data/demo-data-loader.php:
|
741 |
msgid "Can not get demo data."
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: inc/demo-data/demo-data-loader.php:
|
745 |
msgid "Demo options already installed."
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: inc/demo-data/demo-data-loader.php:
|
749 |
msgid "Demo data successfully installed."
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: inc/demo-data/demo-data-loader.php:
|
753 |
msgid "View post with shortcodes"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: inc/demo-data/demo-data-loader.php:
|
757 |
msgid "View page with examples"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: inc/demo-data/demo-data-loader.php:
|
761 |
msgid "Installation of demo data with some errors occurred."
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: inc/demo-data/demo-data-loader.php:
|
765 |
msgid "Posts data is missing."
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: inc/demo-data/demo-data-loader.php:
|
769 |
msgid "Demo data have already been removed."
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: inc/demo-data/demo-data-loader.php:
|
773 |
msgid "Demo data successfully removed."
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: inc/demo-data/demo-data-loader.php:
|
777 |
msgid "Removing demo data with some errors occurred."
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: inc/demo-data/demo-data-loader.php:
|
781 |
msgid "Close notice"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: inc/demo-data/demo-data-loader.php:
|
785 |
#, fuzzy
|
786 |
msgid "Install demo data"
|
787 |
msgstr "%s yükle"
|
788 |
|
789 |
-
#: inc/demo-data/demo-data-loader.php:
|
790 |
msgid "for an acquaintance with the possibilities of the"
|
791 |
msgstr ""
|
792 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-08-11 12:13+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ismail Demirbilek <ce.demirbilek@gmail.com>\n"
|
695 |
msgid "Gallery Category"
|
696 |
msgstr "Galeri resim boyutu"
|
697 |
|
698 |
+
#: inc/demo-data/demo-data-loader.php:77
|
699 |
#, fuzzy
|
700 |
msgid "Install Demo Data"
|
701 |
msgstr "%s yükle"
|
702 |
|
703 |
+
#: inc/demo-data/demo-data-loader.php:78
|
704 |
msgid ""
|
705 |
"If you install the demo-data, will be created galleries with images, demo-"
|
706 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
708 |
"they will be restored."
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: inc/demo-data/demo-data-loader.php:82
|
712 |
msgid "Remove Demo Data"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: inc/demo-data/demo-data-loader.php:83
|
716 |
msgid "Delete demo-data and restore old plugin settings."
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: inc/demo-data/demo-data-loader.php:108
|
720 |
msgid "Yes, install demo data"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: inc/demo-data/demo-data-loader.php:109
|
724 |
msgid "Are you sure you want to install demo data?"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: inc/demo-data/demo-data-loader.php:111
|
728 |
msgid "Yes, remove demo data"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: inc/demo-data/demo-data-loader.php:112
|
732 |
msgid "Are you sure you want to remove demo data?"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: inc/demo-data/demo-data-loader.php:119
|
736 |
#, fuzzy
|
737 |
msgid "No, go back to the settings page"
|
738 |
msgstr "Eklenti ayarları: ("
|
739 |
|
740 |
+
#: inc/demo-data/demo-data-loader.php:167
|
741 |
msgid "Can not get demo data."
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: inc/demo-data/demo-data-loader.php:173
|
745 |
msgid "Demo options already installed."
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: inc/demo-data/demo-data-loader.php:294
|
749 |
msgid "Demo data successfully installed."
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: inc/demo-data/demo-data-loader.php:296
|
753 |
msgid "View post with shortcodes"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: inc/demo-data/demo-data-loader.php:299
|
757 |
msgid "View page with examples"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: inc/demo-data/demo-data-loader.php:303
|
761 |
msgid "Installation of demo data with some errors occurred."
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: inc/demo-data/demo-data-loader.php:306
|
765 |
msgid "Posts data is missing."
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: inc/demo-data/demo-data-loader.php:331
|
769 |
msgid "Demo data have already been removed."
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: inc/demo-data/demo-data-loader.php:378
|
773 |
msgid "Demo data successfully removed."
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: inc/demo-data/demo-data-loader.php:381
|
777 |
msgid "Removing demo data with some errors occurred."
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: inc/demo-data/demo-data-loader.php:510
|
781 |
msgid "Close notice"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: inc/demo-data/demo-data-loader.php:513
|
785 |
#, fuzzy
|
786 |
msgid "Install demo data"
|
787 |
msgstr "%s yükle"
|
788 |
|
789 |
+
#: inc/demo-data/demo-data-loader.php:513
|
790 |
msgid "for an acquaintance with the possibilities of the"
|
791 |
msgstr ""
|
792 |
|
languages/gallery-uk.mo
CHANGED
Binary file
|
languages/gallery-uk.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-08-
|
6 |
-
"PO-Revision-Date: 2015-08-
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
|
9 |
"Language: uk_UA\n"
|
@@ -699,11 +699,11 @@ msgstr "Невірний шлях"
|
|
699 |
msgid "Gallery Category"
|
700 |
msgstr "Категорія галерей"
|
701 |
|
702 |
-
#: inc/demo-data/demo-data-loader.php:
|
703 |
msgid "Install Demo Data"
|
704 |
msgstr "Встановити демо-дані"
|
705 |
|
706 |
-
#: inc/demo-data/demo-data-loader.php:
|
707 |
msgid ""
|
708 |
"If you install the demo-data, will be created galleries with images, demo-"
|
709 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
@@ -715,83 +715,83 @@ msgstr ""
|
|
715 |
"плагіну були перезаписані, але, під час видалення демо-даних, вони будуть "
|
716 |
"відновлені."
|
717 |
|
718 |
-
#: inc/demo-data/demo-data-loader.php:
|
719 |
msgid "Remove Demo Data"
|
720 |
msgstr "Вилалити демо-дані"
|
721 |
|
722 |
-
#: inc/demo-data/demo-data-loader.php:
|
723 |
msgid "Delete demo-data and restore old plugin settings."
|
724 |
msgstr "Видалити демо-дані та відновити старі налаштування плагіну."
|
725 |
|
726 |
-
#: inc/demo-data/demo-data-loader.php:
|
727 |
msgid "Yes, install demo data"
|
728 |
msgstr "Так, встановити демо-дані"
|
729 |
|
730 |
-
#: inc/demo-data/demo-data-loader.php:
|
731 |
msgid "Are you sure you want to install demo data?"
|
732 |
msgstr "Ві впевнені, що бажаєте встановити демо-дані?"
|
733 |
|
734 |
-
#: inc/demo-data/demo-data-loader.php:
|
735 |
msgid "Yes, remove demo data"
|
736 |
msgstr "Так, видалити демо-дані"
|
737 |
|
738 |
-
#: inc/demo-data/demo-data-loader.php:
|
739 |
msgid "Are you sure you want to remove demo data?"
|
740 |
msgstr "Ви впевнені, що бажаєте видалити демо-дані?"
|
741 |
|
742 |
-
#: inc/demo-data/demo-data-loader.php:
|
743 |
msgid "No, go back to the settings page"
|
744 |
msgstr "Ні, повернутися на сторінку налаштувань"
|
745 |
|
746 |
-
#: inc/demo-data/demo-data-loader.php:
|
747 |
msgid "Can not get demo data."
|
748 |
msgstr "Неможливо отримати демо-дані."
|
749 |
|
750 |
-
#: inc/demo-data/demo-data-loader.php:
|
751 |
msgid "Demo options already installed."
|
752 |
msgstr "Демо-дані вже встановлені."
|
753 |
|
754 |
-
#: inc/demo-data/demo-data-loader.php:
|
755 |
msgid "Demo data successfully installed."
|
756 |
msgstr "Вемо-дані успішно встановлені."
|
757 |
|
758 |
-
#: inc/demo-data/demo-data-loader.php:
|
759 |
msgid "View post with shortcodes"
|
760 |
msgstr "Перегляньте запис із шорткодами "
|
761 |
|
762 |
-
#: inc/demo-data/demo-data-loader.php:
|
763 |
msgid "View page with examples"
|
764 |
msgstr "Перегляньте сторінку із прикладами"
|
765 |
|
766 |
-
#: inc/demo-data/demo-data-loader.php:
|
767 |
msgid "Installation of demo data with some errors occurred."
|
768 |
msgstr "Установка демо-даних пройшла з помилками."
|
769 |
|
770 |
-
#: inc/demo-data/demo-data-loader.php:
|
771 |
msgid "Posts data is missing."
|
772 |
msgstr "Контент запису відсутній."
|
773 |
|
774 |
-
#: inc/demo-data/demo-data-loader.php:
|
775 |
msgid "Demo data have already been removed."
|
776 |
msgstr "Демо-дані вже видалені. "
|
777 |
|
778 |
-
#: inc/demo-data/demo-data-loader.php:
|
779 |
msgid "Demo data successfully removed."
|
780 |
msgstr "Демо-дані успішно видалені."
|
781 |
|
782 |
-
#: inc/demo-data/demo-data-loader.php:
|
783 |
msgid "Removing demo data with some errors occurred."
|
784 |
msgstr "Видаленні демо-данних пройшло з помилками."
|
785 |
|
786 |
-
#: inc/demo-data/demo-data-loader.php:
|
787 |
msgid "Close notice"
|
788 |
msgstr "Закрити повідомлення"
|
789 |
|
790 |
-
#: inc/demo-data/demo-data-loader.php:
|
791 |
msgid "Install demo data"
|
792 |
msgstr "Встановити демо-дані"
|
793 |
|
794 |
-
#: inc/demo-data/demo-data-loader.php:
|
795 |
msgid "for an acquaintance with the possibilities of the"
|
796 |
msgstr "для ознайомлення із можливостями плагіну"
|
797 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-08-11 12:13+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-08-11 12:13+0300\n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
|
9 |
"Language: uk_UA\n"
|
699 |
msgid "Gallery Category"
|
700 |
msgstr "Категорія галерей"
|
701 |
|
702 |
+
#: inc/demo-data/demo-data-loader.php:77
|
703 |
msgid "Install Demo Data"
|
704 |
msgstr "Встановити демо-дані"
|
705 |
|
706 |
+
#: inc/demo-data/demo-data-loader.php:78
|
707 |
msgid ""
|
708 |
"If you install the demo-data, will be created galleries with images, demo-"
|
709 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
715 |
"плагіну були перезаписані, але, під час видалення демо-даних, вони будуть "
|
716 |
"відновлені."
|
717 |
|
718 |
+
#: inc/demo-data/demo-data-loader.php:82
|
719 |
msgid "Remove Demo Data"
|
720 |
msgstr "Вилалити демо-дані"
|
721 |
|
722 |
+
#: inc/demo-data/demo-data-loader.php:83
|
723 |
msgid "Delete demo-data and restore old plugin settings."
|
724 |
msgstr "Видалити демо-дані та відновити старі налаштування плагіну."
|
725 |
|
726 |
+
#: inc/demo-data/demo-data-loader.php:108
|
727 |
msgid "Yes, install demo data"
|
728 |
msgstr "Так, встановити демо-дані"
|
729 |
|
730 |
+
#: inc/demo-data/demo-data-loader.php:109
|
731 |
msgid "Are you sure you want to install demo data?"
|
732 |
msgstr "Ві впевнені, що бажаєте встановити демо-дані?"
|
733 |
|
734 |
+
#: inc/demo-data/demo-data-loader.php:111
|
735 |
msgid "Yes, remove demo data"
|
736 |
msgstr "Так, видалити демо-дані"
|
737 |
|
738 |
+
#: inc/demo-data/demo-data-loader.php:112
|
739 |
msgid "Are you sure you want to remove demo data?"
|
740 |
msgstr "Ви впевнені, що бажаєте видалити демо-дані?"
|
741 |
|
742 |
+
#: inc/demo-data/demo-data-loader.php:119
|
743 |
msgid "No, go back to the settings page"
|
744 |
msgstr "Ні, повернутися на сторінку налаштувань"
|
745 |
|
746 |
+
#: inc/demo-data/demo-data-loader.php:167
|
747 |
msgid "Can not get demo data."
|
748 |
msgstr "Неможливо отримати демо-дані."
|
749 |
|
750 |
+
#: inc/demo-data/demo-data-loader.php:173
|
751 |
msgid "Demo options already installed."
|
752 |
msgstr "Демо-дані вже встановлені."
|
753 |
|
754 |
+
#: inc/demo-data/demo-data-loader.php:294
|
755 |
msgid "Demo data successfully installed."
|
756 |
msgstr "Вемо-дані успішно встановлені."
|
757 |
|
758 |
+
#: inc/demo-data/demo-data-loader.php:296
|
759 |
msgid "View post with shortcodes"
|
760 |
msgstr "Перегляньте запис із шорткодами "
|
761 |
|
762 |
+
#: inc/demo-data/demo-data-loader.php:299
|
763 |
msgid "View page with examples"
|
764 |
msgstr "Перегляньте сторінку із прикладами"
|
765 |
|
766 |
+
#: inc/demo-data/demo-data-loader.php:303
|
767 |
msgid "Installation of demo data with some errors occurred."
|
768 |
msgstr "Установка демо-даних пройшла з помилками."
|
769 |
|
770 |
+
#: inc/demo-data/demo-data-loader.php:306
|
771 |
msgid "Posts data is missing."
|
772 |
msgstr "Контент запису відсутній."
|
773 |
|
774 |
+
#: inc/demo-data/demo-data-loader.php:331
|
775 |
msgid "Demo data have already been removed."
|
776 |
msgstr "Демо-дані вже видалені. "
|
777 |
|
778 |
+
#: inc/demo-data/demo-data-loader.php:378
|
779 |
msgid "Demo data successfully removed."
|
780 |
msgstr "Демо-дані успішно видалені."
|
781 |
|
782 |
+
#: inc/demo-data/demo-data-loader.php:381
|
783 |
msgid "Removing demo data with some errors occurred."
|
784 |
msgstr "Видаленні демо-данних пройшло з помилками."
|
785 |
|
786 |
+
#: inc/demo-data/demo-data-loader.php:510
|
787 |
msgid "Close notice"
|
788 |
msgstr "Закрити повідомлення"
|
789 |
|
790 |
+
#: inc/demo-data/demo-data-loader.php:513
|
791 |
msgid "Install demo data"
|
792 |
msgstr "Встановити демо-дані"
|
793 |
|
794 |
+
#: inc/demo-data/demo-data-loader.php:513
|
795 |
msgid "for an acquaintance with the possibilities of the"
|
796 |
msgstr "для ознайомлення із можливостями плагіну"
|
797 |
|
languages/gallery-zh_CN.mo
CHANGED
Binary file
|
languages/gallery-zh_CN.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-08-
|
6 |
-
"PO-Revision-Date: 2015-08-
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Xiaobo Chen <mibcxb@gmail.com>\n"
|
9 |
"Language: zh_CN\n"
|
@@ -678,12 +678,12 @@ msgstr "无效的路径"
|
|
678 |
msgid "Gallery Category"
|
679 |
msgstr "画廊中影像的尺寸"
|
680 |
|
681 |
-
#: inc/demo-data/demo-data-loader.php:
|
682 |
#, fuzzy
|
683 |
msgid "Install Demo Data"
|
684 |
msgstr "安装 %s"
|
685 |
|
686 |
-
#: inc/demo-data/demo-data-loader.php:
|
687 |
msgid ""
|
688 |
"If you install the demo-data, will be created galleries with images, demo-"
|
689 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
@@ -691,85 +691,85 @@ msgid ""
|
|
691 |
"they will be restored."
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: inc/demo-data/demo-data-loader.php:
|
695 |
msgid "Remove Demo Data"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: inc/demo-data/demo-data-loader.php:
|
699 |
msgid "Delete demo-data and restore old plugin settings."
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: inc/demo-data/demo-data-loader.php:
|
703 |
msgid "Yes, install demo data"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: inc/demo-data/demo-data-loader.php:
|
707 |
msgid "Are you sure you want to install demo data?"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: inc/demo-data/demo-data-loader.php:
|
711 |
msgid "Yes, remove demo data"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: inc/demo-data/demo-data-loader.php:
|
715 |
msgid "Are you sure you want to remove demo data?"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: inc/demo-data/demo-data-loader.php:
|
719 |
#, fuzzy
|
720 |
msgid "No, go back to the settings page"
|
721 |
msgstr "在插件的设置页面("
|
722 |
|
723 |
-
#: inc/demo-data/demo-data-loader.php:
|
724 |
msgid "Can not get demo data."
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: inc/demo-data/demo-data-loader.php:
|
728 |
msgid "Demo options already installed."
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: inc/demo-data/demo-data-loader.php:
|
732 |
msgid "Demo data successfully installed."
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: inc/demo-data/demo-data-loader.php:
|
736 |
msgid "View post with shortcodes"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: inc/demo-data/demo-data-loader.php:
|
740 |
msgid "View page with examples"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: inc/demo-data/demo-data-loader.php:
|
744 |
msgid "Installation of demo data with some errors occurred."
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: inc/demo-data/demo-data-loader.php:
|
748 |
msgid "Posts data is missing."
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: inc/demo-data/demo-data-loader.php:
|
752 |
msgid "Demo data have already been removed."
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: inc/demo-data/demo-data-loader.php:
|
756 |
msgid "Demo data successfully removed."
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: inc/demo-data/demo-data-loader.php:
|
760 |
msgid "Removing demo data with some errors occurred."
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: inc/demo-data/demo-data-loader.php:
|
764 |
msgid "Close notice"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: inc/demo-data/demo-data-loader.php:
|
768 |
#, fuzzy
|
769 |
msgid "Install demo data"
|
770 |
msgstr "安装 %s"
|
771 |
|
772 |
-
#: inc/demo-data/demo-data-loader.php:
|
773 |
msgid "for an acquaintance with the possibilities of the"
|
774 |
msgstr ""
|
775 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-08-11 12:13+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-08-11 12:13+0300\n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Xiaobo Chen <mibcxb@gmail.com>\n"
|
9 |
"Language: zh_CN\n"
|
678 |
msgid "Gallery Category"
|
679 |
msgstr "画廊中影像的尺寸"
|
680 |
|
681 |
+
#: inc/demo-data/demo-data-loader.php:77
|
682 |
#, fuzzy
|
683 |
msgid "Install Demo Data"
|
684 |
msgstr "安装 %s"
|
685 |
|
686 |
+
#: inc/demo-data/demo-data-loader.php:78
|
687 |
msgid ""
|
688 |
"If you install the demo-data, will be created galleries with images, demo-"
|
689 |
"post with available shortcodes and page with a list of all the galleries, \n"
|
691 |
"they will be restored."
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: inc/demo-data/demo-data-loader.php:82
|
695 |
msgid "Remove Demo Data"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: inc/demo-data/demo-data-loader.php:83
|
699 |
msgid "Delete demo-data and restore old plugin settings."
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: inc/demo-data/demo-data-loader.php:108
|
703 |
msgid "Yes, install demo data"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: inc/demo-data/demo-data-loader.php:109
|
707 |
msgid "Are you sure you want to install demo data?"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: inc/demo-data/demo-data-loader.php:111
|
711 |
msgid "Yes, remove demo data"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: inc/demo-data/demo-data-loader.php:112
|
715 |
msgid "Are you sure you want to remove demo data?"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: inc/demo-data/demo-data-loader.php:119
|
719 |
#, fuzzy
|
720 |
msgid "No, go back to the settings page"
|
721 |
msgstr "在插件的设置页面("
|
722 |
|
723 |
+
#: inc/demo-data/demo-data-loader.php:167
|
724 |
msgid "Can not get demo data."
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: inc/demo-data/demo-data-loader.php:173
|
728 |
msgid "Demo options already installed."
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: inc/demo-data/demo-data-loader.php:294
|
732 |
msgid "Demo data successfully installed."
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: inc/demo-data/demo-data-loader.php:296
|
736 |
msgid "View post with shortcodes"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: inc/demo-data/demo-data-loader.php:299
|
740 |
msgid "View page with examples"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: inc/demo-data/demo-data-loader.php:303
|
744 |
msgid "Installation of demo data with some errors occurred."
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: inc/demo-data/demo-data-loader.php:306
|
748 |
msgid "Posts data is missing."
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: inc/demo-data/demo-data-loader.php:331
|
752 |
msgid "Demo data have already been removed."
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: inc/demo-data/demo-data-loader.php:378
|
756 |
msgid "Demo data successfully removed."
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: inc/demo-data/demo-data-loader.php:381
|
760 |
msgid "Removing demo data with some errors occurred."
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: inc/demo-data/demo-data-loader.php:510
|
764 |
msgid "Close notice"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: inc/demo-data/demo-data-loader.php:513
|
768 |
#, fuzzy
|
769 |
msgid "Install demo data"
|
770 |
msgstr "安装 %s"
|
771 |
|
772 |
+
#: inc/demo-data/demo-data-loader.php:513
|
773 |
msgid "for an acquaintance with the possibilities of the"
|
774 |
msgstr ""
|
775 |
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Gallery by BestWebSoft ===
|
2 |
Contributors: bestwebsoft
|
3 |
Donate link: http://bestwebsoft.com/donate/
|
4 |
-
Tags: add album, add gallery, add picture, add pictures, album, foto, fotoalbum, gallery, galery, galary, gallary, gellery, gellary, gelary, gallerie, gallery decription, gallery image, image, multiple pictures, photo, photoalbum, photogallery, pictures, slide show, slideshow, upload images, upload photos, view images, view pictures, website gallery
|
5 |
Requires at least: 3.2
|
6 |
Tested up to: 4.2.4
|
7 |
-
Stable tag: 4.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -12,20 +12,20 @@ This plugin allows you to implement a gallery page into your website.
|
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
-
|
16 |
There is also a premium version of the plugin with more useful features available.
|
17 |
|
18 |
http://www.youtube.com/watch?v=kzC11CMmwbI
|
19 |
|
20 |
-
<a href="http://www.youtube.com/watch?v=mivcWwfRVmI" target="_blank">Video instruction on Installation</a>
|
21 |
|
22 |
-
<a href="http://www.youtube.com/watch?v=z95ql-M2JTc" target="_blank">Video instruction "How to add a gallery"</a>
|
23 |
|
24 |
-
<a href="http://wordpress.org/plugins/gallery-plugin/faq/" target="_blank">FAQ</a>
|
25 |
|
26 |
-
<a href="http://support.bestwebsoft.com" target="_blank">Support</a>
|
27 |
|
28 |
-
<a href="http://bestwebsoft.com/products/gallery/?k=57ad5c0c7fe312e2a45ef9a76f47334c" target="_blank">Upgrade to Pro
|
29 |
|
30 |
= Features =
|
31 |
|
@@ -86,7 +86,7 @@ We can fix some things for free for the users who provide translation of our plu
|
|
86 |
3. Please check if you have the template file `gallery-template.php` as well as the template `gallery-single-template.php` in the templates directory. If you can't find these files, then just copy them from the directory `/wp-content/plugins/gallery/template/` to your templates directory.
|
87 |
4. You can adjust the necessary settings using your WordPress admin panel in "BWS Plugins" > "Gallery".
|
88 |
|
89 |
-
<a href="https://docs.google.com/document/d/1CSkuhf_NrjWlODijrXwyx2lZ_1q5uRw0exTZqz-5fCI/edit?pli=1" target="_blank">View a Step-by-step Instruction on Gallery Installation</a>.
|
90 |
|
91 |
http://www.youtube.com/watch?v=mivcWwfRVmI
|
92 |
|
@@ -176,6 +176,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
176 |
|
177 |
== Changelog ==
|
178 |
|
|
|
|
|
|
|
179 |
= V4.3.4 - 10.08.2015 =
|
180 |
* NEW : We added ability to restore settings to defaults.
|
181 |
* NEW : We added ability to install demo data for plugin.
|
@@ -502,6 +505,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
502 |
|
503 |
== Upgrade Notice ==
|
504 |
|
|
|
|
|
|
|
505 |
= V4.3.4 =
|
506 |
We added ability to restore settings to defaults. We added ability to install demo data for plugin. We fixed bug with displaying of galleries by categories ( if Gallery Categories plugin is installed and activated ). We fixed bug with displaying of plugin settings page for rtl-oriented languages. We updated all functionality for wordpress 4.2.4.
|
507 |
|
1 |
=== Gallery by BestWebSoft ===
|
2 |
Contributors: bestwebsoft
|
3 |
Donate link: http://bestwebsoft.com/donate/
|
4 |
+
Tags: add image, add images, add photo, add album, add gallery, add galleries, add picture, add pictures, album, albums, art gallery, best gallery, best gallery plugin, best image slider, best portfolio, best portfolio plugin, content gallery, content slider, easy media gallery, easy gallery, fancybox, fancy gallery, free photo gallery, free gallery, free images, free slider, filterable, filterable gallery, filterable portfolio, foto, fotoalbum, fotogalerie, fullscreen, fullscreen gallery, fullscreen photo, fullscreen slider, gallery, galery, galeri, galerie, galleries, galary, galeria, gallary, gellery, gellary, gelary, gallerie, galerij, Galleria, gallery decription, gallery image, gallery lightbox, Gallery Plugin, gallery shortcode, gallery slider, gallery wordpress, grid, grid gallery, image, image album, image description, image display, image gallery, image gallery plugin, image lightbox, image slider, image slideshow, images, images gallery, jquery, jquery gallery, lightbox, lightbox gallery, lightbox photo, media, media gallery, multi categories galleries, multi categories gallery, multiple pictures, multiply images upload, pagination gallery, pagination portfolio, panorama, panorama views, photo, photo album, photo albums, photo gallery, photoalbum, photographs, photogallery, photographer, photography, photos, photoset, picture, pictures, Picture Gallery, plugin for gallery, plugin gallery, portfolio, portfolio gallery, portfolio plugin, responsive, responsive galleries, responsive gallery, responsive image gallery, responsive slider, responsive slideshow, responsive wordpress photo gallery, shortcode, sidebar, shortcode gallery, Simple gallery, slide, slide show, slideshow, slideshow galleries, slideshow gallery, slideshows, sortable galleries, sortable gallery, thumbnail, thumbnail view, thumb view, thumbnail galleries, thumbnail gallery, thumbnails, thumbs, upload images, upload photos, view images, view pictures, website gallery, widget gallery, wordpress gallery, wordpress gallery plugin, wordpress photo gallery plugin, wordpress responsive gallery, wp gallery, wp gallery plugin, wp gallery plugins
|
5 |
Requires at least: 3.2
|
6 |
Tested up to: 4.2.4
|
7 |
+
Stable tag: 4.3.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
Gallery by BestWebSoft makes it possible to implement as many galleries as you want into your website. You can add multiple pictures and description for each gallery, show them all at one page, view each one separately. Moreover, you can upload HQ images. Regular updates and simplicity of usage along with efficient functionality make it a perfect choice for your site to have an appealing look.
|
16 |
There is also a premium version of the plugin with more useful features available.
|
17 |
|
18 |
http://www.youtube.com/watch?v=kzC11CMmwbI
|
19 |
|
20 |
+
<a href="http://www.youtube.com/watch?v=mivcWwfRVmI" target="_blank">Gallery by BestWebSoft Video instruction on Installation</a>
|
21 |
|
22 |
+
<a href="http://www.youtube.com/watch?v=z95ql-M2JTc" target="_blank">Gallery by BestWebSoft Video instruction "How to add a gallery"</a>
|
23 |
|
24 |
+
<a href="http://wordpress.org/plugins/gallery-plugin/faq/" target="_blank">Gallery by BestWebSoft FAQ</a>
|
25 |
|
26 |
+
<a href="http://support.bestwebsoft.com" target="_blank">Gallery by BestWebSoft Support</a>
|
27 |
|
28 |
+
<a href="http://bestwebsoft.com/products/gallery/?k=57ad5c0c7fe312e2a45ef9a76f47334c" target="_blank">Upgrade to Gallery Pro by BestWebSoft</a>, <a href="http://bestwebsoft.com/demo-for-gallery-pro/" target="_blank">View Demo of Gallery Pro by BestWebSoft</a>
|
29 |
|
30 |
= Features =
|
31 |
|
86 |
3. Please check if you have the template file `gallery-template.php` as well as the template `gallery-single-template.php` in the templates directory. If you can't find these files, then just copy them from the directory `/wp-content/plugins/gallery/template/` to your templates directory.
|
87 |
4. You can adjust the necessary settings using your WordPress admin panel in "BWS Plugins" > "Gallery".
|
88 |
|
89 |
+
<a href="https://docs.google.com/document/d/1CSkuhf_NrjWlODijrXwyx2lZ_1q5uRw0exTZqz-5fCI/edit?pli=1" target="_blank">View a Step-by-step Instruction on Gallery by BestWebSoft Installation</a>.
|
90 |
|
91 |
http://www.youtube.com/watch?v=mivcWwfRVmI
|
92 |
|
176 |
|
177 |
== Changelog ==
|
178 |
|
179 |
+
= V4.3.5 - 11.08.2015 =
|
180 |
+
* Bugfix : We fixed bug with loading the demo data.
|
181 |
+
|
182 |
= V4.3.4 - 10.08.2015 =
|
183 |
* NEW : We added ability to restore settings to defaults.
|
184 |
* NEW : We added ability to install demo data for plugin.
|
505 |
|
506 |
== Upgrade Notice ==
|
507 |
|
508 |
+
= V4.3.5 =
|
509 |
+
We fixed bug with loading the demo data.
|
510 |
+
|
511 |
= V4.3.4 =
|
512 |
We added ability to restore settings to defaults. We added ability to install demo data for plugin. We fixed bug with displaying of galleries by categories ( if Gallery Categories plugin is installed and activated ). We fixed bug with displaying of plugin settings page for rtl-oriented languages. We updated all functionality for wordpress 4.2.4.
|
513 |
|