Version Description
- Brazilian Portuguese (pt_BR) - Emmanuel Carvalho
- Belorussian (be_BY) - ilyuha
- Combine jquery.lightbox.css and jquery.tooltip.css into lightbox-gallery.css
Download this release
Release Info
Developer | Hiroaki Miyashita |
Plugin | Lightbox Gallery |
Version | 0.5 |
Comparing to | |
See all releases |
Code changes from version 0.4.7 to 0.5
- js/jquery.lightbox.css +0 -101
- js/jquery.tooltip.css +0 -9
- lightbox-gallery-be_BY.mo +0 -0
- lightbox-gallery-be_BY.po +149 -0
- lightbox-gallery-ja.mo +0 -0
- lightbox-gallery-ja.po +46 -51
- lightbox-gallery-pt_BR.mo +0 -0
- lightbox-gallery-pt_BR.po +153 -0
- lightbox-gallery.css +100 -1
- lightbox-gallery.php +3 -17
- lightbox-gallery.pot +35 -51
- readme.txt +12 -5
js/jquery.lightbox.css
DELETED
@@ -1,101 +0,0 @@
|
|
1 |
-
/**
|
2 |
-
* jQuery lightBox plugin
|
3 |
-
* This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
|
4 |
-
* and adapted to me for use like a plugin from jQuery.
|
5 |
-
* @name jquery-lightbox-0.5.css
|
6 |
-
* @author Leandro Vieira Pinho - http://leandrovieira.com
|
7 |
-
* @version 0.5
|
8 |
-
* @date April 11, 2008
|
9 |
-
* @category jQuery plugin
|
10 |
-
* @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com)
|
11 |
-
* @license CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/2.5/br/deed.en_US
|
12 |
-
* @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin
|
13 |
-
*/
|
14 |
-
#jquery-overlay {
|
15 |
-
position: absolute;
|
16 |
-
top: 0;
|
17 |
-
left: 0;
|
18 |
-
z-index: 90;
|
19 |
-
width: 100%;
|
20 |
-
height: 500px;
|
21 |
-
}
|
22 |
-
#jquery-lightbox {
|
23 |
-
position: absolute;
|
24 |
-
top: 0;
|
25 |
-
left: 0;
|
26 |
-
width: 100%;
|
27 |
-
z-index: 100;
|
28 |
-
text-align: center;
|
29 |
-
line-height: 0;
|
30 |
-
}
|
31 |
-
#jquery-lightbox a img { border: none; }
|
32 |
-
#lightbox-container-image-box {
|
33 |
-
position: relative;
|
34 |
-
background-color: #fff;
|
35 |
-
width: 250px;
|
36 |
-
height: 250px;
|
37 |
-
margin: 0 auto;
|
38 |
-
}
|
39 |
-
#lightbox-container-image { padding: 10px; }
|
40 |
-
#lightbox-loading {
|
41 |
-
position: absolute;
|
42 |
-
top: 40%;
|
43 |
-
left: 0%;
|
44 |
-
height: 25%;
|
45 |
-
width: 100%;
|
46 |
-
text-align: center;
|
47 |
-
line-height: 0;
|
48 |
-
}
|
49 |
-
#lightbox-nav {
|
50 |
-
position: absolute;
|
51 |
-
top: 0;
|
52 |
-
left: 0;
|
53 |
-
height: 100%;
|
54 |
-
width: 100%;
|
55 |
-
z-index: 10;
|
56 |
-
}
|
57 |
-
#lightbox-container-image-box > #lightbox-nav { left: 0; }
|
58 |
-
#lightbox-nav a { outline: none;}
|
59 |
-
#lightbox-nav-btnPrev, #lightbox-nav-btnNext {
|
60 |
-
width: 49%;
|
61 |
-
height: 100%;
|
62 |
-
zoom: 1;
|
63 |
-
display: block;
|
64 |
-
}
|
65 |
-
#lightbox-nav-btnPrev {
|
66 |
-
left: 0;
|
67 |
-
float: left;
|
68 |
-
}
|
69 |
-
#lightbox-nav-btnNext {
|
70 |
-
right: 0;
|
71 |
-
float: right;
|
72 |
-
}
|
73 |
-
#lightbox-container-image-data-box {
|
74 |
-
font: 10px Verdana, Helvetica, sans-serif;
|
75 |
-
background-color: #fff;
|
76 |
-
margin: 0 auto;
|
77 |
-
line-height: 1.4em;
|
78 |
-
overflow: auto;
|
79 |
-
width: 100%;
|
80 |
-
padding: 0 10px 0;
|
81 |
-
}
|
82 |
-
#lightbox-container-image-data {
|
83 |
-
padding: 0 10px;
|
84 |
-
color: #666;
|
85 |
-
}
|
86 |
-
#lightbox-container-image-data #lightbox-image-details {
|
87 |
-
width: 70%;
|
88 |
-
float: left;
|
89 |
-
text-align: left;
|
90 |
-
}
|
91 |
-
#lightbox-image-details-caption { font-weight: bold; }
|
92 |
-
#lightbox-image-details-currentNumber {
|
93 |
-
display: block;
|
94 |
-
clear: left;
|
95 |
-
padding-bottom: 1.0em;
|
96 |
-
}
|
97 |
-
#lightbox-secNav-btnClose {
|
98 |
-
width: 66px;
|
99 |
-
float: right;
|
100 |
-
padding-bottom: 0.7em;
|
101 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
js/jquery.tooltip.css
DELETED
@@ -1,9 +0,0 @@
|
|
1 |
-
#tooltip {
|
2 |
-
position: absolute;
|
3 |
-
z-index: 3000;
|
4 |
-
border: 1px solid #111;
|
5 |
-
background-color: #eee;
|
6 |
-
padding: 5px;
|
7 |
-
opacity: 0.85;
|
8 |
-
}
|
9 |
-
#tooltip h3, #tooltip div { margin: 0; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lightbox-gallery-be_BY.mo
ADDED
Binary file
|
lightbox-gallery-be_BY.po
ADDED
@@ -0,0 +1,149 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Lightbox Gallery\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-04-27 20:36+0900\n"
|
6 |
+
"PO-Revision-Date: 2009-08-28 02:45+0200\n"
|
7 |
+
"Last-Translator: Fat Cow <zhr@tut.by>\n"
|
8 |
+
"Language-Team: ilyuha <iliamrv@ya.ru>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-KeywordsList: __;_e;_c\n"
|
13 |
+
"X-Poedit-Basepath: ../\n"
|
14 |
+
"X-Poedit-Language: Belarusian\n"
|
15 |
+
"X-Poedit-Country: BELARUS\n"
|
16 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
+
"X-Poedit-SearchPath-0: lightbox-gallery\n"
|
18 |
+
|
19 |
+
#: lightbox-gallery/lightbox-gallery.php:147
|
20 |
+
msgid "Settings"
|
21 |
+
msgstr "Налады"
|
22 |
+
|
23 |
+
#: lightbox-gallery/lightbox-gallery.php:155
|
24 |
+
#: lightbox-gallery/lightbox-gallery.php:181
|
25 |
+
msgid "Lightbox Gallery"
|
26 |
+
msgstr "Lightbox Галерэя"
|
27 |
+
|
28 |
+
#: lightbox-gallery/lightbox-gallery.php:169
|
29 |
+
msgid "Options updated."
|
30 |
+
msgstr "Опцыі абноўлены"
|
31 |
+
|
32 |
+
#: lightbox-gallery/lightbox-gallery.php:173
|
33 |
+
msgid "Options deleted."
|
34 |
+
msgstr "Опцыі выдалены"
|
35 |
+
|
36 |
+
#: lightbox-gallery/lightbox-gallery.php:187
|
37 |
+
#: lightbox-gallery/lightbox-gallery.php:231
|
38 |
+
#: lightbox-gallery/lightbox-gallery.php:247
|
39 |
+
msgid "Click to toggle"
|
40 |
+
msgstr "Націсніце, каб разгарнуць"
|
41 |
+
|
42 |
+
#: lightbox-gallery/lightbox-gallery.php:188
|
43 |
+
msgid "Lightbox Gallery Options"
|
44 |
+
msgstr "Налады Lightbox Gallery"
|
45 |
+
|
46 |
+
#: lightbox-gallery/lightbox-gallery.php:194
|
47 |
+
msgid "In case that you would like to use the lightbox in certain categories (comma-deliminated)"
|
48 |
+
msgstr "У выпадку, калі Вы жадаеце выкарыстоўваць у lightbox вызначаныя катэгорыі (Comma-deliminated)"
|
49 |
+
|
50 |
+
#: lightbox-gallery/lightbox-gallery.php:198
|
51 |
+
msgid "In case that you would like to use the lightbox in certain pages (comma-deliminated)"
|
52 |
+
msgstr "У выпадку, калі Вы жадаеце выкарыстоўваць у lightbox вызначаныя старонкі (Comma-deliminated)"
|
53 |
+
|
54 |
+
#: lightbox-gallery/lightbox-gallery.php:202
|
55 |
+
msgid "In case that you would like to disable to load the lightbox-gallery.css"
|
56 |
+
msgstr "У выпадку, калі Вы жадаеце адключыць загрузку lightbox-gallery.css"
|
57 |
+
|
58 |
+
#: lightbox-gallery/lightbox-gallery.php:203
|
59 |
+
msgid "Do not use the lightbox-gallery.css"
|
60 |
+
msgstr "не выкарыстоўваць lightbox-gallery.css"
|
61 |
+
|
62 |
+
#: lightbox-gallery/lightbox-gallery.php:206
|
63 |
+
msgid "In case that you would like to disable to load the jquery.lightbox.css"
|
64 |
+
msgstr "У выпадку, калі Вы жадаеце адключыць загрузку jquery.lightbox.css"
|
65 |
+
|
66 |
+
#: lightbox-gallery/lightbox-gallery.php:207
|
67 |
+
msgid "Do not use the jquery.lightbox.css"
|
68 |
+
msgstr "Не выкарыстоўваць jquery.lightbox.css"
|
69 |
+
|
70 |
+
#: lightbox-gallery/lightbox-gallery.php:210
|
71 |
+
msgid "In case that you would like to disable to load the jquery.tooltip.css"
|
72 |
+
msgstr "У выпадку, калі Вы жадаеце адключыць загрузку jquery.tooltip.css"
|
73 |
+
|
74 |
+
#: lightbox-gallery/lightbox-gallery.php:211
|
75 |
+
msgid "Do not use the jquery.tooltip.css"
|
76 |
+
msgstr "не выкарыстоўваць jquery.tooltip.css"
|
77 |
+
|
78 |
+
#: lightbox-gallery/lightbox-gallery.php:214
|
79 |
+
msgid "In case that you would like to disable to load the column inline css"
|
80 |
+
msgstr "У выпадку, калі Вы жадаеце адключыць загрузку вонкавага css"
|
81 |
+
|
82 |
+
#: lightbox-gallery/lightbox-gallery.php:215
|
83 |
+
msgid "Do not use the column inline css"
|
84 |
+
msgstr "Не выкарыстоўваць вонкавы css"
|
85 |
+
|
86 |
+
#: lightbox-gallery/lightbox-gallery.php:218
|
87 |
+
msgid "In case that you would like to set the default number of columns"
|
88 |
+
msgstr "Наладзіць звычайную колькасць калонак"
|
89 |
+
|
90 |
+
#: lightbox-gallery/lightbox-gallery.php:222
|
91 |
+
msgid "Update Options »"
|
92 |
+
msgstr "Абнавіць налады »"
|
93 |
+
|
94 |
+
#: lightbox-gallery/lightbox-gallery.php:232
|
95 |
+
msgid "Delete Options"
|
96 |
+
msgstr "Выдаліць налады"
|
97 |
+
|
98 |
+
#: lightbox-gallery/lightbox-gallery.php:234
|
99 |
+
msgid "Are you sure to delete options? Options you set will be deleted."
|
100 |
+
msgstr "Вы ўпэўнены, што жадаеце выдаліць налады? "
|
101 |
+
|
102 |
+
#: lightbox-gallery/lightbox-gallery.php:238
|
103 |
+
msgid "Delete Options »"
|
104 |
+
msgstr "Выдаліць налады »"
|
105 |
+
|
106 |
+
#: lightbox-gallery/lightbox-gallery.php:248
|
107 |
+
msgid "Donation"
|
108 |
+
msgstr "Ахвяраванні"
|
109 |
+
|
110 |
+
#: lightbox-gallery/lightbox-gallery.php:250
|
111 |
+
msgid "If you liked this plugin, please make a donation via paypal! Any amount is welcome. Your support is much appreciated."
|
112 |
+
msgstr "Калі Вам падабаецца гэта ўбудова, зрабіце ахвяраванне праз сістэму paypal!"
|
113 |
+
|
114 |
+
#: lightbox-gallery/lightbox-gallery.php:324
|
115 |
+
msgid "Pages:"
|
116 |
+
msgstr "Старонка:"
|
117 |
+
|
118 |
+
#: lightbox-gallery/lightbox-gallery.php:326
|
119 |
+
msgid "Next page"
|
120 |
+
msgstr "наступная старонка"
|
121 |
+
|
122 |
+
#: lightbox-gallery/lightbox-gallery.php:327
|
123 |
+
msgid "Previous page"
|
124 |
+
msgstr "Папярэдняя старонка"
|
125 |
+
|
126 |
+
#: lightbox-gallery/lightbox-gallery.php:379
|
127 |
+
msgid "camera"
|
128 |
+
msgstr "камера"
|
129 |
+
|
130 |
+
#: lightbox-gallery/lightbox-gallery.php:381
|
131 |
+
msgid "aperture"
|
132 |
+
msgstr "апертура"
|
133 |
+
|
134 |
+
#: lightbox-gallery/lightbox-gallery.php:383
|
135 |
+
msgid "focal_length"
|
136 |
+
msgstr "focal_length"
|
137 |
+
|
138 |
+
#: lightbox-gallery/lightbox-gallery.php:385
|
139 |
+
msgid "ISO"
|
140 |
+
msgstr "ISO"
|
141 |
+
|
142 |
+
#: lightbox-gallery/lightbox-gallery.php:389
|
143 |
+
msgid "shutter_speed"
|
144 |
+
msgstr "shutter_speed"
|
145 |
+
|
146 |
+
#: lightbox-gallery/lightbox-gallery.php:392
|
147 |
+
msgid "created_timestamp"
|
148 |
+
msgstr "created_timestamp"
|
149 |
+
|
lightbox-gallery-ja.mo
CHANGED
Binary file
|
lightbox-gallery-ja.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Lightbox Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2009-
|
6 |
-
"PO-Revision-Date: 2009-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,142 +16,137 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: ../\n"
|
17 |
"X-Poedit-SearchPath-0: lightbox-gallery\n"
|
18 |
|
19 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
20 |
msgid "Settings"
|
21 |
msgstr "設定"
|
22 |
|
23 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
24 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
25 |
msgid "Lightbox Gallery"
|
26 |
msgstr "Lightbox Gallery"
|
27 |
|
28 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
29 |
msgid "Options updated."
|
30 |
msgstr "オプションは更新されました。"
|
31 |
|
32 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
33 |
msgid "Options deleted."
|
34 |
msgstr "オプションは削除されました。"
|
35 |
|
36 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
37 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
38 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
39 |
msgid "Click to toggle"
|
40 |
msgstr "クリックで切替"
|
41 |
|
42 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
43 |
msgid "Lightbox Gallery Options"
|
44 |
msgstr "Lightbox Gallery オプション"
|
45 |
|
46 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
47 |
msgid "In case that you would like to use the lightbox in certain categories (comma-deliminated)"
|
48 |
msgstr "特定のカテゴリーでLightboxを使用したい場合(カンマ区切り)"
|
49 |
|
50 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
51 |
msgid "In case that you would like to use the lightbox in certain pages (comma-deliminated)"
|
52 |
msgstr "特定のページでLightboxを使用したい場合(カンマ区切り)"
|
53 |
|
54 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
55 |
msgid "In case that you would like to disable to load the lightbox-gallery.css"
|
56 |
msgstr "lightbox-gallery.cssの読み込みを禁止する場合"
|
57 |
|
58 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
59 |
msgid "Do not use the lightbox-gallery.css"
|
60 |
msgstr "lightbox-gallery.cssを使用しない"
|
61 |
|
62 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
63 |
-
msgid "In case that you would like to disable to load the jquery.lightbox.css"
|
64 |
-
msgstr "jquery.lightbox.cssの読み込みを禁止する場合"
|
65 |
-
|
66 |
-
#: lightbox-gallery/lightbox-gallery.php:212
|
67 |
-
msgid "Do not use the jquery.lightbox.css"
|
68 |
-
msgstr "jquery.lightbox.cssを使用しない"
|
69 |
-
|
70 |
-
#: lightbox-gallery/lightbox-gallery.php:215
|
71 |
-
msgid "In case that you would like to disable to load the jquery.tooltip.css"
|
72 |
-
msgstr "jquery.tooltip.cssの読み込みを禁止する場合"
|
73 |
-
|
74 |
-
#: lightbox-gallery/lightbox-gallery.php:216
|
75 |
-
msgid "Do not use the jquery.tooltip.css"
|
76 |
-
msgstr "jquery.tooltip.cssを使用しない"
|
77 |
-
|
78 |
-
#: lightbox-gallery/lightbox-gallery.php:219
|
79 |
msgid "In case that you would like to disable to load the column inline css"
|
80 |
msgstr "コラムのインラインcssの読み込みを禁止する場合"
|
81 |
|
82 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
83 |
msgid "Do not use the column inline css"
|
84 |
msgstr "コラムのインラインcssを使用しない"
|
85 |
|
86 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
87 |
msgid "In case that you would like to set the default number of columns"
|
88 |
msgstr "デフォルトのコラム数をセットする場合"
|
89 |
|
90 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
91 |
msgid "In case that you would like to set the default thumbnail size"
|
92 |
msgstr "デフォルトのサムネイルサイズをセットする場合"
|
93 |
|
94 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
95 |
msgid "In case that you would like to set the default lightbox size"
|
96 |
msgstr "デフォルトのlightboxサイズをセットする場合"
|
97 |
|
98 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
99 |
msgid "Update Options »"
|
100 |
msgstr "オプションを更新する »"
|
101 |
|
102 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
103 |
msgid "Delete Options"
|
104 |
msgstr "オプションを削除する"
|
105 |
|
106 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
107 |
msgid "Are you sure to delete options? Options you set will be deleted."
|
108 |
msgstr "本当にオプションを削除しますか?設定したオプションは削除されます。"
|
109 |
|
110 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
111 |
msgid "Delete Options »"
|
112 |
msgstr "オプションを削除する »"
|
113 |
|
114 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
115 |
msgid "Donation"
|
116 |
msgstr "寄付"
|
117 |
|
118 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
119 |
msgid "If you liked this plugin, please make a donation via paypal! Any amount is welcome. Your support is much appreciated."
|
120 |
msgstr "このプラグインをお気に召しましたら、Paypalよりご寄付をよろしくお願いいたします。"
|
121 |
|
122 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
123 |
msgid "Pages:"
|
124 |
msgstr "ページ:"
|
125 |
|
126 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
127 |
msgid "Next page"
|
128 |
msgstr "次のページ"
|
129 |
|
130 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
131 |
msgid "Previous page"
|
132 |
msgstr "前のページ"
|
133 |
|
134 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
135 |
msgid "camera"
|
136 |
msgstr "機種"
|
137 |
|
138 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
139 |
msgid "aperture"
|
140 |
msgstr "絞り値"
|
141 |
|
142 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
143 |
msgid "focal_length"
|
144 |
msgstr "焦点距離"
|
145 |
|
146 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
147 |
msgid "ISO"
|
148 |
msgstr "ISO"
|
149 |
|
150 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
151 |
msgid "shutter_speed"
|
152 |
msgstr "シャッタースピード"
|
153 |
|
154 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
155 |
msgid "created_timestamp"
|
156 |
msgstr "撮影日時"
|
157 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Lightbox Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-09-10 09:39+0900\n"
|
6 |
+
"PO-Revision-Date: 2009-09-10 09:39+0900\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: ../\n"
|
17 |
"X-Poedit-SearchPath-0: lightbox-gallery\n"
|
18 |
|
19 |
+
#: lightbox-gallery/lightbox-gallery.php:146
|
20 |
msgid "Settings"
|
21 |
msgstr "設定"
|
22 |
|
23 |
+
#: lightbox-gallery/lightbox-gallery.php:154
|
24 |
+
#: lightbox-gallery/lightbox-gallery.php:180
|
25 |
msgid "Lightbox Gallery"
|
26 |
msgstr "Lightbox Gallery"
|
27 |
|
28 |
+
#: lightbox-gallery/lightbox-gallery.php:168
|
29 |
msgid "Options updated."
|
30 |
msgstr "オプションは更新されました。"
|
31 |
|
32 |
+
#: lightbox-gallery/lightbox-gallery.php:172
|
33 |
msgid "Options deleted."
|
34 |
msgstr "オプションは削除されました。"
|
35 |
|
36 |
+
#: lightbox-gallery/lightbox-gallery.php:186
|
37 |
+
#: lightbox-gallery/lightbox-gallery.php:230
|
38 |
+
#: lightbox-gallery/lightbox-gallery.php:246
|
39 |
msgid "Click to toggle"
|
40 |
msgstr "クリックで切替"
|
41 |
|
42 |
+
#: lightbox-gallery/lightbox-gallery.php:187
|
43 |
msgid "Lightbox Gallery Options"
|
44 |
msgstr "Lightbox Gallery オプション"
|
45 |
|
46 |
+
#: lightbox-gallery/lightbox-gallery.php:193
|
47 |
msgid "In case that you would like to use the lightbox in certain categories (comma-deliminated)"
|
48 |
msgstr "特定のカテゴリーでLightboxを使用したい場合(カンマ区切り)"
|
49 |
|
50 |
+
#: lightbox-gallery/lightbox-gallery.php:197
|
51 |
msgid "In case that you would like to use the lightbox in certain pages (comma-deliminated)"
|
52 |
msgstr "特定のページでLightboxを使用したい場合(カンマ区切り)"
|
53 |
|
54 |
+
#: lightbox-gallery/lightbox-gallery.php:201
|
55 |
msgid "In case that you would like to disable to load the lightbox-gallery.css"
|
56 |
msgstr "lightbox-gallery.cssの読み込みを禁止する場合"
|
57 |
|
58 |
+
#: lightbox-gallery/lightbox-gallery.php:202
|
59 |
msgid "Do not use the lightbox-gallery.css"
|
60 |
msgstr "lightbox-gallery.cssを使用しない"
|
61 |
|
62 |
+
#: lightbox-gallery/lightbox-gallery.php:205
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
msgid "In case that you would like to disable to load the column inline css"
|
64 |
msgstr "コラムのインラインcssの読み込みを禁止する場合"
|
65 |
|
66 |
+
#: lightbox-gallery/lightbox-gallery.php:206
|
67 |
msgid "Do not use the column inline css"
|
68 |
msgstr "コラムのインラインcssを使用しない"
|
69 |
|
70 |
+
#: lightbox-gallery/lightbox-gallery.php:209
|
71 |
msgid "In case that you would like to set the default number of columns"
|
72 |
msgstr "デフォルトのコラム数をセットする場合"
|
73 |
|
74 |
+
#: lightbox-gallery/lightbox-gallery.php:213
|
75 |
msgid "In case that you would like to set the default thumbnail size"
|
76 |
msgstr "デフォルトのサムネイルサイズをセットする場合"
|
77 |
|
78 |
+
#: lightbox-gallery/lightbox-gallery.php:217
|
79 |
msgid "In case that you would like to set the default lightbox size"
|
80 |
msgstr "デフォルトのlightboxサイズをセットする場合"
|
81 |
|
82 |
+
#: lightbox-gallery/lightbox-gallery.php:221
|
83 |
msgid "Update Options »"
|
84 |
msgstr "オプションを更新する »"
|
85 |
|
86 |
+
#: lightbox-gallery/lightbox-gallery.php:231
|
87 |
msgid "Delete Options"
|
88 |
msgstr "オプションを削除する"
|
89 |
|
90 |
+
#: lightbox-gallery/lightbox-gallery.php:233
|
91 |
msgid "Are you sure to delete options? Options you set will be deleted."
|
92 |
msgstr "本当にオプションを削除しますか?設定したオプションは削除されます。"
|
93 |
|
94 |
+
#: lightbox-gallery/lightbox-gallery.php:237
|
95 |
msgid "Delete Options »"
|
96 |
msgstr "オプションを削除する »"
|
97 |
|
98 |
+
#: lightbox-gallery/lightbox-gallery.php:247
|
99 |
msgid "Donation"
|
100 |
msgstr "寄付"
|
101 |
|
102 |
+
#: lightbox-gallery/lightbox-gallery.php:249
|
103 |
msgid "If you liked this plugin, please make a donation via paypal! Any amount is welcome. Your support is much appreciated."
|
104 |
msgstr "このプラグインをお気に召しましたら、Paypalよりご寄付をよろしくお願いいたします。"
|
105 |
|
106 |
+
#: lightbox-gallery/lightbox-gallery.php:329
|
107 |
msgid "Pages:"
|
108 |
msgstr "ページ:"
|
109 |
|
110 |
+
#: lightbox-gallery/lightbox-gallery.php:331
|
111 |
msgid "Next page"
|
112 |
msgstr "次のページ"
|
113 |
|
114 |
+
#: lightbox-gallery/lightbox-gallery.php:332
|
115 |
msgid "Previous page"
|
116 |
msgstr "前のページ"
|
117 |
|
118 |
+
#: lightbox-gallery/lightbox-gallery.php:385
|
119 |
msgid "camera"
|
120 |
msgstr "機種"
|
121 |
|
122 |
+
#: lightbox-gallery/lightbox-gallery.php:387
|
123 |
msgid "aperture"
|
124 |
msgstr "絞り値"
|
125 |
|
126 |
+
#: lightbox-gallery/lightbox-gallery.php:389
|
127 |
msgid "focal_length"
|
128 |
msgstr "焦点距離"
|
129 |
|
130 |
+
#: lightbox-gallery/lightbox-gallery.php:391
|
131 |
msgid "ISO"
|
132 |
msgstr "ISO"
|
133 |
|
134 |
+
#: lightbox-gallery/lightbox-gallery.php:395
|
135 |
msgid "shutter_speed"
|
136 |
msgstr "シャッタースピード"
|
137 |
|
138 |
+
#: lightbox-gallery/lightbox-gallery.php:398
|
139 |
msgid "created_timestamp"
|
140 |
msgstr "撮影日時"
|
141 |
|
142 |
+
#~ msgid ""
|
143 |
+
#~ "In case that you would like to disable to load the jquery.lightbox.css"
|
144 |
+
#~ msgstr "jquery.lightbox.cssの読み込みを禁止する場合"
|
145 |
+
#~ msgid "Do not use the jquery.lightbox.css"
|
146 |
+
#~ msgstr "jquery.lightbox.cssを使用しない"
|
147 |
+
#~ msgid ""
|
148 |
+
#~ "In case that you would like to disable to load the jquery.tooltip.css"
|
149 |
+
#~ msgstr "jquery.tooltip.cssの読み込みを禁止する場合"
|
150 |
+
#~ msgid "Do not use the jquery.tooltip.css"
|
151 |
+
#~ msgstr "jquery.tooltip.cssを使用しない"
|
152 |
+
|
lightbox-gallery-pt_BR.mo
ADDED
Binary file
|
lightbox-gallery-pt_BR.po
ADDED
@@ -0,0 +1,153 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Lightbox Gallery 0.4 pt_BR\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-04-27 20:36+0900\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Emmanuel Carvalho <contato@emmanuelcarvalho.com.br>\n"
|
8 |
+
"Language-Team: Emmanuel Carvalho - http://www.emmanuelcarvalho.com.br <contato@emmanuelcarvalho.com.br>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-Language: Brazilian Portuguese\n"
|
13 |
+
"X-Poedit-Country: BRAZIL\n"
|
14 |
+
|
15 |
+
#: lightbox-gallery/lightbox-gallery.php:147
|
16 |
+
msgid "Settings"
|
17 |
+
msgstr "Parâmetros"
|
18 |
+
|
19 |
+
#: lightbox-gallery/lightbox-gallery.php:155
|
20 |
+
#: lightbox-gallery/lightbox-gallery.php:181
|
21 |
+
msgid "Lightbox Gallery"
|
22 |
+
msgstr "Galeria Lightbox"
|
23 |
+
|
24 |
+
#: lightbox-gallery/lightbox-gallery.php:169
|
25 |
+
msgid "Options updated."
|
26 |
+
msgstr "Opções atualizadas."
|
27 |
+
|
28 |
+
#: lightbox-gallery/lightbox-gallery.php:173
|
29 |
+
msgid "Options deleted."
|
30 |
+
msgstr "Opções apagadas."
|
31 |
+
|
32 |
+
#: lightbox-gallery/lightbox-gallery.php:187
|
33 |
+
#: lightbox-gallery/lightbox-gallery.php:231
|
34 |
+
#: lightbox-gallery/lightbox-gallery.php:247
|
35 |
+
msgid "Click to toggle"
|
36 |
+
msgstr "Clique para alternar"
|
37 |
+
|
38 |
+
#: lightbox-gallery/lightbox-gallery.php:188
|
39 |
+
msgid "Lightbox Gallery Options"
|
40 |
+
msgstr "Opções da Galeria Lightbox"
|
41 |
+
|
42 |
+
#: lightbox-gallery/lightbox-gallery.php:194
|
43 |
+
msgid "In case that you would like to use the lightbox in certain categories (comma-deliminated)"
|
44 |
+
msgstr "Caso você queira utilizar lightbox em certas categorias (separado por vírgulas)"
|
45 |
+
|
46 |
+
#: lightbox-gallery/lightbox-gallery.php:198
|
47 |
+
msgid "In case that you would like to use the lightbox in certain pages (comma-deliminated)"
|
48 |
+
msgstr "Caso você queira utilizar lightbox em certas páginas (separado por vírgulas)"
|
49 |
+
|
50 |
+
#: lightbox-gallery/lightbox-gallery.php:202
|
51 |
+
msgid "In case that you would like to disable to load the lightbox-gallery.css"
|
52 |
+
msgstr "Caso você queira desativar o carregamento do lightbox-gallery.css"
|
53 |
+
|
54 |
+
#: lightbox-gallery/lightbox-gallery.php:203
|
55 |
+
msgid "Do not use the lightbox-gallery.css"
|
56 |
+
msgstr "Não use o lightbox-gallery.css"
|
57 |
+
|
58 |
+
#: lightbox-gallery/lightbox-gallery.php:206
|
59 |
+
msgid "In case that you would like to disable to load the jquery.lightbox.css"
|
60 |
+
msgstr "Caso você queira desativar o carregamento do jquery.lightbox.css"
|
61 |
+
|
62 |
+
#: lightbox-gallery/lightbox-gallery.php:207
|
63 |
+
msgid "Do not use the jquery.lightbox.css"
|
64 |
+
msgstr "Não use o jquery.lightbox.css"
|
65 |
+
|
66 |
+
#: lightbox-gallery/lightbox-gallery.php:210
|
67 |
+
msgid "In case that you would like to disable to load the jquery.tooltip.css"
|
68 |
+
msgstr "No caso de você querer desativar o carregamento do jquery.tooltip.css"
|
69 |
+
|
70 |
+
#: lightbox-gallery/lightbox-gallery.php:211
|
71 |
+
msgid "Do not use the jquery.tooltip.css"
|
72 |
+
msgstr "Não use o jquery.tooltip.css"
|
73 |
+
|
74 |
+
#: lightbox-gallery/lightbox-gallery.php:214
|
75 |
+
msgid "In case that you would like to disable to load the column inline css"
|
76 |
+
msgstr "Caso você queira desabilitar o carregamento do css integrado por colunas"
|
77 |
+
|
78 |
+
#: lightbox-gallery/lightbox-gallery.php:215
|
79 |
+
msgid "Do not use the column inline css"
|
80 |
+
msgstr "Não use css integrado nas colunas"
|
81 |
+
|
82 |
+
#: lightbox-gallery/lightbox-gallery.php:218
|
83 |
+
msgid "In case that you would like to set the default number of columns"
|
84 |
+
msgstr "Caso você queira armazenar o número de colunas padrão"
|
85 |
+
|
86 |
+
#: lightbox-gallery/lightbox-gallery.php:222
|
87 |
+
msgid "Update Options »"
|
88 |
+
msgstr "Atualizar Opções »"
|
89 |
+
|
90 |
+
#: lightbox-gallery/lightbox-gallery.php:232
|
91 |
+
msgid "Delete Options"
|
92 |
+
msgstr "Apagar Opções"
|
93 |
+
|
94 |
+
#: lightbox-gallery/lightbox-gallery.php:234
|
95 |
+
msgid "Are you sure to delete options? Options you set will be deleted."
|
96 |
+
msgstr "Tem certeza que deseja apagar as opções? As opções que foram configuradas serão apagadas."
|
97 |
+
|
98 |
+
#: lightbox-gallery/lightbox-gallery.php:238
|
99 |
+
msgid "Delete Options »"
|
100 |
+
msgstr "Apagar Opções »"
|
101 |
+
|
102 |
+
#: lightbox-gallery/lightbox-gallery.php:248
|
103 |
+
msgid "Donation"
|
104 |
+
msgstr "Doação"
|
105 |
+
|
106 |
+
#: lightbox-gallery/lightbox-gallery.php:250
|
107 |
+
msgid "If you liked this plugin, please make a donation via paypal! Any amount is welcome. Your support is much appreciated."
|
108 |
+
msgstr "Se você gostou deste plugin, por favor, faça uma doação pelo PayPal! Qualquer valor é bem vindo. Sua contribuição será muito apreciada."
|
109 |
+
|
110 |
+
#: lightbox-gallery/lightbox-gallery.php:324
|
111 |
+
msgid "Pages:"
|
112 |
+
msgstr "Páginas:"
|
113 |
+
|
114 |
+
#: lightbox-gallery/lightbox-gallery.php:326
|
115 |
+
msgid "Next page"
|
116 |
+
msgstr "Próxima Página"
|
117 |
+
|
118 |
+
#: lightbox-gallery/lightbox-gallery.php:327
|
119 |
+
msgid "Previous page"
|
120 |
+
msgstr "Página Anterior"
|
121 |
+
|
122 |
+
#: lightbox-gallery/lightbox-gallery.php:379
|
123 |
+
msgid "camera"
|
124 |
+
msgstr "Camera"
|
125 |
+
|
126 |
+
#: lightbox-gallery/lightbox-gallery.php:381
|
127 |
+
msgid "aperture"
|
128 |
+
msgstr "Abertura"
|
129 |
+
|
130 |
+
#: lightbox-gallery/lightbox-gallery.php:383
|
131 |
+
msgid "focal_length"
|
132 |
+
msgstr "Distância Focal"
|
133 |
+
|
134 |
+
#: lightbox-gallery/lightbox-gallery.php:385
|
135 |
+
msgid "ISO"
|
136 |
+
msgstr "ISO"
|
137 |
+
|
138 |
+
#: lightbox-gallery/lightbox-gallery.php:389
|
139 |
+
msgid "shutter_speed"
|
140 |
+
msgstr "Velocidade do Obturador"
|
141 |
+
|
142 |
+
#: lightbox-gallery/lightbox-gallery.php:392
|
143 |
+
msgid "created_timestamp"
|
144 |
+
msgstr "Data de Criação"
|
145 |
+
|
146 |
+
#: lightbox-gallery/lightbox-gallery.php:227
|
147 |
+
msgid "In case that you would like to set the default thumbnail size"
|
148 |
+
msgstr "Caso você queira configurar o valor padrão para o tamanho da miniatura"
|
149 |
+
|
150 |
+
#: lightbox-gallery/lightbox-gallery.php:231
|
151 |
+
msgid "In case that you would like to set the default lightbox size"
|
152 |
+
msgstr "Caso você queira configurar o tamanho padrão para o lightbox"
|
153 |
+
|
lightbox-gallery.css
CHANGED
@@ -5,4 +5,103 @@
|
|
5 |
.gallery img {border: 2px solid #cfcfcf;}
|
6 |
/* If you want to show images slowly, use this. And you need to edit lightbox-gallery.js too. */
|
7 |
/* .gallery img {display: none; border: 2px solid #cfcfcf;} */
|
8 |
-
.gallery-caption {margin-left: 0; display:none;}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
.gallery img {border: 2px solid #cfcfcf;}
|
6 |
/* If you want to show images slowly, use this. And you need to edit lightbox-gallery.js too. */
|
7 |
/* .gallery img {display: none; border: 2px solid #cfcfcf;} */
|
8 |
+
.gallery-caption {margin-left: 0; display:none;}
|
9 |
+
|
10 |
+
#tooltip {
|
11 |
+
position: absolute;
|
12 |
+
z-index: 3000;
|
13 |
+
border: 1px solid #111;
|
14 |
+
background-color: #eee;
|
15 |
+
padding: 5px;
|
16 |
+
opacity: 0.85;
|
17 |
+
}
|
18 |
+
#tooltip h3, #tooltip div { margin: 0; }
|
19 |
+
|
20 |
+
#jquery-overlay {
|
21 |
+
position: absolute;
|
22 |
+
top: 0;
|
23 |
+
left: 0;
|
24 |
+
z-index: 90;
|
25 |
+
width: 100%;
|
26 |
+
height: 500px;
|
27 |
+
}
|
28 |
+
#jquery-lightbox {
|
29 |
+
position: absolute;
|
30 |
+
top: 0;
|
31 |
+
left: 0;
|
32 |
+
width: 100%;
|
33 |
+
z-index: 100;
|
34 |
+
text-align: center;
|
35 |
+
line-height: 0;
|
36 |
+
}
|
37 |
+
#jquery-lightbox a img { border: none; }
|
38 |
+
#lightbox-container-image-box {
|
39 |
+
position: relative;
|
40 |
+
background-color: #fff;
|
41 |
+
width: 250px;
|
42 |
+
height: 250px;
|
43 |
+
margin: 0 auto;
|
44 |
+
}
|
45 |
+
#lightbox-container-image { padding: 10px; }
|
46 |
+
#lightbox-loading {
|
47 |
+
position: absolute;
|
48 |
+
top: 40%;
|
49 |
+
left: 0%;
|
50 |
+
height: 25%;
|
51 |
+
width: 100%;
|
52 |
+
text-align: center;
|
53 |
+
line-height: 0;
|
54 |
+
}
|
55 |
+
#lightbox-nav {
|
56 |
+
position: absolute;
|
57 |
+
top: 0;
|
58 |
+
left: 0;
|
59 |
+
height: 100%;
|
60 |
+
width: 100%;
|
61 |
+
z-index: 10;
|
62 |
+
}
|
63 |
+
#lightbox-container-image-box > #lightbox-nav { left: 0; }
|
64 |
+
#lightbox-nav a { outline: none;}
|
65 |
+
#lightbox-nav-btnPrev, #lightbox-nav-btnNext {
|
66 |
+
width: 49%;
|
67 |
+
height: 100%;
|
68 |
+
zoom: 1;
|
69 |
+
display: block;
|
70 |
+
}
|
71 |
+
#lightbox-nav-btnPrev {
|
72 |
+
left: 0;
|
73 |
+
float: left;
|
74 |
+
}
|
75 |
+
#lightbox-nav-btnNext {
|
76 |
+
right: 0;
|
77 |
+
float: right;
|
78 |
+
}
|
79 |
+
#lightbox-container-image-data-box {
|
80 |
+
font: 10px Verdana, Helvetica, sans-serif;
|
81 |
+
background-color: #fff;
|
82 |
+
margin: 0 auto;
|
83 |
+
line-height: 1.4em;
|
84 |
+
overflow: auto;
|
85 |
+
width: 100%;
|
86 |
+
padding: 0 10px 0;
|
87 |
+
}
|
88 |
+
#lightbox-container-image-data {
|
89 |
+
padding: 0 10px;
|
90 |
+
color: #666;
|
91 |
+
}
|
92 |
+
#lightbox-container-image-data #lightbox-image-details {
|
93 |
+
width: 70%;
|
94 |
+
float: left;
|
95 |
+
text-align: left;
|
96 |
+
}
|
97 |
+
#lightbox-image-details-caption { font-weight: bold; }
|
98 |
+
#lightbox-image-details-currentNumber {
|
99 |
+
display: block;
|
100 |
+
clear: left;
|
101 |
+
padding-bottom: 1.0em;
|
102 |
+
}
|
103 |
+
#lightbox-secNav-btnClose {
|
104 |
+
width: 66px;
|
105 |
+
float: right;
|
106 |
+
padding-bottom: 0.7em;
|
107 |
+
}
|
lightbox-gallery.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Lightbox Gallery
|
4 |
-
Plugin URI: http://
|
5 |
Description: Changes to the lightbox view in galleries.
|
6 |
Author: Hiroaki Miyashita
|
7 |
-
Version: 0.
|
8 |
-
Author URI: http://
|
9 |
*/
|
10 |
|
11 |
add_action( 'init', 'lightbox_gallery_textdomain' );
|
@@ -76,12 +76,6 @@ function add_lightbox_gallery_head() {
|
|
76 |
echo '<link rel="stylesheet" type="text/css" href="' . get_settings('siteurl') . '/' . PLUGINDIR . '/' . $plugin_dir . '/lightbox-gallery.css" />'."\n";
|
77 |
}
|
78 |
endif;
|
79 |
-
if ( !$options['global_settings']['lightbox_gallery_disable_lightbox_css'] ) :
|
80 |
-
echo '<link rel="stylesheet" type="text/css" href="' . get_settings('siteurl') . '/' . PLUGINDIR . '/' . $plugin_dir . '/js/jquery.lightbox.css" />'."\n";
|
81 |
-
endif;
|
82 |
-
if ( !$options['global_settings']['lightbox_gallery_disable_tooltip_css'] ) :
|
83 |
-
echo '<link rel="stylesheet" type="text/css" href="' . get_settings('siteurl') . '/' . PLUGINDIR . '/' . $plugin_dir . '/js/jquery.tooltip.css" />'."\n";
|
84 |
-
endif;
|
85 |
}
|
86 |
}
|
87 |
|
@@ -208,14 +202,6 @@ function lightbox_gallery_admin() {
|
|
208 |
<input type="checkbox" name="lightbox_gallery_disable_lightbox_gallery_css" id="lightbox_gallery_disable_lightbox_gallery_css" value="1" <?php if ($options['global_settings']['lightbox_gallery_disable_lightbox_gallery_css']) { echo 'checked="checked"'; } ?> /> <?php _e('Do not use the lightbox-gallery.css', 'lightbox-gallery'); ?></p>
|
209 |
</td></tr>
|
210 |
<tr><td>
|
211 |
-
<p><label for="lightbox_gallery_disable_lightbox_css"><?php _e('In case that you would like to disable to load the jquery.lightbox.css', 'lightbox-gallery'); ?></label>:<br />
|
212 |
-
<input type="checkbox" name="lightbox_gallery_disable_lightbox_css" id="lightbox_gallery_disable_lightbox_css" value="1" <?php if ($options['global_settings']['lightbox_gallery_disable_lightbox_css']) { echo 'checked="checked"'; } ?> /> <?php _e('Do not use the jquery.lightbox.css', 'lightbox-gallery'); ?></p>
|
213 |
-
</td></tr>
|
214 |
-
<tr><td>
|
215 |
-
<p><label for="lightbox_gallery_disable_tooltip_css"><?php _e('In case that you would like to disable to load the jquery.tooltip.css', 'lightbox-gallery'); ?></label>:<br />
|
216 |
-
<input type="checkbox" name="lightbox_gallery_disable_tooltip_css" id="lightbox_gallery_disable_tooltip_css" value="1" <?php if ($options['global_settings']['lightbox_gallery_disable_tooltip_css']) { echo 'checked="checked"'; } ?> /> <?php _e('Do not use the jquery.tooltip.css', 'lightbox-gallery'); ?></p>
|
217 |
-
</td></tr>
|
218 |
-
<tr><td>
|
219 |
<p><label for="lightbox_gallery_disable_column_css"><?php _e('In case that you would like to disable to load the column inline css', 'lightbox-gallery'); ?></label>:<br />
|
220 |
<input type="checkbox" name="lightbox_gallery_disable_column_css" id="lightbox_gallery_disable_column_css" value="1" <?php if ($options['global_settings']['lightbox_gallery_disable_column_css']) { echo 'checked="checked"'; } ?> /> <?php _e('Do not use the column inline css', 'lightbox-gallery'); ?></p>
|
221 |
</td></tr>
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Lightbox Gallery
|
4 |
+
Plugin URI: http://wpgogo.com/development/lightbox-gallery.html
|
5 |
Description: Changes to the lightbox view in galleries.
|
6 |
Author: Hiroaki Miyashita
|
7 |
+
Version: 0.5
|
8 |
+
Author URI: http://wpgogo.com/
|
9 |
*/
|
10 |
|
11 |
add_action( 'init', 'lightbox_gallery_textdomain' );
|
76 |
echo '<link rel="stylesheet" type="text/css" href="' . get_settings('siteurl') . '/' . PLUGINDIR . '/' . $plugin_dir . '/lightbox-gallery.css" />'."\n";
|
77 |
}
|
78 |
endif;
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
}
|
80 |
}
|
81 |
|
202 |
<input type="checkbox" name="lightbox_gallery_disable_lightbox_gallery_css" id="lightbox_gallery_disable_lightbox_gallery_css" value="1" <?php if ($options['global_settings']['lightbox_gallery_disable_lightbox_gallery_css']) { echo 'checked="checked"'; } ?> /> <?php _e('Do not use the lightbox-gallery.css', 'lightbox-gallery'); ?></p>
|
203 |
</td></tr>
|
204 |
<tr><td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
<p><label for="lightbox_gallery_disable_column_css"><?php _e('In case that you would like to disable to load the column inline css', 'lightbox-gallery'); ?></label>:<br />
|
206 |
<input type="checkbox" name="lightbox_gallery_disable_column_css" id="lightbox_gallery_disable_column_css" value="1" <?php if ($options['global_settings']['lightbox_gallery_disable_column_css']) { echo 'checked="checked"'; } ?> /> <?php _e('Do not use the column inline css', 'lightbox-gallery'); ?></p>
|
207 |
</td></tr>
|
lightbox-gallery.pot
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Lightbox Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2009-
|
6 |
-
"PO-Revision-Date: 2009-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -13,142 +13,126 @@ msgstr ""
|
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"X-Poedit-SearchPath-0: lightbox-gallery\n"
|
15 |
|
16 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
17 |
msgid "Settings"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
21 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
22 |
msgid "Lightbox Gallery"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
26 |
msgid "Options updated."
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
30 |
msgid "Options deleted."
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
34 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
35 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
36 |
msgid "Click to toggle"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
40 |
msgid "Lightbox Gallery Options"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
44 |
msgid "In case that you would like to use the lightbox in certain categories (comma-deliminated)"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
48 |
msgid "In case that you would like to use the lightbox in certain pages (comma-deliminated)"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
52 |
msgid "In case that you would like to disable to load the lightbox-gallery.css"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
56 |
msgid "Do not use the lightbox-gallery.css"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
60 |
-
msgid "In case that you would like to disable to load the jquery.lightbox.css"
|
61 |
-
msgstr ""
|
62 |
-
|
63 |
-
#: lightbox-gallery/lightbox-gallery.php:212
|
64 |
-
msgid "Do not use the jquery.lightbox.css"
|
65 |
-
msgstr ""
|
66 |
-
|
67 |
-
#: lightbox-gallery/lightbox-gallery.php:215
|
68 |
-
msgid "In case that you would like to disable to load the jquery.tooltip.css"
|
69 |
-
msgstr ""
|
70 |
-
|
71 |
-
#: lightbox-gallery/lightbox-gallery.php:216
|
72 |
-
msgid "Do not use the jquery.tooltip.css"
|
73 |
-
msgstr ""
|
74 |
-
|
75 |
-
#: lightbox-gallery/lightbox-gallery.php:219
|
76 |
msgid "In case that you would like to disable to load the column inline css"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
80 |
msgid "Do not use the column inline css"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
84 |
msgid "In case that you would like to set the default number of columns"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
88 |
msgid "In case that you would like to set the default thumbnail size"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
92 |
msgid "In case that you would like to set the default lightbox size"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
96 |
msgid "Update Options »"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
100 |
msgid "Delete Options"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
104 |
msgid "Are you sure to delete options? Options you set will be deleted."
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
108 |
msgid "Delete Options »"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
112 |
msgid "Donation"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
116 |
msgid "If you liked this plugin, please make a donation via paypal! Any amount is welcome. Your support is much appreciated."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
120 |
msgid "Pages:"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
124 |
msgid "Next page"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
128 |
msgid "Previous page"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
132 |
msgid "camera"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
136 |
msgid "aperture"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
140 |
msgid "focal_length"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
144 |
msgid "ISO"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
148 |
msgid "shutter_speed"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: lightbox-gallery/lightbox-gallery.php:
|
152 |
msgid "created_timestamp"
|
153 |
msgstr ""
|
154 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Lightbox Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-09-10 09:39+0900\n"
|
6 |
+
"PO-Revision-Date: 2009-09-10 09:39+0900\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"X-Poedit-SearchPath-0: lightbox-gallery\n"
|
15 |
|
16 |
+
#: lightbox-gallery/lightbox-gallery.php:146
|
17 |
msgid "Settings"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: lightbox-gallery/lightbox-gallery.php:154
|
21 |
+
#: lightbox-gallery/lightbox-gallery.php:180
|
22 |
msgid "Lightbox Gallery"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: lightbox-gallery/lightbox-gallery.php:168
|
26 |
msgid "Options updated."
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: lightbox-gallery/lightbox-gallery.php:172
|
30 |
msgid "Options deleted."
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: lightbox-gallery/lightbox-gallery.php:186
|
34 |
+
#: lightbox-gallery/lightbox-gallery.php:230
|
35 |
+
#: lightbox-gallery/lightbox-gallery.php:246
|
36 |
msgid "Click to toggle"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: lightbox-gallery/lightbox-gallery.php:187
|
40 |
msgid "Lightbox Gallery Options"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: lightbox-gallery/lightbox-gallery.php:193
|
44 |
msgid "In case that you would like to use the lightbox in certain categories (comma-deliminated)"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: lightbox-gallery/lightbox-gallery.php:197
|
48 |
msgid "In case that you would like to use the lightbox in certain pages (comma-deliminated)"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: lightbox-gallery/lightbox-gallery.php:201
|
52 |
msgid "In case that you would like to disable to load the lightbox-gallery.css"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: lightbox-gallery/lightbox-gallery.php:202
|
56 |
msgid "Do not use the lightbox-gallery.css"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: lightbox-gallery/lightbox-gallery.php:205
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
msgid "In case that you would like to disable to load the column inline css"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: lightbox-gallery/lightbox-gallery.php:206
|
64 |
msgid "Do not use the column inline css"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: lightbox-gallery/lightbox-gallery.php:209
|
68 |
msgid "In case that you would like to set the default number of columns"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: lightbox-gallery/lightbox-gallery.php:213
|
72 |
msgid "In case that you would like to set the default thumbnail size"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: lightbox-gallery/lightbox-gallery.php:217
|
76 |
msgid "In case that you would like to set the default lightbox size"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: lightbox-gallery/lightbox-gallery.php:221
|
80 |
msgid "Update Options »"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: lightbox-gallery/lightbox-gallery.php:231
|
84 |
msgid "Delete Options"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: lightbox-gallery/lightbox-gallery.php:233
|
88 |
msgid "Are you sure to delete options? Options you set will be deleted."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: lightbox-gallery/lightbox-gallery.php:237
|
92 |
msgid "Delete Options »"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: lightbox-gallery/lightbox-gallery.php:247
|
96 |
msgid "Donation"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: lightbox-gallery/lightbox-gallery.php:249
|
100 |
msgid "If you liked this plugin, please make a donation via paypal! Any amount is welcome. Your support is much appreciated."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: lightbox-gallery/lightbox-gallery.php:329
|
104 |
msgid "Pages:"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: lightbox-gallery/lightbox-gallery.php:331
|
108 |
msgid "Next page"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: lightbox-gallery/lightbox-gallery.php:332
|
112 |
msgid "Previous page"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: lightbox-gallery/lightbox-gallery.php:385
|
116 |
msgid "camera"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: lightbox-gallery/lightbox-gallery.php:387
|
120 |
msgid "aperture"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: lightbox-gallery/lightbox-gallery.php:389
|
124 |
msgid "focal_length"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: lightbox-gallery/lightbox-gallery.php:391
|
128 |
msgid "ISO"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: lightbox-gallery/lightbox-gallery.php:395
|
132 |
msgid "shutter_speed"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: lightbox-gallery/lightbox-gallery.php:398
|
136 |
msgid "created_timestamp"
|
137 |
msgstr ""
|
138 |
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Lightbox Gallery ===
|
2 |
Contributors: Hiroaki Miyashita
|
3 |
-
Donate link: http://
|
4 |
Tags: lightbox, gallery, image, images, album, photo, photos, picture, pictures
|
5 |
Requires at least: 2.5
|
6 |
-
Tested up to: 2.8.
|
7 |
-
Stable tag: 0.
|
8 |
|
9 |
This plugin changes the view of galleries to the lightbox.
|
10 |
|
@@ -23,6 +23,8 @@ You can also make regular images appear in a lightbox. See Faq.
|
|
23 |
|
24 |
Localization
|
25 |
|
|
|
|
|
26 |
* Spanish (es_ES) - [Daniel Tarrero](http://www.bluebrain.es/)
|
27 |
* French (fr_FR) - [BenLeTibetain](http://www.benletibetain.net/)
|
28 |
* Italian (it_IT) - [Gianni Diurno](http://gidibao.net/)
|
@@ -118,10 +120,15 @@ If you would like not to show the navigation, set `0`. The default is `1`.
|
|
118 |
|
119 |
== Changelog ==
|
120 |
|
121 |
-
= 0.
|
|
|
|
|
|
|
|
|
|
|
122 |
* Default thumbnail size and lightbox size.
|
123 |
|
124 |
-
= 0.4.6 =
|
125 |
* Spanish (es_ES) - Daniel Tarrero
|
126 |
* Polish (pl_PL) - Otmar
|
127 |
* Bugfix: translation miss.
|
1 |
=== Lightbox Gallery ===
|
2 |
Contributors: Hiroaki Miyashita
|
3 |
+
Donate link: http://wpgogo.com/development/lightbox-gallery.html
|
4 |
Tags: lightbox, gallery, image, images, album, photo, photos, picture, pictures
|
5 |
Requires at least: 2.5
|
6 |
+
Tested up to: 2.8.4
|
7 |
+
Stable tag: 0.5
|
8 |
|
9 |
This plugin changes the view of galleries to the lightbox.
|
10 |
|
23 |
|
24 |
Localization
|
25 |
|
26 |
+
* Brazilian Portuguese (pt_BR) - [Emmanuel Carvalho](http://www.emmanuelcarvalho.com.br/)
|
27 |
+
* Belorussian (by_BY) - [ilyuha](http://antsar.info/)
|
28 |
* Spanish (es_ES) - [Daniel Tarrero](http://www.bluebrain.es/)
|
29 |
* French (fr_FR) - [BenLeTibetain](http://www.benletibetain.net/)
|
30 |
* Italian (it_IT) - [Gianni Diurno](http://gidibao.net/)
|
120 |
|
121 |
== Changelog ==
|
122 |
|
123 |
+
= 0.5 =
|
124 |
+
* Brazilian Portuguese (pt_BR) - Emmanuel Carvalho
|
125 |
+
* Belorussian (be_BY) - ilyuha
|
126 |
+
* Combine jquery.lightbox.css and jquery.tooltip.css into lightbox-gallery.css
|
127 |
+
|
128 |
+
= 0.4.7 =
|
129 |
* Default thumbnail size and lightbox size.
|
130 |
|
131 |
+
= 0.4.6 =
|
132 |
* Spanish (es_ES) - Daniel Tarrero
|
133 |
* Polish (pl_PL) - Otmar
|
134 |
* Bugfix: translation miss.
|