Version Description
- 12.03.2012 =
- Changed : BWS plugins section.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Gallery by BestWebSoft |
Version | 2.09 |
Comparing to | |
See all releases |
Code changes from version 2.08 to 2.09
- css/stylesheet.css +8 -0
- gallery-plugin.php +38 -12
- images/icon_16_b.png +0 -0
- images/icon_36_b.png +0 -0
- languages/gallery-fr_FR.mo +0 -0
- languages/gallery-fr_FR.po +40 -40
- languages/gallery-ka_GE.mo +0 -0
- languages/gallery-ka_GE.po +40 -40
- languages/gallery-nl_NL.mo +0 -0
- languages/gallery-nl_NL.po +40 -40
- languages/gallery-ru_RU.mo +0 -0
- languages/gallery-ru_RU.po +40 -40
- languages/gallery-uk.mo +0 -0
- languages/gallery-uk.po +40 -40
- readme.txt +52 -46
- template/gallery-single-template.php +0 -4
css/stylesheet.css
CHANGED
@@ -103,6 +103,10 @@ text-align:center;
|
|
103 |
{
|
104 |
background: url("../images/icon_16.png") no-repeat scroll center center transparent;
|
105 |
}
|
|
|
|
|
|
|
|
|
106 |
#adminmenu #toplevel_page_bws_plugins:hover div.wp-menu-image, #adminmenu #toplevel_page_bws_plugins.wp-has-current-submenu div.wp-menu-image
|
107 |
{
|
108 |
background: url("../images/icon_16_c.png") no-repeat scroll center center transparent;
|
@@ -111,6 +115,10 @@ text-align:center;
|
|
111 |
{
|
112 |
background: url("../images/icon_36.png") no-repeat scroll left top transparent;
|
113 |
}
|
|
|
|
|
|
|
|
|
114 |
#toplevel_page_bws_plugins .wp-submenu .wp-first-item
|
115 |
{
|
116 |
display:none;
|
103 |
{
|
104 |
background: url("../images/icon_16.png") no-repeat scroll center center transparent;
|
105 |
}
|
106 |
+
.admin-color-classic #adminmenu #toplevel_page_bws_plugins div.wp-menu-image
|
107 |
+
{
|
108 |
+
background: url("../images/icon_16_b.png") no-repeat scroll center center transparent;
|
109 |
+
}
|
110 |
#adminmenu #toplevel_page_bws_plugins:hover div.wp-menu-image, #adminmenu #toplevel_page_bws_plugins.wp-has-current-submenu div.wp-menu-image
|
111 |
{
|
112 |
background: url("../images/icon_16_c.png") no-repeat scroll center center transparent;
|
115 |
{
|
116 |
background: url("../images/icon_36.png") no-repeat scroll left top transparent;
|
117 |
}
|
118 |
+
.admin-color-classic .wrap #icon-options-general.icon32-bws
|
119 |
+
{
|
120 |
+
background: url("../images/icon_36_b.png") no-repeat scroll left top transparent;
|
121 |
+
}
|
122 |
#toplevel_page_bws_plugins .wp-submenu .wp-first-item
|
123 |
{
|
124 |
display:none;
|
gallery-plugin.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Gallery Plugin
|
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: This plugin allows you to implement gallery page into web site.
|
6 |
Author: BestWebSoft
|
7 |
-
Version: 2.
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
@@ -38,8 +38,8 @@ if( ! function_exists( 'gllr_plugin_install' ) ) {
|
|
38 |
}
|
39 |
else {
|
40 |
copy( TEMPLATEPATH .'/gallery-template.php', TEMPLATEPATH .'/gallery-template.php.bak' );
|
41 |
-
if( ! copy( WP_PLUGIN_DIR .'/gallery-plugin/template/gallery-template.php', TEMPLATEPATH .'/gallery-template.php' ) )
|
42 |
-
add_action( 'admin_notices', create_function( '', 'echo "Error copy template file";' ) )
|
43 |
}
|
44 |
if ( ! file_exists( TEMPLATEPATH .'/gallery-single-template.php' ) ) {
|
45 |
if( ! copy( WP_PLUGIN_DIR .'/gallery-plugin/template/gallery-single-template.php', TEMPLATEPATH .'/gallery-single-template.php' ) )
|
@@ -47,8 +47,8 @@ if( ! function_exists( 'gllr_plugin_install' ) ) {
|
|
47 |
}
|
48 |
else {
|
49 |
copy( TEMPLATEPATH .'/gallery-single-template.php', TEMPLATEPATH .'/gallery-single-template.php.bak' );
|
50 |
-
if( ! copy( WP_PLUGIN_DIR .'/gallery-plugin/template/gallery-single-template.php', TEMPLATEPATH .'/gallery-single-template.php' ) )
|
51 |
-
add_action( 'admin_notices', create_function( '', 'echo "Error copy template file";' ) )
|
52 |
}
|
53 |
}
|
54 |
}
|
@@ -94,12 +94,6 @@ if( ! function_exists( 'post_type_images' ) ) {
|
|
94 |
'supports' => array('title', 'editor'),
|
95 |
'register_meta_box_cb' => 'init_metaboxes_gallery'
|
96 |
));
|
97 |
-
|
98 |
-
wp_enqueue_style( 'gllrStylesheet', plugins_url( 'css/stylesheet.css', __FILE__ ) );
|
99 |
-
wp_enqueue_style( 'gllrPrettyPhotoStylesheet', plugins_url( 'pretty_photo/css/prettyPhoto.css', __FILE__ ) );
|
100 |
-
wp_enqueue_script( 'gllrPrettyPhotoJs', plugins_url( 'pretty_photo/js/jquery.prettyPhoto.js', __FILE__ ), array( 'jquery' ) );
|
101 |
-
wp_enqueue_style( 'gllrFileuploaderCss', plugins_url( 'upload/fileuploader.css', __FILE__ ) );
|
102 |
-
wp_enqueue_script( 'gllrFileuploaderJs', plugins_url( 'upload/fileuploader.js', __FILE__ ), array( 'jquery' ) );
|
103 |
}
|
104 |
}
|
105 |
|
@@ -447,7 +441,8 @@ if( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
447 |
array( 'portfolio\/portfolio.php', 'Portfolio', 'http://wordpress.org/extend/plugins/portfolio/', 'http://bestwebsoft.com/plugin/portfolio-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Portfolio+bestwebsoft&plugin-search-input=Search+Plugins', '' ),
|
448 |
array( 'gallery-plugin\/gallery-plugin.php', 'Gallery', 'http://wordpress.org/extend/plugins/gallery-plugin/', 'http://bestwebsoft.com/plugin/gallery-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Gallery+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', '' ),
|
449 |
array( 'adsense-plugin\/adsense-plugin.php', 'Google AdSense Plugin', 'http://wordpress.org/extend/plugins/adsense-plugin/', 'http://bestwebsoft.com/plugin/google-adsense-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Adsense+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=adsense-plugin.php' ),
|
450 |
-
array( 'custom-search-plugin\/custom-search-plugin.php', 'Custom Search Plugin', 'http://wordpress.org/extend/plugins/custom-search-plugin/', 'http://bestwebsoft.com/plugin/custom-search-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Custom+Search+plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=custom_search.php' )
|
|
|
451 |
);
|
452 |
foreach($array_plugins as $plugins) {
|
453 |
if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
|
@@ -649,6 +644,32 @@ if( ! function_exists( 'gllr_plugin_action_links' ) ) {
|
|
649 |
} // end function gllr_plugin_action_links
|
650 |
}
|
651 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
652 |
register_activation_hook( __FILE__, 'gllr_plugin_install' ); // activate plugin
|
653 |
register_uninstall_hook( __FILE__, 'gllr_plugin_uninstall' ); // deactivate plugin
|
654 |
|
@@ -673,4 +694,9 @@ add_filter( 'page_css_class', 'gllr_page_css_class', 10, 2 );
|
|
673 |
add_filter( 'manage_gallery_posts_columns', 'gllr_change_columns' );
|
674 |
add_action( 'manage_gallery_posts_custom_column', 'gllr_custom_columns', 10, 2 );
|
675 |
|
|
|
|
|
|
|
|
|
|
|
676 |
?>
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: This plugin allows you to implement gallery page into web site.
|
6 |
Author: BestWebSoft
|
7 |
+
Version: 2.09
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
38 |
}
|
39 |
else {
|
40 |
copy( TEMPLATEPATH .'/gallery-template.php', TEMPLATEPATH .'/gallery-template.php.bak' );
|
41 |
+
/*if( ! copy( WP_PLUGIN_DIR .'/gallery-plugin/template/gallery-template.php', TEMPLATEPATH .'/gallery-template.php' ) )
|
42 |
+
add_action( 'admin_notices', create_function( '', 'echo "Error copy template file";' ) );*/
|
43 |
}
|
44 |
if ( ! file_exists( TEMPLATEPATH .'/gallery-single-template.php' ) ) {
|
45 |
if( ! copy( WP_PLUGIN_DIR .'/gallery-plugin/template/gallery-single-template.php', TEMPLATEPATH .'/gallery-single-template.php' ) )
|
47 |
}
|
48 |
else {
|
49 |
copy( TEMPLATEPATH .'/gallery-single-template.php', TEMPLATEPATH .'/gallery-single-template.php.bak' );
|
50 |
+
/*if( ! copy( WP_PLUGIN_DIR .'/gallery-plugin/template/gallery-single-template.php', TEMPLATEPATH .'/gallery-single-template.php' ) )
|
51 |
+
add_action( 'admin_notices', create_function( '', 'echo "Error copy template file";' ) );*/
|
52 |
}
|
53 |
}
|
54 |
}
|
94 |
'supports' => array('title', 'editor'),
|
95 |
'register_meta_box_cb' => 'init_metaboxes_gallery'
|
96 |
));
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
}
|
98 |
}
|
99 |
|
441 |
array( 'portfolio\/portfolio.php', 'Portfolio', 'http://wordpress.org/extend/plugins/portfolio/', 'http://bestwebsoft.com/plugin/portfolio-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Portfolio+bestwebsoft&plugin-search-input=Search+Plugins', '' ),
|
442 |
array( 'gallery-plugin\/gallery-plugin.php', 'Gallery', 'http://wordpress.org/extend/plugins/gallery-plugin/', 'http://bestwebsoft.com/plugin/gallery-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Gallery+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', '' ),
|
443 |
array( 'adsense-plugin\/adsense-plugin.php', 'Google AdSense Plugin', 'http://wordpress.org/extend/plugins/adsense-plugin/', 'http://bestwebsoft.com/plugin/google-adsense-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Adsense+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=adsense-plugin.php' ),
|
444 |
+
array( 'custom-search-plugin\/custom-search-plugin.php', 'Custom Search Plugin', 'http://wordpress.org/extend/plugins/custom-search-plugin/', 'http://bestwebsoft.com/plugin/custom-search-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Custom+Search+plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=custom_search.php' ),
|
445 |
+
array( 'quotes_and_tips\/quotes-and-tips.php', 'Quotes and Tips', 'http://wordpress.org/extend/plugins/quotes-and-tips/', 'http://bestwebsoft.com/plugin/quotes-and-tips/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Quotes+and+Tips+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=quotes-and-tips.php' )
|
446 |
);
|
447 |
foreach($array_plugins as $plugins) {
|
448 |
if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
|
644 |
} // end function gllr_plugin_action_links
|
645 |
}
|
646 |
|
647 |
+
if( ! function_exists( 'gllr_add_script' ) ){
|
648 |
+
function gllr_add_script() { ?>
|
649 |
+
<script type="text/javascript">
|
650 |
+
if ( ! window.jQuery ) {
|
651 |
+
document.write('<s'+'cript src="http://code.jquery.com/jquery-latest.js"></s'+'cript>');
|
652 |
+
}
|
653 |
+
</script>
|
654 |
+
<?php }
|
655 |
+
}
|
656 |
+
|
657 |
+
if ( ! function_exists ( 'gllr_admin_head' ) ) {
|
658 |
+
function gllr_admin_head() {
|
659 |
+
wp_enqueue_style( 'gllrStylesheet', plugins_url( 'css/stylesheet.css', __FILE__ ) );
|
660 |
+
wp_enqueue_style( 'gllrFileuploaderCss', plugins_url( 'upload/fileuploader.css', __FILE__ ) );
|
661 |
+
wp_enqueue_script( 'gllrFileuploaderJs', plugins_url( 'upload/fileuploader.js', __FILE__ ), array( 'jquery' ) );
|
662 |
+
}
|
663 |
+
}
|
664 |
+
|
665 |
+
if ( ! function_exists ( 'gllr_wp_head' ) ) {
|
666 |
+
function gllr_wp_head() {
|
667 |
+
wp_enqueue_style( 'gllrStylesheet', plugins_url( 'css/stylesheet.css', __FILE__ ) );
|
668 |
+
wp_enqueue_style( 'gllrPrettyPhotoStylesheet', plugins_url( 'pretty_photo/css/prettyPhoto.css', __FILE__ ) );
|
669 |
+
wp_enqueue_script( 'gllrPrettyPhotoJs', plugins_url( 'pretty_photo/js/jquery.prettyPhoto.js', __FILE__ ), array( 'jquery' ) );
|
670 |
+
}
|
671 |
+
}
|
672 |
+
|
673 |
register_activation_hook( __FILE__, 'gllr_plugin_install' ); // activate plugin
|
674 |
register_uninstall_hook( __FILE__, 'gllr_plugin_uninstall' ); // deactivate plugin
|
675 |
|
694 |
add_filter( 'manage_gallery_posts_columns', 'gllr_change_columns' );
|
695 |
add_action( 'manage_gallery_posts_custom_column', 'gllr_custom_columns', 10, 2 );
|
696 |
|
697 |
+
add_action( 'wp_head', 'gllr_add_script' );
|
698 |
+
add_action( 'admin_enqueue_scripts', 'gllr_admin_head' );
|
699 |
+
add_action( 'wp_enqueue_scripts', 'gllr_wp_head' );
|
700 |
+
|
701 |
+
|
702 |
?>
|
images/icon_16_b.png
ADDED
Binary file
|
images/icon_36_b.png
ADDED
Binary file
|
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\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Wolforg <contact@wolforg.eu>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -22,7 +22,7 @@ msgid "Galleries"
|
|
22 |
msgstr "Galeries"
|
23 |
|
24 |
#: gallery-plugin.php:76
|
25 |
-
#: gallery-plugin.php:
|
26 |
msgid "Gallery"
|
27 |
msgstr "Galerie"
|
28 |
|
@@ -54,131 +54,131 @@ msgstr "Rechercher une galerie"
|
|
54 |
msgid "No Galleries found"
|
55 |
msgstr "Pas de galeries trouvées"
|
56 |
|
57 |
-
#: gallery-plugin.php:
|
58 |
msgid "Upload File"
|
59 |
msgstr "Envoi de fichier"
|
60 |
|
61 |
-
#: gallery-plugin.php:
|
62 |
msgid "Choose a screenshot to upload:"
|
63 |
msgstr "Choix de la capture d'écran à envoyer :"
|
64 |
|
65 |
-
#: gallery-plugin.php:
|
66 |
msgid "Please enable JavaScript to use the file uploader."
|
67 |
msgstr "Merci d'activer JavaScript pour utiliser l'envoi de fichiers."
|
68 |
|
69 |
-
#: gallery-plugin.php:
|
70 |
msgid "Title"
|
71 |
msgstr "Titre"
|
72 |
|
73 |
-
#: gallery-plugin.php:
|
74 |
msgid "Author"
|
75 |
msgstr "Auteur"
|
76 |
|
77 |
-
#: gallery-plugin.php:
|
78 |
msgid "Photo's"
|
79 |
msgstr "Photo's"
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
msgid "Public"
|
83 |
msgstr "Public"
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
msgid "Date"
|
87 |
msgstr "Date"
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
90 |
msgid "Activated plugins"
|
91 |
msgstr "Extensions activées"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
-
#: gallery-plugin.php:
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Read more"
|
97 |
msgstr "Lire plus..."
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
-
#: gallery-plugin.php:
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Settings"
|
103 |
msgstr "Paramètres"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Installed plugins"
|
107 |
msgstr "Extensions installées"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Recommended plugins"
|
111 |
msgstr "Extensions recommandées"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
msgid "Download"
|
115 |
msgstr "Télécharger"
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
#, php-format
|
119 |
msgid "Install %s"
|
120 |
msgstr "Installation %s"
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Install now from wordpress.org"
|
124 |
msgstr "Installation à partir via wordpress.org"
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
128 |
msgstr "Si vous avez des questions, merci de nous contacter via plugin@bestwebsoft.com ou remplissez le formulaire de contact sur notre site"
|
129 |
|
130 |
-
#: gallery-plugin.php:
|
131 |
msgid "Options saved."
|
132 |
msgstr "Options sauvegardées"
|
133 |
|
134 |
-
#: gallery-plugin.php:
|
135 |
msgid "Gallery Options"
|
136 |
msgstr "Options de galerie"
|
137 |
|
138 |
-
#: gallery-plugin.php:
|
139 |
msgid "The size of the cover album for gallery"
|
140 |
msgstr "Taille de Couverture de la galerie"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
-
#: gallery-plugin.php:
|
144 |
msgid "Image size name"
|
145 |
msgstr "Nom de la taille"
|
146 |
|
147 |
-
#: gallery-plugin.php:
|
148 |
-
#: gallery-plugin.php:
|
149 |
msgid "Width (in px)"
|
150 |
msgstr "Largeur (en pixels)"
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
-
#: gallery-plugin.php:
|
154 |
msgid "Height (in px)"
|
155 |
msgstr "Hauteur (en pixels)"
|
156 |
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Size for gallery image"
|
159 |
msgstr "Taille de la galerie"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
163 |
msgstr "WordPress créera une copie de la miniature d'article avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
|
164 |
|
165 |
-
#: gallery-plugin.php:
|
166 |
msgid "Count images in row"
|
167 |
msgstr "Nombre d'image par ligne"
|
168 |
|
169 |
-
#: gallery-plugin.php:
|
170 |
msgid "Save Changes"
|
171 |
msgstr "Sauvegarder"
|
172 |
|
173 |
-
#: gallery-plugin.php:
|
174 |
msgid "FAQ"
|
175 |
msgstr "FAQ"
|
176 |
|
177 |
-
#: gallery-plugin.php:
|
178 |
msgid "Support"
|
179 |
msgstr "Soutien"
|
180 |
|
181 |
-
#: template/gallery-single-template.php:
|
182 |
msgid "Sorry - nothing to found."
|
183 |
msgstr "Désolé, rien de trouvé"
|
184 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-03-12 19:35+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-03-12 19:35+0200\n"
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Wolforg <contact@wolforg.eu>\n"
|
9 |
"MIME-Version: 1.0\n"
|
22 |
msgstr "Galeries"
|
23 |
|
24 |
#: gallery-plugin.php:76
|
25 |
+
#: gallery-plugin.php:506
|
26 |
msgid "Gallery"
|
27 |
msgstr "Galerie"
|
28 |
|
54 |
msgid "No Galleries found"
|
55 |
msgstr "Pas de galeries trouvées"
|
56 |
|
57 |
+
#: gallery-plugin.php:126
|
58 |
msgid "Upload File"
|
59 |
msgstr "Envoi de fichier"
|
60 |
|
61 |
+
#: gallery-plugin.php:139
|
62 |
msgid "Choose a screenshot to upload:"
|
63 |
msgstr "Choix de la capture d'écran à envoyer :"
|
64 |
|
65 |
+
#: gallery-plugin.php:143
|
66 |
msgid "Please enable JavaScript to use the file uploader."
|
67 |
msgstr "Merci d'activer JavaScript pour utiliser l'envoi de fichiers."
|
68 |
|
69 |
+
#: gallery-plugin.php:325
|
70 |
msgid "Title"
|
71 |
msgstr "Titre"
|
72 |
|
73 |
+
#: gallery-plugin.php:326
|
74 |
msgid "Author"
|
75 |
msgstr "Auteur"
|
76 |
|
77 |
+
#: gallery-plugin.php:327
|
78 |
msgid "Photo's"
|
79 |
msgstr "Photo's"
|
80 |
|
81 |
+
#: gallery-plugin.php:328
|
82 |
msgid "Public"
|
83 |
msgstr "Public"
|
84 |
|
85 |
+
#: gallery-plugin.php:329
|
86 |
msgid "Date"
|
87 |
msgstr "Date"
|
88 |
|
89 |
+
#: gallery-plugin.php:475
|
90 |
msgid "Activated plugins"
|
91 |
msgstr "Extensions activées"
|
92 |
|
93 |
+
#: gallery-plugin.php:477
|
94 |
+
#: gallery-plugin.php:485
|
95 |
+
#: gallery-plugin.php:493
|
96 |
msgid "Read more"
|
97 |
msgstr "Lire plus..."
|
98 |
|
99 |
+
#: gallery-plugin.php:477
|
100 |
+
#: gallery-plugin.php:625
|
101 |
+
#: gallery-plugin.php:640
|
102 |
msgid "Settings"
|
103 |
msgstr "Paramètres"
|
104 |
|
105 |
+
#: gallery-plugin.php:483
|
106 |
msgid "Installed plugins"
|
107 |
msgstr "Extensions installées"
|
108 |
|
109 |
+
#: gallery-plugin.php:491
|
110 |
msgid "Recommended plugins"
|
111 |
msgstr "Extensions recommandées"
|
112 |
|
113 |
+
#: gallery-plugin.php:493
|
114 |
msgid "Download"
|
115 |
msgstr "Télécharger"
|
116 |
|
117 |
+
#: gallery-plugin.php:493
|
118 |
#, php-format
|
119 |
msgid "Install %s"
|
120 |
msgstr "Installation %s"
|
121 |
|
122 |
+
#: gallery-plugin.php:493
|
123 |
msgid "Install now from wordpress.org"
|
124 |
msgstr "Installation à partir via wordpress.org"
|
125 |
|
126 |
+
#: gallery-plugin.php:495
|
127 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
128 |
msgstr "Si vous avez des questions, merci de nous contacter via plugin@bestwebsoft.com ou remplissez le formulaire de contact sur notre site"
|
129 |
|
130 |
+
#: gallery-plugin.php:574
|
131 |
msgid "Options saved."
|
132 |
msgstr "Options sauvegardées"
|
133 |
|
134 |
+
#: gallery-plugin.php:581
|
135 |
msgid "Gallery Options"
|
136 |
msgstr "Options de galerie"
|
137 |
|
138 |
+
#: gallery-plugin.php:587
|
139 |
msgid "The size of the cover album for gallery"
|
140 |
msgstr "Taille de Couverture de la galerie"
|
141 |
|
142 |
+
#: gallery-plugin.php:589
|
143 |
+
#: gallery-plugin.php:597
|
144 |
msgid "Image size name"
|
145 |
msgstr "Nom de la taille"
|
146 |
|
147 |
+
#: gallery-plugin.php:590
|
148 |
+
#: gallery-plugin.php:598
|
149 |
msgid "Width (in px)"
|
150 |
msgstr "Largeur (en pixels)"
|
151 |
|
152 |
+
#: gallery-plugin.php:591
|
153 |
+
#: gallery-plugin.php:599
|
154 |
msgid "Height (in px)"
|
155 |
msgstr "Hauteur (en pixels)"
|
156 |
|
157 |
+
#: gallery-plugin.php:595
|
158 |
msgid "Size for gallery image"
|
159 |
msgstr "Taille de la galerie"
|
160 |
|
161 |
+
#: gallery-plugin.php:603
|
162 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
163 |
msgstr "WordPress créera une copie de la miniature d'article avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
|
164 |
|
165 |
+
#: gallery-plugin.php:606
|
166 |
msgid "Count images in row"
|
167 |
msgstr "Nombre d'image par ligne"
|
168 |
|
169 |
+
#: gallery-plugin.php:614
|
170 |
msgid "Save Changes"
|
171 |
msgstr "Sauvegarder"
|
172 |
|
173 |
+
#: gallery-plugin.php:626
|
174 |
msgid "FAQ"
|
175 |
msgstr "FAQ"
|
176 |
|
177 |
+
#: gallery-plugin.php:627
|
178 |
msgid "Support"
|
179 |
msgstr "Soutien"
|
180 |
|
181 |
+
#: template/gallery-single-template.php:60
|
182 |
msgid "Sorry - nothing to found."
|
183 |
msgstr "Désolé, rien de trouvé"
|
184 |
|
languages/gallery-ka_GE.mo
CHANGED
Binary file
|
languages/gallery-ka_GE.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: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Vako Patashuri <vpatashuri@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -22,7 +22,7 @@ msgid "Galleries"
|
|
22 |
msgstr "გალერეა"
|
23 |
|
24 |
#: gallery-plugin.php:76
|
25 |
-
#: gallery-plugin.php:
|
26 |
msgid "Gallery"
|
27 |
msgstr "გალერეა"
|
28 |
|
@@ -54,131 +54,131 @@ msgstr "გალერეას ძებნა"
|
|
54 |
msgid "No Galleries found"
|
55 |
msgstr "გალერეა არ მოძებნა"
|
56 |
|
57 |
-
#: gallery-plugin.php:
|
58 |
msgid "Upload File"
|
59 |
msgstr "ფაილის ატვირთვა"
|
60 |
|
61 |
-
#: gallery-plugin.php:
|
62 |
msgid "Choose a screenshot to upload:"
|
63 |
msgstr "აირჩიეთ სურათი ასატვირთად:"
|
64 |
|
65 |
-
#: gallery-plugin.php:
|
66 |
msgid "Please enable JavaScript to use the file uploader."
|
67 |
msgstr "გთხოვთ ჩართეთ JavaScript რომ გამოიყენოთ ფაილების ამტვირთავი."
|
68 |
|
69 |
-
#: gallery-plugin.php:
|
70 |
msgid "Title"
|
71 |
msgstr "სათაური"
|
72 |
|
73 |
-
#: gallery-plugin.php:
|
74 |
msgid "Author"
|
75 |
msgstr "ავტორი"
|
76 |
|
77 |
-
#: gallery-plugin.php:
|
78 |
msgid "Photo's"
|
79 |
msgstr "ფოტო"
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
msgid "Public"
|
83 |
msgstr "საჯარო"
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
msgid "Date"
|
87 |
msgstr "თარიღი"
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
90 |
msgid "Activated plugins"
|
91 |
msgstr "გააქტიურებული დანამატები:"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
-
#: gallery-plugin.php:
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Read more"
|
97 |
msgstr "სრულად ნახვა"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
-
#: gallery-plugin.php:
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Settings"
|
103 |
msgstr "პარამეტრები"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Installed plugins"
|
107 |
msgstr "დაყენებული დანამატები"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Recommended plugins"
|
111 |
msgstr "რეკომენდირებული დანამატები"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
msgid "Download"
|
115 |
msgstr "გადმოტვირთვა"
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
#, php-format
|
119 |
msgid "Install %s"
|
120 |
msgstr "დაყენებულია %s"
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Install now from wordpress.org"
|
124 |
msgstr "დააყენეთ wordpress.org-იდან"
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
128 |
msgstr "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე plugin@bestwebsoft.com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
|
129 |
|
130 |
-
#: gallery-plugin.php:
|
131 |
msgid "Options saved."
|
132 |
msgstr "პარამეტრები შენახულია"
|
133 |
|
134 |
-
#: gallery-plugin.php:
|
135 |
msgid "Gallery Options"
|
136 |
msgstr "გალერეის პარამეტრები"
|
137 |
|
138 |
-
#: gallery-plugin.php:
|
139 |
msgid "The size of the cover album for gallery"
|
140 |
msgstr "ალბომის ყდის ზომა გალერეისთვის"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
-
#: gallery-plugin.php:
|
144 |
msgid "Image size name"
|
145 |
msgstr "ზომის სახელი"
|
146 |
|
147 |
-
#: gallery-plugin.php:
|
148 |
-
#: gallery-plugin.php:
|
149 |
msgid "Width (in px)"
|
150 |
msgstr "სიგანე(პიქსელებში)"
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
-
#: gallery-plugin.php:
|
154 |
msgid "Height (in px)"
|
155 |
msgstr "სიმაღლე(პიქსელებში)"
|
156 |
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Size for gallery image"
|
159 |
msgstr "ზომა გალერეის სურათისთვის"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
163 |
msgstr "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც ატვირთავთ სურათს."
|
164 |
|
165 |
-
#: gallery-plugin.php:
|
166 |
msgid "Count images in row"
|
167 |
msgstr "სურათების რაოდენობა მწკრივში"
|
168 |
|
169 |
-
#: gallery-plugin.php:
|
170 |
msgid "Save Changes"
|
171 |
msgstr "ცვლილებების შენახვა"
|
172 |
|
173 |
-
#: gallery-plugin.php:
|
174 |
msgid "FAQ"
|
175 |
msgstr "FAQ"
|
176 |
|
177 |
-
#: gallery-plugin.php:
|
178 |
msgid "Support"
|
179 |
msgstr "Support"
|
180 |
|
181 |
-
#: template/gallery-single-template.php:
|
182 |
msgid "Sorry - nothing to found."
|
183 |
msgstr "მაპატიეთ - არაფერია ნაპოვნი."
|
184 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-03-12 19:35+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-03-12 19:35+0200\n"
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Vako Patashuri <vpatashuri@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
22 |
msgstr "გალერეა"
|
23 |
|
24 |
#: gallery-plugin.php:76
|
25 |
+
#: gallery-plugin.php:506
|
26 |
msgid "Gallery"
|
27 |
msgstr "გალერეა"
|
28 |
|
54 |
msgid "No Galleries found"
|
55 |
msgstr "გალერეა არ მოძებნა"
|
56 |
|
57 |
+
#: gallery-plugin.php:126
|
58 |
msgid "Upload File"
|
59 |
msgstr "ფაილის ატვირთვა"
|
60 |
|
61 |
+
#: gallery-plugin.php:139
|
62 |
msgid "Choose a screenshot to upload:"
|
63 |
msgstr "აირჩიეთ სურათი ასატვირთად:"
|
64 |
|
65 |
+
#: gallery-plugin.php:143
|
66 |
msgid "Please enable JavaScript to use the file uploader."
|
67 |
msgstr "გთხოვთ ჩართეთ JavaScript რომ გამოიყენოთ ფაილების ამტვირთავი."
|
68 |
|
69 |
+
#: gallery-plugin.php:325
|
70 |
msgid "Title"
|
71 |
msgstr "სათაური"
|
72 |
|
73 |
+
#: gallery-plugin.php:326
|
74 |
msgid "Author"
|
75 |
msgstr "ავტორი"
|
76 |
|
77 |
+
#: gallery-plugin.php:327
|
78 |
msgid "Photo's"
|
79 |
msgstr "ფოტო"
|
80 |
|
81 |
+
#: gallery-plugin.php:328
|
82 |
msgid "Public"
|
83 |
msgstr "საჯარო"
|
84 |
|
85 |
+
#: gallery-plugin.php:329
|
86 |
msgid "Date"
|
87 |
msgstr "თარიღი"
|
88 |
|
89 |
+
#: gallery-plugin.php:475
|
90 |
msgid "Activated plugins"
|
91 |
msgstr "გააქტიურებული დანამატები:"
|
92 |
|
93 |
+
#: gallery-plugin.php:477
|
94 |
+
#: gallery-plugin.php:485
|
95 |
+
#: gallery-plugin.php:493
|
96 |
msgid "Read more"
|
97 |
msgstr "სრულად ნახვა"
|
98 |
|
99 |
+
#: gallery-plugin.php:477
|
100 |
+
#: gallery-plugin.php:625
|
101 |
+
#: gallery-plugin.php:640
|
102 |
msgid "Settings"
|
103 |
msgstr "პარამეტრები"
|
104 |
|
105 |
+
#: gallery-plugin.php:483
|
106 |
msgid "Installed plugins"
|
107 |
msgstr "დაყენებული დანამატები"
|
108 |
|
109 |
+
#: gallery-plugin.php:491
|
110 |
msgid "Recommended plugins"
|
111 |
msgstr "რეკომენდირებული დანამატები"
|
112 |
|
113 |
+
#: gallery-plugin.php:493
|
114 |
msgid "Download"
|
115 |
msgstr "გადმოტვირთვა"
|
116 |
|
117 |
+
#: gallery-plugin.php:493
|
118 |
#, php-format
|
119 |
msgid "Install %s"
|
120 |
msgstr "დაყენებულია %s"
|
121 |
|
122 |
+
#: gallery-plugin.php:493
|
123 |
msgid "Install now from wordpress.org"
|
124 |
msgstr "დააყენეთ wordpress.org-იდან"
|
125 |
|
126 |
+
#: gallery-plugin.php:495
|
127 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
128 |
msgstr "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე plugin@bestwebsoft.com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
|
129 |
|
130 |
+
#: gallery-plugin.php:574
|
131 |
msgid "Options saved."
|
132 |
msgstr "პარამეტრები შენახულია"
|
133 |
|
134 |
+
#: gallery-plugin.php:581
|
135 |
msgid "Gallery Options"
|
136 |
msgstr "გალერეის პარამეტრები"
|
137 |
|
138 |
+
#: gallery-plugin.php:587
|
139 |
msgid "The size of the cover album for gallery"
|
140 |
msgstr "ალბომის ყდის ზომა გალერეისთვის"
|
141 |
|
142 |
+
#: gallery-plugin.php:589
|
143 |
+
#: gallery-plugin.php:597
|
144 |
msgid "Image size name"
|
145 |
msgstr "ზომის სახელი"
|
146 |
|
147 |
+
#: gallery-plugin.php:590
|
148 |
+
#: gallery-plugin.php:598
|
149 |
msgid "Width (in px)"
|
150 |
msgstr "სიგანე(პიქსელებში)"
|
151 |
|
152 |
+
#: gallery-plugin.php:591
|
153 |
+
#: gallery-plugin.php:599
|
154 |
msgid "Height (in px)"
|
155 |
msgstr "სიმაღლე(პიქსელებში)"
|
156 |
|
157 |
+
#: gallery-plugin.php:595
|
158 |
msgid "Size for gallery image"
|
159 |
msgstr "ზომა გალერეის სურათისთვის"
|
160 |
|
161 |
+
#: gallery-plugin.php:603
|
162 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
163 |
msgstr "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც ატვირთავთ სურათს."
|
164 |
|
165 |
+
#: gallery-plugin.php:606
|
166 |
msgid "Count images in row"
|
167 |
msgstr "სურათების რაოდენობა მწკრივში"
|
168 |
|
169 |
+
#: gallery-plugin.php:614
|
170 |
msgid "Save Changes"
|
171 |
msgstr "ცვლილებების შენახვა"
|
172 |
|
173 |
+
#: gallery-plugin.php:626
|
174 |
msgid "FAQ"
|
175 |
msgstr "FAQ"
|
176 |
|
177 |
+
#: gallery-plugin.php:627
|
178 |
msgid "Support"
|
179 |
msgstr "Support"
|
180 |
|
181 |
+
#: template/gallery-single-template.php:60
|
182 |
msgid "Sorry - nothing to found."
|
183 |
msgstr "მაპატიეთ - არაფერია ნაპოვნი."
|
184 |
|
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: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ronald <ronald@bhi.nl>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -22,7 +22,7 @@ msgid "Galleries"
|
|
22 |
msgstr "Fotoalbum's"
|
23 |
|
24 |
#: gallery-plugin.php:76
|
25 |
-
#: gallery-plugin.php:
|
26 |
msgid "Gallery"
|
27 |
msgstr "Fotoalbum"
|
28 |
|
@@ -54,131 +54,131 @@ msgstr "Zoeken"
|
|
54 |
msgid "No Galleries found"
|
55 |
msgstr "Niets gevonden"
|
56 |
|
57 |
-
#: gallery-plugin.php:
|
58 |
msgid "Upload File"
|
59 |
msgstr "Foto's uploaden"
|
60 |
|
61 |
-
#: gallery-plugin.php:
|
62 |
msgid "Choose a screenshot to upload:"
|
63 |
msgstr "Foto's uploaden: "
|
64 |
|
65 |
-
#: gallery-plugin.php:
|
66 |
msgid "Please enable JavaScript to use the file uploader."
|
67 |
msgstr "Activeer JavaScript om foto's te kunnen uploaden."
|
68 |
|
69 |
-
#: gallery-plugin.php:
|
70 |
msgid "Title"
|
71 |
msgstr "Titel"
|
72 |
|
73 |
-
#: gallery-plugin.php:
|
74 |
msgid "Author"
|
75 |
msgstr "Auteur"
|
76 |
|
77 |
-
#: gallery-plugin.php:
|
78 |
msgid "Photo's"
|
79 |
msgstr "Foto's"
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
msgid "Public"
|
83 |
msgstr "Gepubliceerd"
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
msgid "Date"
|
87 |
msgstr "Datum"
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
90 |
msgid "Activated plugins"
|
91 |
msgstr "Geactiveerde plugins"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
-
#: gallery-plugin.php:
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Read more"
|
97 |
msgstr "Lees verder"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
-
#: gallery-plugin.php:
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Settings"
|
103 |
msgstr "Instellingen"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Installed plugins"
|
107 |
msgstr "Geinstalleerde plugins"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Recommended plugins"
|
111 |
msgstr "Aanbevolen plugins"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
msgid "Download"
|
115 |
msgstr "Download"
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
#, php-format
|
119 |
msgid "Install %s"
|
120 |
msgstr "Install %s"
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Install now from wordpress.org"
|
124 |
msgstr "Installeer nu vanaf wordpress.org"
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
128 |
msgstr "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul het contactformulier in op onze website"
|
129 |
|
130 |
-
#: gallery-plugin.php:
|
131 |
msgid "Options saved."
|
132 |
msgstr "Opties opgeslagen"
|
133 |
|
134 |
-
#: gallery-plugin.php:
|
135 |
msgid "Gallery Options"
|
136 |
msgstr "Fotoalbum opties"
|
137 |
|
138 |
-
#: gallery-plugin.php:
|
139 |
msgid "The size of the cover album for gallery"
|
140 |
msgstr "De afmetingen voor de cover van het album"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
-
#: gallery-plugin.php:
|
144 |
msgid "Image size name"
|
145 |
msgstr "Afbeelding grootte"
|
146 |
|
147 |
-
#: gallery-plugin.php:
|
148 |
-
#: gallery-plugin.php:
|
149 |
msgid "Width (in px)"
|
150 |
msgstr "Breedte (in px)"
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
-
#: gallery-plugin.php:
|
154 |
msgid "Height (in px)"
|
155 |
msgstr "Hoogte (in px)"
|
156 |
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Size for gallery image"
|
159 |
msgstr "Grootte voor album afbeelding"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
163 |
msgstr "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen als u een nieuwe foto upload."
|
164 |
|
165 |
-
#: gallery-plugin.php:
|
166 |
msgid "Count images in row"
|
167 |
msgstr "Aantal afbeeldingen op een rij"
|
168 |
|
169 |
-
#: gallery-plugin.php:
|
170 |
msgid "Save Changes"
|
171 |
msgstr "Bewaar veranderingen"
|
172 |
|
173 |
-
#: gallery-plugin.php:
|
174 |
msgid "FAQ"
|
175 |
msgstr "FAQ"
|
176 |
|
177 |
-
#: gallery-plugin.php:
|
178 |
msgid "Support"
|
179 |
msgstr "Support"
|
180 |
|
181 |
-
#: template/gallery-single-template.php:
|
182 |
msgid "Sorry - nothing to found."
|
183 |
msgstr "Helaas - niets gevonden"
|
184 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-03-12 19:34+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-03-12 19:34+0200\n"
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ronald <ronald@bhi.nl>\n"
|
9 |
"MIME-Version: 1.0\n"
|
22 |
msgstr "Fotoalbum's"
|
23 |
|
24 |
#: gallery-plugin.php:76
|
25 |
+
#: gallery-plugin.php:506
|
26 |
msgid "Gallery"
|
27 |
msgstr "Fotoalbum"
|
28 |
|
54 |
msgid "No Galleries found"
|
55 |
msgstr "Niets gevonden"
|
56 |
|
57 |
+
#: gallery-plugin.php:126
|
58 |
msgid "Upload File"
|
59 |
msgstr "Foto's uploaden"
|
60 |
|
61 |
+
#: gallery-plugin.php:139
|
62 |
msgid "Choose a screenshot to upload:"
|
63 |
msgstr "Foto's uploaden: "
|
64 |
|
65 |
+
#: gallery-plugin.php:143
|
66 |
msgid "Please enable JavaScript to use the file uploader."
|
67 |
msgstr "Activeer JavaScript om foto's te kunnen uploaden."
|
68 |
|
69 |
+
#: gallery-plugin.php:325
|
70 |
msgid "Title"
|
71 |
msgstr "Titel"
|
72 |
|
73 |
+
#: gallery-plugin.php:326
|
74 |
msgid "Author"
|
75 |
msgstr "Auteur"
|
76 |
|
77 |
+
#: gallery-plugin.php:327
|
78 |
msgid "Photo's"
|
79 |
msgstr "Foto's"
|
80 |
|
81 |
+
#: gallery-plugin.php:328
|
82 |
msgid "Public"
|
83 |
msgstr "Gepubliceerd"
|
84 |
|
85 |
+
#: gallery-plugin.php:329
|
86 |
msgid "Date"
|
87 |
msgstr "Datum"
|
88 |
|
89 |
+
#: gallery-plugin.php:475
|
90 |
msgid "Activated plugins"
|
91 |
msgstr "Geactiveerde plugins"
|
92 |
|
93 |
+
#: gallery-plugin.php:477
|
94 |
+
#: gallery-plugin.php:485
|
95 |
+
#: gallery-plugin.php:493
|
96 |
msgid "Read more"
|
97 |
msgstr "Lees verder"
|
98 |
|
99 |
+
#: gallery-plugin.php:477
|
100 |
+
#: gallery-plugin.php:625
|
101 |
+
#: gallery-plugin.php:640
|
102 |
msgid "Settings"
|
103 |
msgstr "Instellingen"
|
104 |
|
105 |
+
#: gallery-plugin.php:483
|
106 |
msgid "Installed plugins"
|
107 |
msgstr "Geinstalleerde plugins"
|
108 |
|
109 |
+
#: gallery-plugin.php:491
|
110 |
msgid "Recommended plugins"
|
111 |
msgstr "Aanbevolen plugins"
|
112 |
|
113 |
+
#: gallery-plugin.php:493
|
114 |
msgid "Download"
|
115 |
msgstr "Download"
|
116 |
|
117 |
+
#: gallery-plugin.php:493
|
118 |
#, php-format
|
119 |
msgid "Install %s"
|
120 |
msgstr "Install %s"
|
121 |
|
122 |
+
#: gallery-plugin.php:493
|
123 |
msgid "Install now from wordpress.org"
|
124 |
msgstr "Installeer nu vanaf wordpress.org"
|
125 |
|
126 |
+
#: gallery-plugin.php:495
|
127 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
128 |
msgstr "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul het contactformulier in op onze website"
|
129 |
|
130 |
+
#: gallery-plugin.php:574
|
131 |
msgid "Options saved."
|
132 |
msgstr "Opties opgeslagen"
|
133 |
|
134 |
+
#: gallery-plugin.php:581
|
135 |
msgid "Gallery Options"
|
136 |
msgstr "Fotoalbum opties"
|
137 |
|
138 |
+
#: gallery-plugin.php:587
|
139 |
msgid "The size of the cover album for gallery"
|
140 |
msgstr "De afmetingen voor de cover van het album"
|
141 |
|
142 |
+
#: gallery-plugin.php:589
|
143 |
+
#: gallery-plugin.php:597
|
144 |
msgid "Image size name"
|
145 |
msgstr "Afbeelding grootte"
|
146 |
|
147 |
+
#: gallery-plugin.php:590
|
148 |
+
#: gallery-plugin.php:598
|
149 |
msgid "Width (in px)"
|
150 |
msgstr "Breedte (in px)"
|
151 |
|
152 |
+
#: gallery-plugin.php:591
|
153 |
+
#: gallery-plugin.php:599
|
154 |
msgid "Height (in px)"
|
155 |
msgstr "Hoogte (in px)"
|
156 |
|
157 |
+
#: gallery-plugin.php:595
|
158 |
msgid "Size for gallery image"
|
159 |
msgstr "Grootte voor album afbeelding"
|
160 |
|
161 |
+
#: gallery-plugin.php:603
|
162 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
163 |
msgstr "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen als u een nieuwe foto upload."
|
164 |
|
165 |
+
#: gallery-plugin.php:606
|
166 |
msgid "Count images in row"
|
167 |
msgstr "Aantal afbeeldingen op een rij"
|
168 |
|
169 |
+
#: gallery-plugin.php:614
|
170 |
msgid "Save Changes"
|
171 |
msgstr "Bewaar veranderingen"
|
172 |
|
173 |
+
#: gallery-plugin.php:626
|
174 |
msgid "FAQ"
|
175 |
msgstr "FAQ"
|
176 |
|
177 |
+
#: gallery-plugin.php:627
|
178 |
msgid "Support"
|
179 |
msgstr "Support"
|
180 |
|
181 |
+
#: template/gallery-single-template.php:60
|
182 |
msgid "Sorry - nothing to found."
|
183 |
msgstr "Helaas - niets gevonden"
|
184 |
|
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: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -22,7 +22,7 @@ msgid "Galleries"
|
|
22 |
msgstr "Галереи"
|
23 |
|
24 |
#: gallery-plugin.php:76
|
25 |
-
#: gallery-plugin.php:
|
26 |
msgid "Gallery"
|
27 |
msgstr "Галерея"
|
28 |
|
@@ -54,131 +54,131 @@ msgstr "Поиск галереи"
|
|
54 |
msgid "No Galleries found"
|
55 |
msgstr "Ни одной галереи не найдено"
|
56 |
|
57 |
-
#: gallery-plugin.php:
|
58 |
msgid "Upload File"
|
59 |
msgstr "Загрузить файлы"
|
60 |
|
61 |
-
#: gallery-plugin.php:
|
62 |
msgid "Choose a screenshot to upload:"
|
63 |
msgstr "Выбрать файлы для загрузки: "
|
64 |
|
65 |
-
#: gallery-plugin.php:
|
66 |
msgid "Please enable JavaScript to use the file uploader."
|
67 |
msgstr "Пожалуйста, включите javascript для использования загрузчика файлов."
|
68 |
|
69 |
-
#: gallery-plugin.php:
|
70 |
msgid "Title"
|
71 |
msgstr "Название"
|
72 |
|
73 |
-
#: gallery-plugin.php:
|
74 |
msgid "Author"
|
75 |
msgstr "Автор"
|
76 |
|
77 |
-
#: gallery-plugin.php:
|
78 |
msgid "Photo's"
|
79 |
msgstr "Фото"
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
msgid "Public"
|
83 |
msgstr "Опубликование"
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
msgid "Date"
|
87 |
msgstr "Дата"
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
90 |
msgid "Activated plugins"
|
91 |
msgstr "Активированные плагины"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
-
#: gallery-plugin.php:
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Read more"
|
97 |
msgstr "Подробнее..."
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
-
#: gallery-plugin.php:
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Settings"
|
103 |
msgstr "Настройки"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Installed plugins"
|
107 |
msgstr "Установленные плагины"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Recommended plugins"
|
111 |
msgstr "Рекомендованные к установке плагины"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
msgid "Download"
|
115 |
msgstr "Скачать"
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
#, php-format
|
119 |
msgid "Install %s"
|
120 |
msgstr "Установлено %s"
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Install now from wordpress.org"
|
124 |
msgstr "Установить с wordpress.org"
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
128 |
msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
|
129 |
|
130 |
-
#: gallery-plugin.php:
|
131 |
msgid "Options saved."
|
132 |
msgstr "Опции сохранены"
|
133 |
|
134 |
-
#: gallery-plugin.php:
|
135 |
msgid "Gallery Options"
|
136 |
msgstr "Настройки Галереи"
|
137 |
|
138 |
-
#: gallery-plugin.php:
|
139 |
msgid "The size of the cover album for gallery"
|
140 |
msgstr "Размер изображения для обложки альбома галереи"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
-
#: gallery-plugin.php:
|
144 |
msgid "Image size name"
|
145 |
msgstr "Название размера изображение"
|
146 |
|
147 |
-
#: gallery-plugin.php:
|
148 |
-
#: gallery-plugin.php:
|
149 |
msgid "Width (in px)"
|
150 |
msgstr "Ширина (в px)"
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
-
#: gallery-plugin.php:
|
154 |
msgid "Height (in px)"
|
155 |
msgstr "Высота (в px)"
|
156 |
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Size for gallery image"
|
159 |
msgstr "Размер изображений Галереи"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
163 |
msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
|
164 |
|
165 |
-
#: gallery-plugin.php:
|
166 |
msgid "Count images in row"
|
167 |
msgstr "Количество изображений в строке"
|
168 |
|
169 |
-
#: gallery-plugin.php:
|
170 |
msgid "Save Changes"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: gallery-plugin.php:
|
174 |
msgid "FAQ"
|
175 |
msgstr "FAQ"
|
176 |
|
177 |
-
#: gallery-plugin.php:
|
178 |
msgid "Support"
|
179 |
msgstr "Поддержка"
|
180 |
|
181 |
-
#: template/gallery-single-template.php:
|
182 |
msgid "Sorry - nothing to found."
|
183 |
msgstr "Извините, ничего не найдено."
|
184 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-03-12 19:34+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-03-12 19:34+0200\n"
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
22 |
msgstr "Галереи"
|
23 |
|
24 |
#: gallery-plugin.php:76
|
25 |
+
#: gallery-plugin.php:506
|
26 |
msgid "Gallery"
|
27 |
msgstr "Галерея"
|
28 |
|
54 |
msgid "No Galleries found"
|
55 |
msgstr "Ни одной галереи не найдено"
|
56 |
|
57 |
+
#: gallery-plugin.php:126
|
58 |
msgid "Upload File"
|
59 |
msgstr "Загрузить файлы"
|
60 |
|
61 |
+
#: gallery-plugin.php:139
|
62 |
msgid "Choose a screenshot to upload:"
|
63 |
msgstr "Выбрать файлы для загрузки: "
|
64 |
|
65 |
+
#: gallery-plugin.php:143
|
66 |
msgid "Please enable JavaScript to use the file uploader."
|
67 |
msgstr "Пожалуйста, включите javascript для использования загрузчика файлов."
|
68 |
|
69 |
+
#: gallery-plugin.php:325
|
70 |
msgid "Title"
|
71 |
msgstr "Название"
|
72 |
|
73 |
+
#: gallery-plugin.php:326
|
74 |
msgid "Author"
|
75 |
msgstr "Автор"
|
76 |
|
77 |
+
#: gallery-plugin.php:327
|
78 |
msgid "Photo's"
|
79 |
msgstr "Фото"
|
80 |
|
81 |
+
#: gallery-plugin.php:328
|
82 |
msgid "Public"
|
83 |
msgstr "Опубликование"
|
84 |
|
85 |
+
#: gallery-plugin.php:329
|
86 |
msgid "Date"
|
87 |
msgstr "Дата"
|
88 |
|
89 |
+
#: gallery-plugin.php:475
|
90 |
msgid "Activated plugins"
|
91 |
msgstr "Активированные плагины"
|
92 |
|
93 |
+
#: gallery-plugin.php:477
|
94 |
+
#: gallery-plugin.php:485
|
95 |
+
#: gallery-plugin.php:493
|
96 |
msgid "Read more"
|
97 |
msgstr "Подробнее..."
|
98 |
|
99 |
+
#: gallery-plugin.php:477
|
100 |
+
#: gallery-plugin.php:625
|
101 |
+
#: gallery-plugin.php:640
|
102 |
msgid "Settings"
|
103 |
msgstr "Настройки"
|
104 |
|
105 |
+
#: gallery-plugin.php:483
|
106 |
msgid "Installed plugins"
|
107 |
msgstr "Установленные плагины"
|
108 |
|
109 |
+
#: gallery-plugin.php:491
|
110 |
msgid "Recommended plugins"
|
111 |
msgstr "Рекомендованные к установке плагины"
|
112 |
|
113 |
+
#: gallery-plugin.php:493
|
114 |
msgid "Download"
|
115 |
msgstr "Скачать"
|
116 |
|
117 |
+
#: gallery-plugin.php:493
|
118 |
#, php-format
|
119 |
msgid "Install %s"
|
120 |
msgstr "Установлено %s"
|
121 |
|
122 |
+
#: gallery-plugin.php:493
|
123 |
msgid "Install now from wordpress.org"
|
124 |
msgstr "Установить с wordpress.org"
|
125 |
|
126 |
+
#: gallery-plugin.php:495
|
127 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
128 |
msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
|
129 |
|
130 |
+
#: gallery-plugin.php:574
|
131 |
msgid "Options saved."
|
132 |
msgstr "Опции сохранены"
|
133 |
|
134 |
+
#: gallery-plugin.php:581
|
135 |
msgid "Gallery Options"
|
136 |
msgstr "Настройки Галереи"
|
137 |
|
138 |
+
#: gallery-plugin.php:587
|
139 |
msgid "The size of the cover album for gallery"
|
140 |
msgstr "Размер изображения для обложки альбома галереи"
|
141 |
|
142 |
+
#: gallery-plugin.php:589
|
143 |
+
#: gallery-plugin.php:597
|
144 |
msgid "Image size name"
|
145 |
msgstr "Название размера изображение"
|
146 |
|
147 |
+
#: gallery-plugin.php:590
|
148 |
+
#: gallery-plugin.php:598
|
149 |
msgid "Width (in px)"
|
150 |
msgstr "Ширина (в px)"
|
151 |
|
152 |
+
#: gallery-plugin.php:591
|
153 |
+
#: gallery-plugin.php:599
|
154 |
msgid "Height (in px)"
|
155 |
msgstr "Высота (в px)"
|
156 |
|
157 |
+
#: gallery-plugin.php:595
|
158 |
msgid "Size for gallery image"
|
159 |
msgstr "Размер изображений Галереи"
|
160 |
|
161 |
+
#: gallery-plugin.php:603
|
162 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
163 |
msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
|
164 |
|
165 |
+
#: gallery-plugin.php:606
|
166 |
msgid "Count images in row"
|
167 |
msgstr "Количество изображений в строке"
|
168 |
|
169 |
+
#: gallery-plugin.php:614
|
170 |
msgid "Save Changes"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: gallery-plugin.php:626
|
174 |
msgid "FAQ"
|
175 |
msgstr "FAQ"
|
176 |
|
177 |
+
#: gallery-plugin.php:627
|
178 |
msgid "Support"
|
179 |
msgstr "Поддержка"
|
180 |
|
181 |
+
#: template/gallery-single-template.php:60
|
182 |
msgid "Sorry - nothing to found."
|
183 |
msgstr "Извините, ничего не найдено."
|
184 |
|
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: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -22,7 +22,7 @@ msgid "Galleries"
|
|
22 |
msgstr "Галереi"
|
23 |
|
24 |
#: gallery-plugin.php:76
|
25 |
-
#: gallery-plugin.php:
|
26 |
msgid "Gallery"
|
27 |
msgstr "Галерея"
|
28 |
|
@@ -54,131 +54,131 @@ msgstr "Пошук галереї"
|
|
54 |
msgid "No Galleries found"
|
55 |
msgstr "Галереї, не знайдено"
|
56 |
|
57 |
-
#: gallery-plugin.php:
|
58 |
msgid "Upload File"
|
59 |
msgstr "Завантажити файл"
|
60 |
|
61 |
-
#: gallery-plugin.php:
|
62 |
msgid "Choose a screenshot to upload:"
|
63 |
msgstr "Вибрати скріншот, щоб завантажити:"
|
64 |
|
65 |
-
#: gallery-plugin.php:
|
66 |
msgid "Please enable JavaScript to use the file uploader."
|
67 |
msgstr "Будь ласка Дозвольте JavaScript, щоб використовувати файл uploader."
|
68 |
|
69 |
-
#: gallery-plugin.php:
|
70 |
msgid "Title"
|
71 |
msgstr "Назва"
|
72 |
|
73 |
-
#: gallery-plugin.php:
|
74 |
msgid "Author"
|
75 |
msgstr "Автор "
|
76 |
|
77 |
-
#: gallery-plugin.php:
|
78 |
msgid "Photo's"
|
79 |
msgstr "Фото "
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
msgid "Public"
|
83 |
msgstr "Громадськості"
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
msgid "Date"
|
87 |
msgstr "Дата "
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
90 |
msgid "Activated plugins"
|
91 |
msgstr "Активоване плагіни"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
-
#: gallery-plugin.php:
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Read more"
|
97 |
msgstr "Читати далі"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
-
#: gallery-plugin.php:
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Settings"
|
103 |
msgstr "Параметри"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Installed plugins"
|
107 |
msgstr "Встановлених модулів"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Recommended plugins"
|
111 |
msgstr "Плагіни Рекомендовані"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
msgid "Download"
|
115 |
msgstr "Завантажити"
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
#, php-format
|
119 |
msgid "Install %s"
|
120 |
msgstr "Установка %s"
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Install now from wordpress.org"
|
124 |
msgstr "Установити зараз від wordpress.org"
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
128 |
msgstr "Якщо у вас є які-небудь питання, будь ласка, зв'яжіться з нами через plugin@bestwebsoft.com або заповнити нашу контактну форму на нашому сайті"
|
129 |
|
130 |
-
#: gallery-plugin.php:
|
131 |
msgid "Options saved."
|
132 |
msgstr "Параметри зберігаються."
|
133 |
|
134 |
-
#: gallery-plugin.php:
|
135 |
msgid "Gallery Options"
|
136 |
msgstr "Параметри галереї"
|
137 |
|
138 |
-
#: gallery-plugin.php:
|
139 |
msgid "The size of the cover album for gallery"
|
140 |
msgstr "Розмір обкладинки альбому для галереї"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
-
#: gallery-plugin.php:
|
144 |
msgid "Image size name"
|
145 |
msgstr "Ім'я розмір зображення"
|
146 |
|
147 |
-
#: gallery-plugin.php:
|
148 |
-
#: gallery-plugin.php:
|
149 |
msgid "Width (in px)"
|
150 |
msgstr "Ширина (в px)"
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
-
#: gallery-plugin.php:
|
154 |
msgid "Height (in px)"
|
155 |
msgstr "Висота (в px)"
|
156 |
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Size for gallery image"
|
159 |
msgstr "Розмір зображення галерея"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
163 |
msgstr "WordPress створить копію ескізу пост з заданими розмірами, коли ви завантажити нову фотографію."
|
164 |
|
165 |
-
#: gallery-plugin.php:
|
166 |
msgid "Count images in row"
|
167 |
msgstr "Кількість зображень у рядку"
|
168 |
|
169 |
-
#: gallery-plugin.php:
|
170 |
msgid "Save Changes"
|
171 |
msgstr "Зберегти зміни"
|
172 |
|
173 |
-
#: gallery-plugin.php:
|
174 |
msgid "FAQ"
|
175 |
msgstr "FAQ "
|
176 |
|
177 |
-
#: gallery-plugin.php:
|
178 |
msgid "Support"
|
179 |
msgstr "Підтримка"
|
180 |
|
181 |
-
#: template/gallery-single-template.php:
|
182 |
msgid "Sorry - nothing to found."
|
183 |
msgstr "Вибачте - нічого не знайдено."
|
184 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-03-12 19:34+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-03-12 19:34+0200\n"
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
22 |
msgstr "Галереi"
|
23 |
|
24 |
#: gallery-plugin.php:76
|
25 |
+
#: gallery-plugin.php:506
|
26 |
msgid "Gallery"
|
27 |
msgstr "Галерея"
|
28 |
|
54 |
msgid "No Galleries found"
|
55 |
msgstr "Галереї, не знайдено"
|
56 |
|
57 |
+
#: gallery-plugin.php:126
|
58 |
msgid "Upload File"
|
59 |
msgstr "Завантажити файл"
|
60 |
|
61 |
+
#: gallery-plugin.php:139
|
62 |
msgid "Choose a screenshot to upload:"
|
63 |
msgstr "Вибрати скріншот, щоб завантажити:"
|
64 |
|
65 |
+
#: gallery-plugin.php:143
|
66 |
msgid "Please enable JavaScript to use the file uploader."
|
67 |
msgstr "Будь ласка Дозвольте JavaScript, щоб використовувати файл uploader."
|
68 |
|
69 |
+
#: gallery-plugin.php:325
|
70 |
msgid "Title"
|
71 |
msgstr "Назва"
|
72 |
|
73 |
+
#: gallery-plugin.php:326
|
74 |
msgid "Author"
|
75 |
msgstr "Автор "
|
76 |
|
77 |
+
#: gallery-plugin.php:327
|
78 |
msgid "Photo's"
|
79 |
msgstr "Фото "
|
80 |
|
81 |
+
#: gallery-plugin.php:328
|
82 |
msgid "Public"
|
83 |
msgstr "Громадськості"
|
84 |
|
85 |
+
#: gallery-plugin.php:329
|
86 |
msgid "Date"
|
87 |
msgstr "Дата "
|
88 |
|
89 |
+
#: gallery-plugin.php:475
|
90 |
msgid "Activated plugins"
|
91 |
msgstr "Активоване плагіни"
|
92 |
|
93 |
+
#: gallery-plugin.php:477
|
94 |
+
#: gallery-plugin.php:485
|
95 |
+
#: gallery-plugin.php:493
|
96 |
msgid "Read more"
|
97 |
msgstr "Читати далі"
|
98 |
|
99 |
+
#: gallery-plugin.php:477
|
100 |
+
#: gallery-plugin.php:625
|
101 |
+
#: gallery-plugin.php:640
|
102 |
msgid "Settings"
|
103 |
msgstr "Параметри"
|
104 |
|
105 |
+
#: gallery-plugin.php:483
|
106 |
msgid "Installed plugins"
|
107 |
msgstr "Встановлених модулів"
|
108 |
|
109 |
+
#: gallery-plugin.php:491
|
110 |
msgid "Recommended plugins"
|
111 |
msgstr "Плагіни Рекомендовані"
|
112 |
|
113 |
+
#: gallery-plugin.php:493
|
114 |
msgid "Download"
|
115 |
msgstr "Завантажити"
|
116 |
|
117 |
+
#: gallery-plugin.php:493
|
118 |
#, php-format
|
119 |
msgid "Install %s"
|
120 |
msgstr "Установка %s"
|
121 |
|
122 |
+
#: gallery-plugin.php:493
|
123 |
msgid "Install now from wordpress.org"
|
124 |
msgstr "Установити зараз від wordpress.org"
|
125 |
|
126 |
+
#: gallery-plugin.php:495
|
127 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
128 |
msgstr "Якщо у вас є які-небудь питання, будь ласка, зв'яжіться з нами через plugin@bestwebsoft.com або заповнити нашу контактну форму на нашому сайті"
|
129 |
|
130 |
+
#: gallery-plugin.php:574
|
131 |
msgid "Options saved."
|
132 |
msgstr "Параметри зберігаються."
|
133 |
|
134 |
+
#: gallery-plugin.php:581
|
135 |
msgid "Gallery Options"
|
136 |
msgstr "Параметри галереї"
|
137 |
|
138 |
+
#: gallery-plugin.php:587
|
139 |
msgid "The size of the cover album for gallery"
|
140 |
msgstr "Розмір обкладинки альбому для галереї"
|
141 |
|
142 |
+
#: gallery-plugin.php:589
|
143 |
+
#: gallery-plugin.php:597
|
144 |
msgid "Image size name"
|
145 |
msgstr "Ім'я розмір зображення"
|
146 |
|
147 |
+
#: gallery-plugin.php:590
|
148 |
+
#: gallery-plugin.php:598
|
149 |
msgid "Width (in px)"
|
150 |
msgstr "Ширина (в px)"
|
151 |
|
152 |
+
#: gallery-plugin.php:591
|
153 |
+
#: gallery-plugin.php:599
|
154 |
msgid "Height (in px)"
|
155 |
msgstr "Висота (в px)"
|
156 |
|
157 |
+
#: gallery-plugin.php:595
|
158 |
msgid "Size for gallery image"
|
159 |
msgstr "Розмір зображення галерея"
|
160 |
|
161 |
+
#: gallery-plugin.php:603
|
162 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
163 |
msgstr "WordPress створить копію ескізу пост з заданими розмірами, коли ви завантажити нову фотографію."
|
164 |
|
165 |
+
#: gallery-plugin.php:606
|
166 |
msgid "Count images in row"
|
167 |
msgstr "Кількість зображень у рядку"
|
168 |
|
169 |
+
#: gallery-plugin.php:614
|
170 |
msgid "Save Changes"
|
171 |
msgstr "Зберегти зміни"
|
172 |
|
173 |
+
#: gallery-plugin.php:626
|
174 |
msgid "FAQ"
|
175 |
msgstr "FAQ "
|
176 |
|
177 |
+
#: gallery-plugin.php:627
|
178 |
msgid "Support"
|
179 |
msgstr "Підтримка"
|
180 |
|
181 |
+
#: template/gallery-single-template.php:60
|
182 |
msgid "Sorry - nothing to found."
|
183 |
msgstr "Вибачте - нічого не знайдено."
|
184 |
|
readme.txt
CHANGED
@@ -4,13 +4,13 @@ Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=1&
|
|
4 |
Tags: gallery, image, gallery image, album, foto, fotoalbum, website gallery, multiple pictures, pictures, photo, photoalbum, photogallery
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.3
|
7 |
-
Stable tag: 2.
|
8 |
|
9 |
-
This plugin allows you to implement gallery page into web site.
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
-
This plugin makes it possible to implement as many galleries as you want into your website. You can add multiple pictures and description
|
14 |
|
15 |
<a href="http://wordpress.org/extend/plugins/gallery-plugin/faq/" target="_blank">FAQ</a>
|
16 |
<a href="http://bestwebsoft.com/plugin/gallery-plugin/" target="_blank">Support</a>
|
@@ -18,47 +18,47 @@ This plugin makes it possible to implement as many galleries as you want into yo
|
|
18 |
= Features =
|
19 |
|
20 |
* Actions: Create any quantity of the albums in gallery.
|
21 |
-
* Description:
|
22 |
-
* Actions:
|
23 |
-
* Caption: Add caption to each photo
|
24 |
-
* Display: You can select
|
25 |
-
* Display:
|
26 |
* Slideshow: User can review all photos in album in full size and in slideshow.
|
27 |
|
28 |
-
=
|
29 |
|
30 |
-
* Dutch (nl_NL) (thanks <a href="ronald@hostingu.nl">HostingU, Ronald Verheul</a>)
|
31 |
-
* French (fr_FR) (thanks Didier)
|
32 |
-
* Georgian (ka_GE) (thanks Vako Patashuri)
|
33 |
* Russian (ru_RU)
|
34 |
-
* Ukrainian (uk_UA)(thanks Ted Mosby)
|
35 |
|
36 |
-
If you create your own language pack or update
|
37 |
|
38 |
== Installation ==
|
39 |
|
40 |
-
1. Upload
|
41 |
2. Activate the plugin through the 'Plugins' menu in WordPress.
|
42 |
-
3. Please check if you have the `gallery-template.php` template file
|
43 |
|
44 |
== Frequently Asked Questions ==
|
45 |
|
46 |
= I cannot view my Gallery page =
|
47 |
|
48 |
1. First of all, you need to create your first Gallery page and choose 'Gallery' from the list of available templates (which will be used for displaying our gallery).
|
49 |
-
2. If you cannot find 'Gallery'
|
50 |
|
51 |
= How to use plugin? =
|
52 |
|
53 |
1. Choose 'Add New' from the 'Galleries' menu and fill out your page.
|
54 |
-
2. Upload pictures by using
|
55 |
3. Save the page.
|
56 |
|
57 |
= How to add an image? =
|
58 |
|
59 |
-
- Choose the necessary gallery from the list on the Galleries page in
|
60 |
- Use the option 'Upload a file' available in the uploader, choose the necessary pictures and click 'Open'
|
61 |
-
- The files uploading process
|
62 |
- Once all pictures are uploaded, please save the page.
|
63 |
- If you see the message 'Please enable JavaScript to use the file uploader.', you should enable JavaScript in your browser.
|
64 |
|
@@ -72,75 +72,81 @@ The multiple files upload is supported by all modern browsers except Internet Ex
|
|
72 |
2. Galleries albums page on frontend.
|
73 |
3. Gallery Options page in admin panel.
|
74 |
4. Single gallery page.
|
75 |
-
5. PrettyPhoto pop-up window with images from album.
|
76 |
|
77 |
== Changelog ==
|
78 |
|
|
|
|
|
|
|
79 |
= V2.08 - 24.02.2012 =
|
80 |
-
* Change : Code to
|
81 |
-
* Bugfix : The bug with style for image block on admin page was fixed.
|
82 |
|
83 |
= V2.07 - 17.02.2012 =
|
84 |
-
* NEW :
|
85 |
* Bugfix : Problem with copying files gallery-single-template.php to theme was fixed.
|
86 |
|
87 |
= V2.06 - 14.02.2012 =
|
88 |
-
* NEW :
|
89 |
|
90 |
= V2.05 - 18.01.2012 =
|
91 |
-
* NEW :
|
92 |
-
* Change :
|
93 |
|
94 |
= V2.04 - 13.01.2012 =
|
95 |
-
* NEW :
|
96 |
|
97 |
= V2.03 - 12.01.2012 =
|
98 |
-
* Bugfix : Position to display images on single page
|
99 |
|
100 |
= V2.02 - 11.01.2012 =
|
101 |
-
* NEW :
|
102 |
|
103 |
= V2.01 - 03.01.2012 =
|
104 |
-
* NEW :
|
105 |
-
* NEW :
|
106 |
-
* NEW :
|
107 |
* Change : PrettyPhoto library was updated up to version 3.1.3.
|
108 |
-
* Bugfix : Button 'Sluiten' is replaced
|
109 |
|
110 |
= V1.02 - 13.10.2011 =
|
111 |
-
*
|
112 |
|
113 |
= V1.01 - 23.09.2011 =
|
114 |
-
*The file uploader is added to the Galleries page in
|
115 |
|
116 |
== Upgrade Notice ==
|
117 |
|
|
|
|
|
|
|
118 |
= V2.08 =
|
119 |
-
|
120 |
|
121 |
= V2.07 =
|
122 |
-
|
123 |
|
124 |
= V2.06 =
|
125 |
-
|
126 |
|
127 |
= V2.05 =
|
128 |
-
|
129 |
|
130 |
= V2.04 =
|
131 |
-
|
132 |
|
133 |
= V2.03 =
|
134 |
-
Position to display images on single page Gallery was fixed. Please upgrade the Gallery plugin. Thank you.
|
135 |
|
136 |
= V2.02 =
|
137 |
-
|
138 |
|
139 |
= V2.01 =
|
140 |
-
|
141 |
|
142 |
= V1.02 =
|
143 |
-
|
144 |
|
145 |
= V1.01 =
|
146 |
-
The file uploader is added to the Galleries page in
|
4 |
Tags: gallery, image, gallery image, album, foto, fotoalbum, website gallery, multiple pictures, pictures, photo, photoalbum, photogallery
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.3
|
7 |
+
Stable tag: 2.09
|
8 |
|
9 |
+
This plugin allows you to implement gallery page into your web site.
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
+
This plugin 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, it's possible to upload HQ pictures.
|
14 |
|
15 |
<a href="http://wordpress.org/extend/plugins/gallery-plugin/faq/" target="_blank">FAQ</a>
|
16 |
<a href="http://bestwebsoft.com/plugin/gallery-plugin/" target="_blank">Support</a>
|
18 |
= Features =
|
19 |
|
20 |
* Actions: Create any quantity of the albums in gallery.
|
21 |
+
* Description: Add description to each album.
|
22 |
+
* Actions: Possibility to load any number of photos to each album in the gallery.
|
23 |
+
* Caption: Add caption to each photo in the album.
|
24 |
+
* Display: You can select dimensions of the thumbnails for the cover of the album as well as for photos in the album.
|
25 |
+
* Display: A possibility to select a number of the photos for the separate page of album of the gallery which will be placed in one line.
|
26 |
* Slideshow: User can review all photos in album in full size and in slideshow.
|
27 |
|
28 |
+
= Translation =
|
29 |
|
30 |
+
* Dutch (nl_NL) (thanks to <a href="ronald@hostingu.nl">HostingU, Ronald Verheul</a>)
|
31 |
+
* French (fr_FR) (thanks to Didier)
|
32 |
+
* Georgian (ka_GE) (thanks to Vako Patashuri)
|
33 |
* Russian (ru_RU)
|
34 |
+
* Ukrainian (uk_UA)(thanks to Ted Mosby)
|
35 |
|
36 |
+
If you create your own language pack or update an existing one, you can send <a href="http://codex.wordpress.org/Translating_WordPress" target="_blank">the text in PO and MO files</a> for <a href="http://bestwebsoft.com/" target="_blank">BWS</a> and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO files <a href="http://www.poedit.net/download.php" target="_blank">Poedit</a>.
|
37 |
|
38 |
== Installation ==
|
39 |
|
40 |
+
1. Upload `Gallery` folder to the directory `/wp-content/plugins/`.
|
41 |
2. Activate the plugin through the 'Plugins' menu in WordPress.
|
42 |
+
3. Please check if you have the `gallery-template.php` template file as well as `gallery-single-template.php` template file in your templates directory. If you are not able to find these files, then just copy it from `/wp-content/plugins/gallery/template/` directory to your templates directory.
|
43 |
|
44 |
== Frequently Asked Questions ==
|
45 |
|
46 |
= I cannot view my Gallery page =
|
47 |
|
48 |
1. First of all, you need to create your first Gallery page and choose 'Gallery' from the list of available templates (which will be used for displaying our gallery).
|
49 |
+
2. If you cannot find 'Gallery' in the list of available templates, then just copy it from `/wp-content/plugins/gallery/template/` directory to your templates directory.
|
50 |
|
51 |
= How to use plugin? =
|
52 |
|
53 |
1. Choose 'Add New' from the 'Galleries' menu and fill out your page.
|
54 |
+
2. Upload pictures by using an uploader in the bottom of the page.
|
55 |
3. Save the page.
|
56 |
|
57 |
= How to add an image? =
|
58 |
|
59 |
+
- Choose the necessary gallery from the list on the Galleries page in admin section (or create a new gallery - choose 'Add New' from the 'Galleries' menu).
|
60 |
- Use the option 'Upload a file' available in the uploader, choose the necessary pictures and click 'Open'
|
61 |
+
- The files uploading process will start.
|
62 |
- Once all pictures are uploaded, please save the page.
|
63 |
- If you see the message 'Please enable JavaScript to use the file uploader.', you should enable JavaScript in your browser.
|
64 |
|
72 |
2. Galleries albums page on frontend.
|
73 |
3. Gallery Options page in admin panel.
|
74 |
4. Single gallery page.
|
75 |
+
5. PrettyPhoto pop-up window with images from the album.
|
76 |
|
77 |
== Changelog ==
|
78 |
|
79 |
+
= V2.09 - 12.03.2012 =
|
80 |
+
* Changed : BWS plugins section.
|
81 |
+
|
82 |
= V2.08 - 24.02.2012 =
|
83 |
+
* Change : Code that is used to connect styles and scripts is added to the plugin for correct SSL verification.
|
84 |
+
* Bugfix : The bug with style for image block on admin page was fixed.
|
85 |
|
86 |
= V2.07 - 17.02.2012 =
|
87 |
+
* NEW : Ukrainian language files are added to the plugin.
|
88 |
* Bugfix : Problem with copying files gallery-single-template.php to theme was fixed.
|
89 |
|
90 |
= V2.06 - 14.02.2012 =
|
91 |
+
* NEW : Dutch language files are added to the plugin.
|
92 |
|
93 |
= V2.05 - 18.01.2012 =
|
94 |
+
* NEW : A link to the plugin's settings page is added.
|
95 |
+
* Change : Revised Georgian language files are added to the plugin.
|
96 |
|
97 |
= V2.04 - 13.01.2012 =
|
98 |
+
* NEW : French language files are added to the plugin.
|
99 |
|
100 |
= V2.03 - 12.01.2012 =
|
101 |
+
* Bugfix : Position to display images on a Gallery single page was fixed.
|
102 |
|
103 |
= V2.02 - 11.01.2012 =
|
104 |
+
* NEW : Georgian language files are added to the plugin.
|
105 |
|
106 |
= V2.01 - 03.01.2012 =
|
107 |
+
* NEW : Adding of the caption to each photo in the album.
|
108 |
+
* NEW : A possibility to select the dimensions of the thumbnails for the cover of the album and for photos in album is added.
|
109 |
+
* NEW : A possibility to select a number of the photos for a separate page of the album in the gallery which will be placed in one line is added.
|
110 |
* Change : PrettyPhoto library was updated up to version 3.1.3.
|
111 |
+
* Bugfix : Button 'Sluiten' is replaced with a 'Close' button.
|
112 |
|
113 |
= V1.02 - 13.10.2011 =
|
114 |
+
* noConflict for jQuery is added.
|
115 |
|
116 |
= V1.01 - 23.09.2011 =
|
117 |
+
*The file uploader is added to the Galleries page in admin section.
|
118 |
|
119 |
== Upgrade Notice ==
|
120 |
|
121 |
+
= V2.09 - 07.03.2012 =
|
122 |
+
BWS plugins section has been changed.
|
123 |
+
|
124 |
= V2.08 =
|
125 |
+
Code that is used to connect styles and scripts is added to the plugin for correct SSL verification. The bug with a style for an image block on admin page was fixed.
|
126 |
|
127 |
= V2.07 =
|
128 |
+
Ukrainian language files are added to the plugin. Problem with copying files gallery-single-template.php to the theme was fixed.
|
129 |
|
130 |
= V2.06 =
|
131 |
+
Dutch language files are added to the plugin.
|
132 |
|
133 |
= V2.05 =
|
134 |
+
A link to the plugin's settings page is added. Revised Georgian language files are added to the plugin.
|
135 |
|
136 |
= V2.04 =
|
137 |
+
French language files are added to the plugin.
|
138 |
|
139 |
= V2.03 =
|
140 |
+
Position to display images on a single page of the Gallery was fixed. Please upgrade the Gallery plugin. Thank you.
|
141 |
|
142 |
= V2.02 =
|
143 |
+
Georgian language files are added to the plugin.
|
144 |
|
145 |
= V2.01 =
|
146 |
+
A possibility to add a caption to each photo of the album is added. A possibility to select dimensions of the thumbnails for the cover of the album and for photos in album is added. A possibility to select a number of the photos for a separate page of the album in the gallery which will be placed in one line is added. PrettyPhoto library was updated. Button 'Sluiten' is replaced with a 'Close' button. Please upgrade the Gallery plugin immediately. Thank you.
|
147 |
|
148 |
= V1.02 =
|
149 |
+
noConflict for jQuery is added.
|
150 |
|
151 |
= V1.01 =
|
152 |
+
The file uploader is added to the Galleries page in admin section.
|
template/gallery-single-template.php
CHANGED
@@ -1,8 +1,4 @@
|
|
1 |
<?php get_header(); ?>
|
2 |
-
<?php
|
3 |
-
global $post;
|
4 |
-
global $wpdb;
|
5 |
-
?>
|
6 |
<div id="container">
|
7 |
<div role="main" id="content">
|
8 |
<?php
|
1 |
<?php get_header(); ?>
|
|
|
|
|
|
|
|
|
2 |
<div id="container">
|
3 |
<div role="main" id="content">
|
4 |
<?php
|