pecesama 17 years ago
parent
commit
7939c7d462

+ 1 - 1
admin/admin.php View File

@@ -65,7 +65,7 @@ if ($user->isAdmin()) {
65 65
 					<h3>Manage</h3>
66 66
 					<li><a href="<?php echo $conf->urlGelato;?>/admin/settings.php"><?=__("Settings")?></a></li>
67 67
 					<li><a href="<?php echo $conf->urlGelato;?>/admin/index.php"><?=__("Posts")?></a></li>
68
-					<li><a href="<?php echo $conf->urlGelato;?>/admin/user.php"><?=__("Add user"?></a></li>
68
+					<li><a href="<?php echo $conf->urlGelato;?>/admin/user.php"><?=__("Add user")?></a></li>
69 69
 					<li class="selected"><a><?=__("Users")?></a></li>
70 70
 					</ul>
71 71
 					<p>&nbsp;</p>

+ 8 - 1
admin/settings.php View File

@@ -101,7 +101,14 @@ if ($user->isAdmin()) {
101 101
 										<input type="text" name="posts_limit" id="posts_limit" value="<?php echo $conf->postLimit;?>" class="txt"/></li>
102 102
 									<li><label for="lang"><?=__("Language:")?></label>
103 103
 										<select id="lang" name="lang">
104
-											<option value="en" selected="selected">english</option>
104
+<?php									
105
+										$langs = getLangs();
106
+										foreach ($langs as $lang) {
107
+											$active = ($conf->lang==$lang) ? "selected" : "";
108
+											echo "<option value=\"".$lang."\" ".$active.">".$lang."</option>\n";
109
+											
110
+										}
111
+?>
105 112
 										</select>
106 113
 									</li>
107 114
 									<li><label for="template"><?=__("Template:")?></label>

+ 2 - 0
classes/configuration.class.php View File

@@ -39,6 +39,8 @@ class configuration extends Conexion_Mysql {
39 39
 			$this->description = $row['description'];
40 40
 			$this->lang = $row['lang'];				
41 41
 			$this->template = $row['template'];
42
+			
43
+			initLang($this->lang);
42 44
 
43 45
 			$this->urlFriendly = $this->get_option("url_friendly");
44 46
 			$this->richText = $this->get_option("rich_text");

+ 42 - 1
classes/functions.php View File

@@ -276,5 +276,46 @@
276 276
 			$curl = $curl[1];
277 277
 		}
278 278
 		return $curl;
279
-	} 	
279
+	}
280
+	
281
+	function transform_offset($offset){
282
+		
283
+	}
284
+	
285
+	function getLangs() {
286
+ 		$langs_dir = "languages";
287
+ 		$dirs = array();
288
+		$path = getcwd();
289
+ 		$dir = (substr(PHP_OS, 0, 3) == 'WIN') ? $path."\\".$langs_dir : $path."/".$langs_dir;
290
+		$dir = str_replace("admin\\", "", $dir);
291
+		$dir = str_replace("admin/", "", $dir);
292
+ 		$i=0;
293
+		$cls_lang_dir = @ dir($dir);
294
+		while (($directory = $cls_lang_dir->read()) !== false) {
295
+			if($directory != "." && $directory != "..") {
296
+				
297
+				$dir2 = (substr(PHP_OS, 0, 3) == 'WIN') ? $path."\\".$langs_dir."\\".$directory : $path."/".$langs_dir."/".$directory;
298
+				$dir2 = str_replace("admin\\", "", $dir2);
299
+				$dir2 = str_replace("admin/", "", $dir2);
300
+				if(is_dir($dir2)){
301
+					$cls_lang_dir2 = @ dir($dir2);
302
+					while (($directory2 = $cls_lang_dir2->read()) !== false) {
303
+						if($directory2 != "." && $directory2 != "..") {
304
+							if (preg_match('|^\.+$|', $directory2)){
305
+								continue;
306
+							}
307
+							if (preg_match('|\.mo$|', $directory2)){
308
+								if(!in_array($directory2,$dirs)){
309
+									$dirs[$i]=trim($directory);
310
+									$i++;
311
+								}
312
+							}
313
+						}
314
+					}
315
+				}
316
+			}
317
+ 		}
318
+		$dirs = array_unique($dirs);
319
+ 		return $dirs;
320
+ 	}
280 321
 ?>

+ 0 - 1
config-sample.php View File

@@ -32,5 +32,4 @@
32 32
 	require_once(Absolute_Path.'classes'.DIRECTORY_SEPARATOR.'streams.class.php');
33 33
 	require_once(Absolute_Path.'classes'.DIRECTORY_SEPARATOR.'gettext.class.php');
34 34
 	require_once(Absolute_Path.'classes'.DIRECTORY_SEPARATOR.'lang.functions.php');
35
-	initLang('en');
36 35
 ?>

BIN
languages/en/messages.mo View File


+ 372 - 0
languages/en/messages.po View File

@@ -0,0 +1,372 @@
1
+# SOME DESCRIPTIVE TITLE.
2
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+# This file is distributed under the same license as the PACKAGE package.
4
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+#
6
+#, fuzzy
7
+msgid ""
8
+msgstr ""
9
+"Project-Id-Version: PACKAGE VERSION\n"
10
+"Report-Msgid-Bugs-To: \n"
11
+"POT-Creation-Date: 2007-07-20 17:40-0500\n"
12
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+"Language-Team: LANGUAGE <LL@li.org>\n"
15
+"MIME-Version: 1.0\n"
16
+"Content-Type: text/plain; charset=CHARSET\n"
17
+"Content-Transfer-Encoding: 8bit\n"
18
+
19
+#: admin.php:28
20
+msgid "admin users"
21
+msgstr ""
22
+
23
+#: admin.php:52 index.php:141 options.php:58 settings.php:58 user.php:68
24
+msgid "Processing request..."
25
+msgstr ""
26
+
27
+#: admin.php:55 close.php:39 index.php:144 options.php:61 settings.php:61
28
+#: user.php:71
29
+msgid "home"
30
+msgstr ""
31
+
32
+#: admin.php:57 index.php:146
33
+msgid "View Tumblelog"
34
+msgstr ""
35
+
36
+#: admin.php:58 index.php:147
37
+msgid "Log out"
38
+msgstr ""
39
+
40
+#: admin.php:66 index.php:321 options.php:73 settings.php:74
41
+msgid "Settings"
42
+msgstr ""
43
+
44
+#: admin.php:67 index.php:324
45
+msgid "Posts"
46
+msgstr ""
47
+
48
+#: admin.php:68
49
+msgid "Add user"
50
+msgstr ""
51
+
52
+#: admin.php:69 index.php:323 options.php:72 settings.php:72 user.php:82
53
+msgid "Users"
54
+msgstr ""
55
+
56
+#: admin.php:75 admin.php:81 admin.php:87
57
+msgid "<div class=\"exito\" id=\"divMessages\">"
58
+msgstr ""
59
+
60
+#: admin.php:75
61
+msgid "The user has been added successfully."
62
+msgstr ""
63
+
64
+#: admin.php:75 admin.php:81 admin.php:87 admin.php:93 admin.php:95
65
+msgid "</div>"
66
+msgstr ""
67
+
68
+#: admin.php:81
69
+msgid "The user has been eliminated successfully."
70
+msgstr ""
71
+
72
+#: admin.php:87
73
+msgid "The user has been modified successfully."
74
+msgstr ""
75
+
76
+#: admin.php:93
77
+msgid "<div class=\"error\" id=\"divMessages\">"
78
+msgstr ""
79
+
80
+#: admin.php:93 ajax.php:36
81
+msgid "The username is not available."
82
+msgstr ""
83
+
84
+#: admin.php:95
85
+msgid "<div class=\"error\" id=\"divMessages\"><strong>"
86
+msgstr ""
87
+
88
+#: admin.php:95
89
+msgid "Error on the database server:."
90
+msgstr ""
91
+
92
+#: admin.php:95
93
+msgid " </strong>"
94
+msgstr ""
95
+
96
+#: admin.php:95
97
+msgid "des"
98
+msgstr ""
99
+
100
+#: admin.php:103
101
+msgid "Login"
102
+msgstr ""
103
+
104
+#: admin.php:104
105
+msgid "Name"
106
+msgstr ""
107
+
108
+#: admin.php:105
109
+msgid "Actions"
110
+msgstr ""
111
+
112
+#: admin.php:115
113
+msgid "class=\"odd\""
114
+msgstr ""
115
+
116
+#: admin.php:117
117
+msgid "login"
118
+msgstr ""
119
+
120
+#: admin.php:117 admin.php:120
121
+msgid "\n"
122
+msgstr ""
123
+
124
+#: admin.php:120
125
+msgid "name"
126
+msgstr ""
127
+
128
+#: admin.php:123 admin.php:126
129
+msgid "id_user"
130
+msgstr ""
131
+
132
+#: admin.php:123 user.php:83
133
+msgid "Edit"
134
+msgstr ""
135
+
136
+#: admin.php:126
137
+msgid "Delete"
138
+msgstr ""
139
+
140
+#: admin.php:135
141
+msgid "No users available."
142
+msgstr ""
143
+
144
+#: ajax.php:23
145
+msgid "&nbsp;ending session..."
146
+msgstr ""
147
+
148
+#: ajax.php:25
149
+msgid "&nbsp;failure ending session..."
150
+msgstr ""
151
+
152
+#: ajax.php:31
153
+msgid "Required field cannot be left blank."
154
+msgstr ""
155
+
156
+#: ajax.php:34
157
+msgid "Username available."
158
+msgstr ""
159
+
160
+#: close.php:27
161
+msgid "logout"
162
+msgstr ""
163
+
164
+#: close.php:41 index.php:146 options.php:63 settings.php:63 user.php:73
165
+msgid "Take me to the tumblelog"
166
+msgstr ""
167
+
168
+#: close.php:41 options.php:63 settings.php:63 user.php:73
169
+msgid "Back to the Tumblelog"
170
+msgstr ""
171
+
172
+#: close.php:48
173
+msgid "Closing session"
174
+msgstr ""
175
+
176
+#: close.php:49
177
+msgid "logoff"
178
+msgstr ""
179
+
180
+#: close.php:57
181
+msgid "Ending session..."
182
+msgstr ""
183
+
184
+#: close.php:61
185
+msgid "Has happened an error when closing the session."
186
+msgstr ""
187
+
188
+#: index.php:104
189
+msgid "control panel"
190
+msgstr ""
191
+
192
+#: index.php:153
193
+msgid "New Post"
194
+msgstr ""
195
+
196
+#: index.php:154
197
+msgid "Chat"
198
+msgstr ""
199
+
200
+#: index.php:155
201
+msgid "Quote"
202
+msgstr ""
203
+
204
+#: index.php:156
205
+msgid "Link"
206
+msgstr ""
207
+
208
+#: index.php:157
209
+msgid "Audio"
210
+msgstr ""
211
+
212
+#: index.php:158
213
+msgid "Video"
214
+msgstr ""
215
+
216
+#: index.php:159
217
+msgid "Picture"
218
+msgstr ""
219
+
220
+#: index.php:160
221
+msgid "Regular"
222
+msgstr ""
223
+
224
+#: index.php:167
225
+msgid ""
226
+"A new gelato version has been released and is ready <a href=\"http://www."
227
+"gelatocms.com/\">for download</a>."
228
+msgstr ""
229
+
230
+#: index.php:172
231
+msgid "The post has been eliminated successfully."
232
+msgstr ""
233
+
234
+#: index.php:178
235
+msgid "The post has been modified successfully."
236
+msgstr ""
237
+
238
+#: index.php:184
239
+msgid "The post has been added successfully."
240
+msgstr ""
241
+
242
+#: index.php:190
243
+msgid "Error on the database server:"
244
+msgstr ""
245
+
246
+#: index.php:196
247
+msgid "Not an MP3 file or an upload problem."
248
+msgstr ""
249
+
250
+#: index.php:202
251
+msgid "Not a photo file or an upload problem."
252
+msgstr ""
253
+
254
+#: index.php:305
255
+msgid "syntax is supported."
256
+msgstr ""
257
+
258
+#: index.php:322 options.php:74 settings.php:73
259
+msgid "Options"
260
+msgstr ""
261
+
262
+#: index.php:427
263
+msgid "No posts in this tumblelog."
264
+msgstr ""
265
+
266
+#: options.php:35
267
+msgid "options"
268
+msgstr ""
269
+
270
+#: options.php:70
271
+msgid "Tumblelog options"
272
+msgstr ""
273
+
274
+#: options.php:71 settings.php:71 user.php:81
275
+msgid "Post"
276
+msgstr ""
277
+
278
+#: options.php:80 settings.php:80
279
+msgid "The configuration has been modified successfully."
280
+msgstr ""
281
+
282
+#: options.php:85 settings.php:85
283
+msgid "Error on the database server: "
284
+msgstr ""
285
+
286
+#: options.php:94
287
+msgid "Rich text editor:"
288
+msgstr ""
289
+
290
+#: options.php:96 options.php:102
291
+msgid "Active"
292
+msgstr ""
293
+
294
+#: options.php:97 options.php:103
295
+msgid "Deactive"
296
+msgstr ""
297
+
298
+#: options.php:109 settings.php:122 user.php:139
299
+msgid "Modify"
300
+msgstr ""
301
+
302
+#: settings.php:35
303
+msgid "settings"
304
+msgstr ""
305
+
306
+#: settings.php:70
307
+msgid "Tumblelog configuration"
308
+msgstr ""
309
+
310
+#: settings.php:94
311
+msgid "Title:"
312
+msgstr ""
313
+
314
+#: settings.php:96
315
+msgid "Description:"
316
+msgstr ""
317
+
318
+#: settings.php:98
319
+msgid "Installation URL"
320
+msgstr ""
321
+
322
+#: settings.php:100
323
+msgid "Post limit:"
324
+msgstr ""
325
+
326
+#: settings.php:102
327
+msgid "Language:"
328
+msgstr ""
329
+
330
+#: settings.php:107
331
+msgid "Template:"
332
+msgstr ""
333
+
334
+#: user.php:56
335
+msgid "add user"
336
+msgstr ""
337
+
338
+#: user.php:80
339
+msgid "Start session"
340
+msgstr ""
341
+
342
+#: user.php:83 user.php:139
343
+msgid "Add"
344
+msgstr ""
345
+
346
+#: user.php:99
347
+msgid "user:"
348
+msgstr ""
349
+
350
+#: user.php:115
351
+msgid "password:"
352
+msgstr ""
353
+
354
+#: user.php:119
355
+msgid "retype password:"
356
+msgstr ""
357
+
358
+#: user.php:123
359
+msgid "name:"
360
+msgstr ""
361
+
362
+#: user.php:127
363
+msgid "e-mail:"
364
+msgstr ""
365
+
366
+#: user.php:131
367
+msgid "website:"
368
+msgstr ""
369
+
370
+#: user.php:135
371
+msgid "about:"
372
+msgstr ""

BIN
languages/es-mx/messages.mo View File


+ 419 - 0
languages/es-mx/messages.po View File

@@ -0,0 +1,419 @@
1
+# SOME DESCRIPTIVE TITLE.
2
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+# This file is distributed under the same license as the PACKAGE package.
4
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+#
6
+msgid ""
7
+msgstr ""
8
+"Project-Id-Version: gelato mexicna spanish\n"
9
+"Report-Msgid-Bugs-To: \n"
10
+"POT-Creation-Date: 2007-07-20 17:40-0500\n"
11
+"PO-Revision-Date: 2007-07-21 00:40-0600\n"
12
+"Last-Translator: pecesama <pecesama@gmail.com>\n"
13
+"Language-Team: pecesama <pecesama@gmail.com>\n"
14
+"MIME-Version: 1.0\n"
15
+"Content-Type: text/plain; charset=utf-8\n"
16
+"Content-Transfer-Encoding: 8bit\n"
17
+"X-Poedit-Language: Spanish\n"
18
+"X-Poedit-Country: MEXICO\n"
19
+"X-Poedit-SourceCharset: utf-8\n"
20
+
21
+#: admin.php:28
22
+msgid "admin users"
23
+msgstr "administrar usuarios"
24
+
25
+#: admin.php:52
26
+#: index.php:141
27
+#: options.php:58
28
+#: settings.php:58
29
+#: user.php:68
30
+msgid "Processing request..."
31
+msgstr "Procesando solicitud..."
32
+
33
+#: admin.php:55
34
+#: close.php:39
35
+#: index.php:144
36
+#: options.php:61
37
+#: settings.php:61
38
+#: user.php:71
39
+msgid "home"
40
+msgstr "inicio"
41
+
42
+#: admin.php:57
43
+#: index.php:146
44
+msgid "View Tumblelog"
45
+msgstr "Ver tumblelog"
46
+
47
+#: admin.php:58
48
+#: index.php:147
49
+msgid "Log out"
50
+msgstr "Terminar sesión"
51
+
52
+#: admin.php:66
53
+#: index.php:321
54
+#: options.php:73
55
+#: settings.php:74
56
+msgid "Settings"
57
+msgstr "Configuración"
58
+
59
+#: admin.php:67
60
+#: index.php:324
61
+msgid "Posts"
62
+msgstr "Entradas"
63
+
64
+#: admin.php:68
65
+msgid "Add user"
66
+msgstr "Agregar usuario"
67
+
68
+#: admin.php:69
69
+#: index.php:323
70
+#: options.php:72
71
+#: settings.php:72
72
+#: user.php:82
73
+msgid "Users"
74
+msgstr "Usuarios"
75
+
76
+#: admin.php:75
77
+#: admin.php:81
78
+#: admin.php:87
79
+msgid "<div class=\"exito\" id=\"divMessages\">"
80
+msgstr "<div class=\"exito\" id=\"divMessages\">"
81
+
82
+#: admin.php:75
83
+msgid "The user has been added successfully."
84
+msgstr "Ha usuario ha sido agregado exitosamente."
85
+
86
+#: admin.php:75
87
+#: admin.php:81
88
+#: admin.php:87
89
+#: admin.php:93
90
+#: admin.php:95
91
+msgid "</div>"
92
+msgstr "</div>"
93
+
94
+#: admin.php:81
95
+msgid "The user has been eliminated successfully."
96
+msgstr "Ha usuario ha sido eliminado exitosamente."
97
+
98
+#: admin.php:87
99
+msgid "The user has been modified successfully."
100
+msgstr "Ha usuario ha sido modificado exitosamente."
101
+
102
+#: admin.php:93
103
+msgid "<div class=\"error\" id=\"divMessages\">"
104
+msgstr "<div class=\"error\" id=\"divMessages\">"
105
+
106
+#: admin.php:93
107
+#: ajax.php:36
108
+msgid "The username is not available."
109
+msgstr "El usuario no esta disponible."
110
+
111
+#: admin.php:95
112
+msgid "<div class=\"error\" id=\"divMessages\"><strong>"
113
+msgstr "<div class=\"error\" id=\"divMessages\"><strong>"
114
+
115
+#: admin.php:95
116
+msgid "Error on the database server:."
117
+msgstr "Error en el servidor de base de datos:."
118
+
119
+#: admin.php:95
120
+msgid " </strong>"
121
+msgstr " </strong>"
122
+
123
+#: admin.php:95
124
+msgid "des"
125
+msgstr "des"
126
+
127
+#: admin.php:103
128
+msgid "Login"
129
+msgstr "Usuario"
130
+
131
+#: admin.php:104
132
+msgid "Name"
133
+msgstr "Nombre"
134
+
135
+#: admin.php:105
136
+msgid "Actions"
137
+msgstr "Acciones"
138
+
139
+#: admin.php:115
140
+msgid "class=\"odd\""
141
+msgstr "class=\"odd\""
142
+
143
+#: admin.php:117
144
+msgid "login"
145
+msgstr "login"
146
+
147
+#: admin.php:117
148
+#: admin.php:120
149
+msgid "\n"
150
+msgstr ""
151
+
152
+#: admin.php:120
153
+msgid "name"
154
+msgstr ""
155
+
156
+#: admin.php:123
157
+#: admin.php:126
158
+msgid "id_user"
159
+msgstr ""
160
+
161
+#: admin.php:123
162
+#: user.php:83
163
+msgid "Edit"
164
+msgstr ""
165
+
166
+#: admin.php:126
167
+msgid "Delete"
168
+msgstr ""
169
+
170
+#: admin.php:135
171
+msgid "No users available."
172
+msgstr ""
173
+
174
+#: ajax.php:23
175
+msgid "&nbsp;ending session..."
176
+msgstr ""
177
+
178
+#: ajax.php:25
179
+msgid "&nbsp;failure ending session..."
180
+msgstr ""
181
+
182
+#: ajax.php:31
183
+msgid "Required field cannot be left blank."
184
+msgstr ""
185
+
186
+#: ajax.php:34
187
+msgid "Username available."
188
+msgstr ""
189
+
190
+#: close.php:27
191
+msgid "logout"
192
+msgstr ""
193
+
194
+#: close.php:41
195
+#: index.php:146
196
+#: options.php:63
197
+#: settings.php:63
198
+#: user.php:73
199
+msgid "Take me to the tumblelog"
200
+msgstr ""
201
+
202
+#: close.php:41
203
+#: options.php:63
204
+#: settings.php:63
205
+#: user.php:73
206
+msgid "Back to the Tumblelog"
207
+msgstr ""
208
+
209
+#: close.php:48
210
+msgid "Closing session"
211
+msgstr ""
212
+
213
+#: close.php:49
214
+msgid "logoff"
215
+msgstr ""
216
+
217
+#: close.php:57
218
+msgid "Ending session..."
219
+msgstr ""
220
+
221
+#: close.php:61
222
+msgid "Has happened an error when closing the session."
223
+msgstr ""
224
+
225
+#: index.php:104
226
+msgid "control panel"
227
+msgstr ""
228
+
229
+#: index.php:153
230
+msgid "New Post"
231
+msgstr ""
232
+
233
+#: index.php:154
234
+msgid "Chat"
235
+msgstr ""
236
+
237
+#: index.php:155
238
+msgid "Quote"
239
+msgstr ""
240
+
241
+#: index.php:156
242
+msgid "Link"
243
+msgstr ""
244
+
245
+#: index.php:157
246
+msgid "Audio"
247
+msgstr ""
248
+
249
+#: index.php:158
250
+msgid "Video"
251
+msgstr ""
252
+
253
+#: index.php:159
254
+msgid "Picture"
255
+msgstr ""
256
+
257
+#: index.php:160
258
+msgid "Regular"
259
+msgstr ""
260
+
261
+#: index.php:167
262
+msgid "A new gelato version has been released and is ready <a href=\"http://www.gelatocms.com/\">for download</a>."
263
+msgstr ""
264
+
265
+#: index.php:172
266
+msgid "The post has been eliminated successfully."
267
+msgstr ""
268
+
269
+#: index.php:178
270
+msgid "The post has been modified successfully."
271
+msgstr ""
272
+
273
+#: index.php:184
274
+msgid "The post has been added successfully."
275
+msgstr ""
276
+
277
+#: index.php:190
278
+msgid "Error on the database server:"
279
+msgstr ""
280
+
281
+#: index.php:196
282
+msgid "Not an MP3 file or an upload problem."
283
+msgstr ""
284
+
285
+#: index.php:202
286
+msgid "Not a photo file or an upload problem."
287
+msgstr ""
288
+
289
+#: index.php:305
290
+msgid "syntax is supported."
291
+msgstr ""
292
+
293
+#: index.php:322
294
+#: options.php:74
295
+#: settings.php:73
296
+msgid "Options"
297
+msgstr ""
298
+
299
+#: index.php:427
300
+msgid "No posts in this tumblelog."
301
+msgstr ""
302
+
303
+#: options.php:35
304
+msgid "options"
305
+msgstr ""
306
+
307
+#: options.php:70
308
+msgid "Tumblelog options"
309
+msgstr ""
310
+
311
+#: options.php:71
312
+#: settings.php:71
313
+#: user.php:81
314
+msgid "Post"
315
+msgstr ""
316
+
317
+#: options.php:80
318
+#: settings.php:80
319
+msgid "The configuration has been modified successfully."
320
+msgstr ""
321
+
322
+#: options.php:85
323
+#: settings.php:85
324
+msgid "Error on the database server: "
325
+msgstr ""
326
+
327
+#: options.php:94
328
+msgid "Rich text editor:"
329
+msgstr ""
330
+
331
+#: options.php:96
332
+#: options.php:102
333
+msgid "Active"
334
+msgstr ""
335
+
336
+#: options.php:97
337
+#: options.php:103
338
+msgid "Deactive"
339
+msgstr ""
340
+
341
+#: options.php:109
342
+#: settings.php:122
343
+#: user.php:139
344
+msgid "Modify"
345
+msgstr ""
346
+
347
+#: settings.php:35
348
+msgid "settings"
349
+msgstr ""
350
+
351
+#: settings.php:70
352
+msgid "Tumblelog configuration"
353
+msgstr ""
354
+
355
+#: settings.php:94
356
+msgid "Title:"
357
+msgstr ""
358
+
359
+#: settings.php:96
360
+msgid "Description:"
361
+msgstr ""
362
+
363
+#: settings.php:98
364
+msgid "Installation URL"
365
+msgstr ""
366
+
367
+#: settings.php:100
368
+msgid "Post limit:"
369
+msgstr ""
370
+
371
+#: settings.php:102
372
+msgid "Language:"
373
+msgstr ""
374
+
375
+#: settings.php:107
376
+msgid "Template:"
377
+msgstr ""
378
+
379
+#: user.php:56
380
+msgid "add user"
381
+msgstr ""
382
+
383
+#: user.php:80
384
+msgid "Start session"
385
+msgstr ""
386
+
387
+#: user.php:83
388
+#: user.php:139
389
+msgid "Add"
390
+msgstr ""
391
+
392
+#: user.php:99
393
+msgid "user:"
394
+msgstr ""
395
+
396
+#: user.php:115
397
+msgid "password:"
398
+msgstr ""
399
+
400
+#: user.php:119
401
+msgid "retype password:"
402
+msgstr ""
403
+
404
+#: user.php:123
405
+msgid "name:"
406
+msgstr ""
407
+
408
+#: user.php:127
409
+msgid "e-mail:"
410
+msgstr ""
411
+
412
+#: user.php:131
413
+msgid "website:"
414
+msgstr ""
415
+
416
+#: user.php:135
417
+msgid "about:"
418
+msgstr ""
419
+