WP-Table Reloaded - Version 1.1

Version Description

Download this release

Release Info

Developer TobiasBg
Plugin Icon wp plugin WP-Table Reloaded
Version 1.1
Comparing to
See all releases

Code changes from version 1.0.1 to 1.1

admin/admin-script.js CHANGED
@@ -15,17 +15,11 @@ jQuery(document).ready(function($){
15
  })
16
  .change();
17
 
18
- $("#options_uninstall input").click(function () {
19
- if( $('#options_uninstall input:checked').val() ) {
20
- return confirm( 'Do you really want to activate this? You should only do that right before uninstallation!' );
21
- }
22
- });
23
-
24
- $("#options_use_global_css input").click(function () {
25
- if( $('#options_use_global_css input:checked').val() ) {
26
- $('#options_css_filename select').removeAttr("disabled");
27
  } else {
28
- $('#options_css_filename select').attr("disabled", true);
29
  }
30
  return true;
31
  });
15
  })
16
  .change();
17
 
18
+ $("#options_use_custom_css input").click(function () {
19
+ if( $('#options_use_custom_css input:checked').val() ) {
20
+ $('#options_custom_css textarea').removeAttr("disabled");
 
 
 
 
 
 
21
  } else {
22
+ $('#options_custom_css textarea').attr("disabled", true);
23
  }
24
  return true;
25
  });
css/example-style-wp-table.css DELETED
@@ -1,47 +0,0 @@
1
- /************************************************
2
- * *
3
- * This CSS file contains EXAMPLE styles for the *
4
- * plugin WP-Table Reloaded by Tobias B�thge! *
5
- * *
6
- * PLEASE DO NOT MODIFY THIS FILE DIRECTLY! *
7
- * PLEASE COPY IT, THEN EDIT THE COPY AND SELECT *
8
- * THE COPIED FILE IN THE PLUGIN OPTIONS! *
9
- * OTHERWISE YOUR CHANGES MIGHT GET OVERWRITTEN *
10
- * WHEN UPDATING THE PLUGIN! *
11
- * *
12
- * Thank you! *
13
- * *
14
- ************************************************/
15
-
16
- /* These CSS definitions come from the original WP-Table plugin by Alex Rabe.
17
- They are here for backward compatibility. You can use them, to style your
18
- table in the same style, WP-Table used to do.
19
- PLEASE DO NOT MODIFY THIS FILE DIRECTLY. READ THE HEADER ABOVE! */
20
-
21
- .wp-table-reloaded {
22
- font: Icon;
23
- border: 1px Solid ThreeDShadow;
24
- background: Window;
25
- color: WindowText;
26
- border-collapse: collapse;
27
- }
28
-
29
- /* header row*/
30
- .wp-table-reloaded th {
31
- padding: 2px 5px;
32
- border: 1px solid;
33
- border-color: ButtonHighlight ButtonShadow ButtonShadow ButtonHighlight;
34
- cursor: default;
35
- background: ButtonFace;
36
-
37
- }
38
-
39
- /* normal row*/
40
- .wp-table-reloaded td {
41
- padding: 3px;
42
- }
43
-
44
- /* alternative row */
45
- .wp-table-reloaded tr.odd {
46
- background-color: #F4F4EC;
47
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/example-style.css DELETED
@@ -1,103 +0,0 @@
1
- /************************************************
2
- * *
3
- * This CSS file contains EXAMPLE styles for the *
4
- * plugin WP-Table Reloaded by Tobias B�thge! *
5
- * *
6
- * PLEASE DO NOT MODIFY THIS FILE DIRECTLY! *
7
- * PLEASE COPY IT, THEN EDIT THE COPY AND SELECT *
8
- * THE COPIED FILE IN THE PLUGIN OPTIONS! *
9
- * OTHERWISE YOUR CHANGES MIGHT GET OVERWRITTEN *
10
- * WHEN UPDATING THE PLUGIN! *
11
- * *
12
- * Thank you! *
13
- * *
14
- ************************************************/
15
-
16
- /* Global CSS definitions for WP-Table Reloaded
17
- inspired by "blue" theme of TableSorter 2.0 Plugin */
18
-
19
- /* on how to change column widths, see below */
20
-
21
- /* general table styles */
22
- table.wp-table-reloaded {
23
- font-family:arial;
24
- background-color: #CDCDCD;
25
- margin:10px 0pt 15px;
26
- font-size: 8pt;
27
- width: 100%;
28
- text-align: left;
29
- }
30
-
31
- /* Styles for the tablehead (<th>) (if enabled) */
32
- table.wp-table-reloaded thead tr th, table.wp-table-reloaded tfoot tr th {
33
- background-color: #e6EEEE;
34
- border: 1px solid #FFF;
35
- font-size: 8pt;
36
- padding: 4px;
37
- }
38
-
39
- table.wp-table-reloaded thead tr .header {
40
- background-image: url(../img/bg.gif);
41
- background-repeat: no-repeat;
42
- background-position: center right;
43
- cursor: pointer;
44
- }
45
-
46
- table.wp-table-reloaded tbody td {
47
- color: #3D3D3D;
48
- padding: 4px;
49
- background-color: #FFF;
50
- vertical-align: top;
51
- }
52
-
53
-
54
- /* Styles for alternating row colors (if enabled) */
55
- table.wp-table-reloaded tbody tr.even td {
56
- background-color:#FFFFFF;
57
- }
58
- table.wp-table-reloaded tbody tr.odd td {
59
- background-color:#F0F0F6;
60
- }
61
-
62
-
63
- /**************************************/
64
- /* how to change column widths :
65
- you can access a column with its CSS-class
66
- (that is ".column-" plus the number of the column)
67
- use table.wp-table-reloaded to do your change for every table, or use
68
- table.wp-table-reloaded-id-<id> for just a single table (with ID <id>)
69
-
70
- example: this changes the width of the third column of table ID 5 to 25px:
71
-
72
-
73
- table.wp-table-reloaded-id-5 .column-3
74
- {
75
- width: 25px;
76
- }
77
-
78
- */
79
-
80
-
81
- /* Styles for the sorting (if Tablesorter is enabled) */
82
- table.wp-table-reloaded thead tr .headerSortUp {
83
- background-image: url(../img/asc.gif);
84
- }
85
-
86
- table.wp-table-reloaded thead tr .headerSortDown {
87
- background-image: url(../img/desc.gif);
88
- }
89
-
90
- table.wp-table-reloaded thead tr .headerSortDown, table.wp-table-reloaded thead tr .headerSortUp {
91
- background-color: #8dbdd8;
92
- }
93
-
94
-
95
- /* Style for the Table Name (in <h2>-Tag) (if printed above the table) */
96
- h2.wp-table-reloaded-table-name {
97
- font-size: 16px;
98
- }
99
-
100
- /* Style for the Table Description (if printed under the table) */
101
- span.wp-table-reloaded-table-description {
102
- font-size: 10px;
103
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wp-table-reloaded-de_DE.mo CHANGED
Binary file
languages/wp-table-reloaded-de_DE.po CHANGED
@@ -75,312 +75,311 @@ msgstr "Tabelle erfolgreich importiert."
75
  msgid "Table \"%s\" exported successfully."
76
  msgstr "Tabelle \"%s\" erfolgreich exportiert."
77
 
78
- #: wp-table-reloaded-admin.php:426
79
  msgid "Options saved successfully."
80
  msgstr "Einstellungen erfolgreich gespeichert."
81
 
82
- #: wp-table-reloaded-admin.php:464
83
  msgid "List of Tables"
84
  msgstr "Liste der Tabellen"
85
 
86
- #: wp-table-reloaded-admin.php:467
87
  msgid "This is a list of all available tables. You may add, edit, copy or delete tables here."
88
  msgstr "Dies ist eine Liste aller verfügbaren Tabellen. Hier kannst du Tabellen hinzufügen, bearbeiten, kopieren oder löschen."
89
 
90
- #: wp-table-reloaded-admin.php:476
91
- #: wp-table-reloaded-admin.php:816
92
  msgid "ID"
93
  msgstr "ID"
94
 
95
- #: wp-table-reloaded-admin.php:477
96
- #: wp-table-reloaded-admin.php:537
97
- #: wp-table-reloaded-admin.php:587
98
- #: wp-table-reloaded-admin.php:817
99
  msgid "Table Name"
100
  msgstr "Name der Tabelle"
101
 
102
- #: wp-table-reloaded-admin.php:478
103
- #: wp-table-reloaded-admin.php:541
104
- #: wp-table-reloaded-admin.php:591
105
- #: wp-table-reloaded-admin.php:818
106
  msgid "Description"
107
  msgstr "Beschreibung"
108
 
109
- #: wp-table-reloaded-admin.php:479
110
- #: wp-table-reloaded-admin.php:819
111
  msgid "Action"
112
  msgstr "Aktion"
113
 
114
- #: wp-table-reloaded-admin.php:504
115
  msgid "Edit"
116
  msgstr "Bearbeiten"
117
 
118
- #: wp-table-reloaded-admin.php:505
119
  msgid "Do you want to copy this table?"
120
  msgstr "Möchtest du diese Tabelle kopieren?"
121
 
122
- #: wp-table-reloaded-admin.php:505
123
  msgid "Copy"
124
  msgstr "Kopieren"
125
 
126
- #: wp-table-reloaded-admin.php:506
127
  msgid "Export"
128
  msgstr "Exportieren"
129
 
130
- #: wp-table-reloaded-admin.php:507
131
- #: wp-table-reloaded-admin.php:736
132
  msgid "The complete table and all content will be erased. Do you really want to delete it?"
133
  msgstr "Die gesamte Tabelle und alle Inhalte werden gelöscht. Möchtest du dies wirklich?"
134
 
135
- #: wp-table-reloaded-admin.php:507
136
  msgid "Delete"
137
  msgstr "Löschen"
138
 
139
- #: wp-table-reloaded-admin.php:517
140
- #: wp-table-reloaded-admin.php:930
141
  msgid "No tables found."
142
  msgstr "Keine Tabellen gefunden."
143
 
144
- #: wp-table-reloaded-admin.php:517
145
- #: wp-table-reloaded-admin.php:930
146
  #, php-format
147
  msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
148
  msgstr "Du kannst eine <a href=\"%s\">anlegen</a> oder <a href=\"%s\">importieren</a>!"
149
 
150
- #: wp-table-reloaded-admin.php:525
151
- #: wp-table-reloaded-admin.php:1095
152
  msgid "Add new Table"
153
  msgstr "Neue Tabelle anlegen"
154
 
155
- #: wp-table-reloaded-admin.php:529
156
  msgid "You can add a new table here. Just enter it's name, a description (optional) and the number of rows and columns.<br/>You may add, insert or delete rows and columns later."
157
  msgstr "Hier kannst du eine neue Tabelle anlegen. Gib einfach ihren Namen, eine (optionale) Beschreibung und die Anzahl der Zeilen und Spalten ein.<br/>Du kannst später auch Zeilen oder Spalten hinzufügen, einfügen oder löschen."
158
 
159
- #: wp-table-reloaded-admin.php:545
160
  msgid "Number of Rows"
161
  msgstr "Anzahl Zeilen"
162
 
163
- #: wp-table-reloaded-admin.php:549
164
  msgid "Number of Columns"
165
  msgstr "Anzahl Spalten"
166
 
167
- #: wp-table-reloaded-admin.php:556
168
  msgid "Add Table"
169
  msgstr "Tabelle anlegen"
170
 
171
- #: wp-table-reloaded-admin.php:577
172
  msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
173
  msgstr "Hier kannst du die Inhalte der Tabelle bearbeiten. Außerdem können Zeilen oder Spalten hinzugefügt, gelöscht oder getauscht werden."
174
 
175
- #: wp-table-reloaded-admin.php:583
176
  msgid "Table Information"
177
  msgstr "Informationen über die Tabelle"
178
 
179
- #: wp-table-reloaded-admin.php:600
180
  msgid "Table Contents"
181
  msgstr "Inhalte der Tabelle"
182
 
183
- #: wp-table-reloaded-admin.php:628
184
  msgid "Insert Row"
185
  msgstr "Zeile einfügen"
186
 
187
- #: wp-table-reloaded-admin.php:630
188
  msgid "Do you really want to delete this row?"
189
  msgstr "Möchtest du diese Zeile wirklich löschen?"
190
 
191
- #: wp-table-reloaded-admin.php:630
192
  msgid "Delete Row"
193
  msgstr "Zeile löschen"
194
 
195
- #: wp-table-reloaded-admin.php:640
196
  msgid "Insert Column"
197
  msgstr "Spalte einfügen"
198
 
199
- #: wp-table-reloaded-admin.php:642
200
  msgid "Do you really want to delete this column?"
201
  msgstr "Möchtest du diese Spalte wirklich löschen?"
202
 
203
- #: wp-table-reloaded-admin.php:642
204
  msgid "Delete Column"
205
  msgstr "Spalte löschen"
206
 
207
- #: wp-table-reloaded-admin.php:647
208
  msgid "Add Row"
209
  msgstr "Zeile hinzufügen"
210
 
211
- #: wp-table-reloaded-admin.php:647
212
  msgid "Add Column"
213
  msgstr "Spalte hinzufügen"
214
 
215
- #: wp-table-reloaded-admin.php:671
216
- #: wp-table-reloaded-admin.php:691
217
  msgid "Swap"
218
  msgstr "Tauschen"
219
 
220
- #: wp-table-reloaded-admin.php:696
221
  msgid "Table Settings"
222
  msgstr "Einstellungen zur Tabelle"
223
 
224
- #: wp-table-reloaded-admin.php:698
225
  msgid "These settings will only be used for this table."
226
  msgstr "Diese Einstellungen gelten nur für diese Tabelle."
227
 
228
- #: wp-table-reloaded-admin.php:701
229
  msgid "Alternating row colors"
230
  msgstr "alternierende Zeilenfarben"
231
 
232
- #: wp-table-reloaded-admin.php:702
233
  msgid "Every second row will have an alternating background color."
234
  msgstr "Jede zweite Zeile bekommt eine alternierende Hintergrundfarbe."
235
 
236
- #: wp-table-reloaded-admin.php:705
237
  msgid "Use Table Headline"
238
  msgstr "Tabellenüberschrift"
239
 
240
- #: wp-table-reloaded-admin.php:706
241
  msgid "The first row of your table will use the [th] tag."
242
  msgstr "Die erste Zeile der Tabelle wird mit dem HTML-Tag [th] markiert."
243
 
244
- #: wp-table-reloaded-admin.php:709
245
  msgid "Print Table Name"
246
  msgstr "Tabellennamen ausgeben"
247
 
248
- #: wp-table-reloaded-admin.php:710
249
  msgid "The Table Name will be written above the table in a [h2] tag."
250
  msgstr "Der Name der Tabelle wird in einem [h2]-HTML-Tag über die Tabelle geschrieben."
251
 
252
- #: wp-table-reloaded-admin.php:713
253
  msgid "Print Table Description"
254
  msgstr "Tabellenbeschreibung ausgeben"
255
 
256
- #: wp-table-reloaded-admin.php:714
257
  msgid "The Table Description will be written under the table."
258
  msgstr "Die Tabellenbeschreibung wird unter die Tabelle geschrieben."
259
 
260
- #: wp-table-reloaded-admin.php:717
261
  msgid "Use Tablesorter"
262
  msgstr "Tablesorter benutzen"
263
 
264
- #: wp-table-reloaded-admin.php:718
265
  msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. <small>Attention: You must have Tablesorter enabled on the \"Plugin Options\" page and the option \"Use Table Headline\" has to be enabled above for this to work!</small>"
266
  msgstr "Eine Tabelle kann dynamisch mit dem <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> sortiert werden. <small>Achtung: Tablesorter muss auf der Seite \\"Plugin-Einstellungen\\" aktiviert sein! Außerdem muss die \\"Tabellenüberschrift\\" (mit [th]) (siehe oben) aktiviert sein!</small>"
267
 
268
- #: wp-table-reloaded-admin.php:727
 
269
  msgid "Update Changes"
270
  msgstr "Änderungen speichern"
271
 
272
- #: wp-table-reloaded-admin.php:728
 
273
  msgid "Save and go back"
274
  msgstr "Speichern und zurück"
275
 
276
- #: wp-table-reloaded-admin.php:731
 
277
  msgid "Cancel"
278
  msgstr "Abbrechen"
279
 
280
- #: wp-table-reloaded-admin.php:733
281
  msgid "Other actions"
282
  msgstr "Andere Aktionen"
283
 
284
- #: wp-table-reloaded-admin.php:736
285
  msgid "Delete Table"
286
  msgstr "Tabelle löschen"
287
 
288
- #: wp-table-reloaded-admin.php:737
289
- #: wp-table-reloaded-admin.php:919
290
  msgid "Export Table"
291
  msgstr "Tabelle exportieren"
292
 
293
- #: wp-table-reloaded-admin.php:748
294
- #: wp-table-reloaded-admin.php:1096
295
  msgid "Import a Table"
296
  msgstr "Eine Tabelle importieren"
297
 
298
- #: wp-table-reloaded-admin.php:779
299
  msgid "Select File with Table to Import"
300
  msgstr "Datei mit den zu importierenden Inhalten auswählen"
301
 
302
- #: wp-table-reloaded-admin.php:769
303
  msgid "Used Delimiter"
304
  msgstr "Verwendetes Trennzeichen"
305
 
306
- #: wp-table-reloaded-admin.php:793
307
  msgid "Import Table"
308
  msgstr "Tabelle importieren"
309
 
310
- #: wp-table-reloaded-admin.php:866
311
- #: wp-table-reloaded-admin.php:1097
312
  msgid "Export a Table"
313
  msgstr "Eine Tabelle exportieren"
314
 
315
- #: wp-table-reloaded-admin.php:878
316
  msgid "Select Table to Export"
317
  msgstr "zu exportierende Tabelle auswählen"
318
 
319
- #: wp-table-reloaded-admin.php:893
320
  msgid "Select Export Format"
321
  msgstr "gewünschtes Export-Format"
322
 
323
- #: wp-table-reloaded-admin.php:903
324
  msgid "Select Delimiter to use"
325
  msgstr "zu verwendendes Trennzeichen"
326
 
327
- #: wp-table-reloaded-admin.php:939
328
  msgid "General Plugin Options"
329
  msgstr "Plugin-Einstellungen"
330
 
331
- #: wp-table-reloaded-admin.php:943
332
  msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
333
  msgstr "Hier können allgemeine Plugin-Einstellungen geändert werden<br/>Diese beeinflussen alle Tabellen oder das allgemeine Verhalten des Plugins."
334
 
335
- #: wp-table-reloaded-admin.php:986
336
  msgid "Uninstall Plugin upon Deactivation?"
337
  msgstr "Plugin beim Deaktivieren deinstallieren?"
338
 
339
- #: wp-table-reloaded-admin.php:954
340
  msgid "Enable Tablesorter-JavaScript?"
341
  msgstr "Tablesorter-JavaScript aktivieren?"
342
 
343
- #: wp-table-reloaded-admin.php:955
344
  msgid "Yes, enable <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> to be used to make table sortable (can be changed for every table separatly)."
345
  msgstr "Ja, Nutzung des <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugins</a> ermöglichen, um eine Tabelle sortierbar machen (kann für jede Tabelle separat aktiviert werden)."
346
 
347
- #: wp-table-reloaded-admin.php:958
348
- msgid "Use global CSS-file?"
349
- msgstr "Globales CSS-StyleSheet verwenden?"
350
-
351
- #: wp-table-reloaded-admin.php:997
352
  msgid "Save Options"
353
  msgstr "Einstellungen speichern"
354
 
355
- #: wp-table-reloaded-admin.php:1008
356
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
357
  msgstr "Möchtest du das Plugin wirklich deinstallieren und ALLE Daten löschen?"
358
 
359
- #: wp-table-reloaded-admin.php:1008
360
  msgid "Are you really sure?"
361
  msgstr "Bist du wirklich sicher?"
362
 
363
- #: wp-table-reloaded-admin.php:1018
364
  msgid "Information about the plugin"
365
  msgstr "Informationen über das Plugin"
366
 
367
- #: wp-table-reloaded-admin.php:1108
368
  msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a>. A documentation and certain support and help request possibilities will be available soon."
369
  msgstr "Mehr Informationen sind auf der <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">Webseite des Plugins</a> zu finden. Eine Dokumentation und Hilfe- und Unterstützungsmöglichkeiten sind bald verfügbar."
370
 
371
- #: wp-table-reloaded-admin.php:1046
372
  msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. It is licenced as Free Software under GPL 2."
373
  msgstr "Dieses Plugin wurde von <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a> programmiert. Es ist als Freie Software unter der GPL v2 lizenziert."
374
 
375
- #: wp-table-reloaded-admin.php:1094
376
  msgid "List Tables"
377
  msgstr "Liste der Tabellen"
378
 
379
- #: wp-table-reloaded-admin.php:1099
380
  msgid "Plugin Options"
381
  msgstr "Plugin-Einstellungen"
382
 
383
- #: wp-table-reloaded-admin.php:1100
384
  msgid "About the Plugin"
385
  msgstr "Über das Plugin"
386
 
@@ -409,7 +408,7 @@ msgstr ", (Komma)"
409
  msgid ": (colon)"
410
  msgstr ": (Doppelpunkt)"
411
 
412
- #: wp-table-reloaded-admin.php:1008
413
  msgid "Uninstall Plugin WP-Table Reloaded"
414
  msgstr "Plugin WP-Table Reloaded deinstallieren"
415
 
@@ -434,174 +433,250 @@ msgstr "via Eingabefeld"
434
  msgid "Table could not be imported."
435
  msgstr "Tabelle konnte nicht importiert werden."
436
 
437
- #: wp-table-reloaded-admin.php:444
438
  msgid "WP-Table Reloaded"
439
  msgstr "WP-Table Reloaded"
440
 
441
- #: wp-table-reloaded-admin.php:445
442
  msgid "Plugin deactivated successfully."
443
  msgstr "Plugin erfolgreich deaktiviert."
444
 
445
- #: wp-table-reloaded-admin.php:446
446
  msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
447
  msgstr "Alle Tabellen, Daten und Einstellungen wurden gelöscht. Du kannst jetzt den Ordner des Plugins aus deinem WordPress Plugin-Ordner löschen."
448
 
449
- #: wp-table-reloaded-admin.php:468
450
  msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode: <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
451
  msgstr "Wenn Du eine Tabelle in einem Beitrag, auf einer Seite oder in einem Text-Widgets anzeigen möchtest, verwende den Shortcode: <strong>[table id=&lt;ID-der-Tabelle&gt; /]</strong>"
452
 
453
- #: wp-table-reloaded-admin.php:538
454
  msgid "Enter Table Name"
455
  msgstr "Tabellennamen eingeben"
456
 
457
- #: wp-table-reloaded-admin.php:542
458
  msgid "Enter Description"
459
  msgstr "Beschreibung eingeben"
460
 
461
- #: wp-table-reloaded-admin.php:752
462
- msgid "You may import a table from existing data here.<br/>It may be a CSV, XML oder HTML file. It needs a certrain structure though. Please consult the documentation."
463
- msgstr "Hier kann eine Tabelle aus vorhandenen Daten importiert werden.<br/>Dies kann eine CSV-, XML- oder HTML-Datei sein. Diese müssen teilweise eine bestimmte Struktur aufweisen. Bitte lies bei Problemen gegebenenfalls die Dokumentation."
464
-
465
- #: wp-table-reloaded-admin.php:759
466
  msgid "Select Import Format"
467
  msgstr "Import-Format wählen"
468
 
469
- #: wp-table-reloaded-admin.php:776
470
- #: wp-table-reloaded-admin.php:910
471
  msgid "<small>(Only needed for CSV export.)</small>"
472
  msgstr "<small>(Nur für CSV-Export benötigt.)</small>"
473
 
474
- #: wp-table-reloaded-admin.php:783
475
  msgid "- or -"
476
  msgstr "- oder -"
477
 
478
- #: wp-table-reloaded-admin.php:784
479
  msgid "(upload will be preferred over pasting)"
480
  msgstr "(Hochladen hat Vorrang vor manueller Eingabe)"
481
 
482
- #: wp-table-reloaded-admin.php:787
483
  msgid "Paste data with Table to Import"
484
  msgstr "zu importierende Tabelle einfügen"
485
 
486
- #: wp-table-reloaded-admin.php:806
487
- msgid "Import from original WP-Table plugin"
488
- msgstr "Import von Tabellen aus dem Plugin \\"WP-Table\\""
489
-
490
- #: wp-table-reloaded-admin.php:839
491
- msgid "Do you really want to import this table from the WP-Table plugin?"
492
- msgstr "Möchtest du wirklich diese Tabelle aus dem Plugin \\"WP-Table\\" importieren?"
493
-
494
- #: wp-table-reloaded-admin.php:839
495
  msgid "Import"
496
  msgstr "Import"
497
 
498
- #: wp-table-reloaded-admin.php:847
499
- msgid "WP-Table by Alex Rabe seems to be installed, but no tables were found."
500
- msgstr "Das Plugin WP-Table von Alex Rabe scheint installiert zu sein. Es wurden jedoch keine Tabellen gefunden."
501
-
502
- #: wp-table-reloaded-admin.php:870
503
  msgid "You may export a table here. Just select the table, your desired export format and a delimiter (needed for CSV only).<br/>You may opt to download the export file. Otherwise it will be shown on this page."
504
  msgstr "Hier kann eine Tabelle exportiert werden. Einfach Tabelle, gewünschtes Export-Format und Trennzeichen (nur für CSV) auswählen.<br/>Du kannst wählen, ob du die Export-Datei downloaden oder anzeigen lassen möchtest."
505
 
506
- #: wp-table-reloaded-admin.php:913
507
  msgid "Download file"
508
  msgstr "Datei downloaden"
509
 
510
- #: wp-table-reloaded-admin.php:914
511
  msgid "Yes, I want to download the export file."
512
  msgstr "Ja, ich möchte die Export-Datei downloaden."
513
 
514
- #: wp-table-reloaded-admin.php:950
515
  msgid "Frontend Options"
516
  msgstr "Darstellungsoptionen"
517
 
518
- #: wp-table-reloaded-admin.php:959
519
- msgid "Yes, load a CSS-file, which contains basic styles for the table. The CSS-files must be located in subfolder \"css\". To change styles, please copy the file \"example-style.css\", edit the copied file with your style changes and place it in the same folder. You may then select it below. "
520
- msgstr "Ja, lade eine CSS-Datei, die einfache Style-Angaben für die Tabellen enthält. Die CSS-Datei muss sich im Unterordner \"css\" befinden. Um eigene Änderungen vorzunehmen, kopiere die Datei \"example-style.css\" oder \"example-style-wp-table.css\" ins gleiche Verzeichnis, passe die Kopie an deine Wünsche an und wähle danach die kopierte Datei hier aus."
521
-
522
- #: wp-table-reloaded-admin.php:963
523
- msgid "Select CSS file to use"
524
- msgstr "zu nutzende CSS-Datei auswählen"
525
-
526
- #: wp-table-reloaded-admin.php:975
527
- msgid "(These files are located in the subfolder \"css\" of the plugin folder.)"
528
- msgstr "(Diese Dateien befinden sich im Unterordner \"css\" des Plugin-Ordners.)"
529
-
530
- #: wp-table-reloaded-admin.php:982
531
  msgid "Admin Options"
532
  msgstr "Verwaltungseinstellungen"
533
 
534
- #: wp-table-reloaded-admin.php:987
535
  msgid "Yes, uninstall everything when plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page! (It does not influence the \"Manually Uninstall Plugin\" button below!)"
536
  msgstr "Ja, alles deinstallieren, wenn Plugin deaktiviert wird. Achtung: Du solltest dieses Kästchen erst direkt vor der Deaktivierung des Plugins auf der WordPress-Plugin-Seite aktivieren! (Es hat keinen Einfluss auf die Schaltfläche zur manuellen Deinstallation unten auf dieser Seite!)"
537
 
538
- #: wp-table-reloaded-admin.php:1003
539
  msgid "Manually Uninstall Plugin"
540
  msgstr "Manuelle Plugin-Deinstallation"
541
 
542
- #: wp-table-reloaded-admin.php:1005
543
  msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported.<br/> Be very careful with this and only click the button if you know what you are doing!"
544
  msgstr "Hier kannst du das Plugin deinstallieren. Dies <strong>löscht</strong> alle Tabellen, Daten, Einstellungen, etc. die zum Plugin gehören, inklusive aller angelegter oder importierter Tabellen! Sei hiermit vorsichtig und klicke die Schaltfläche nur, wenn du weißt, was du tust!"
545
 
546
- #: wp-table-reloaded-admin.php:1024
547
  msgid "Plugin Purpose"
548
  msgstr "Zweck des Plugins"
549
 
550
- #: wp-table-reloaded-admin.php:1026
551
  msgid "This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode."
552
  msgstr "Dieses Plugin erlaubt die Erstellung und Verwaltung von Tabellen im Administrationsbereich von WordPress. Die Tabellen können dann mittels eines Shortcodes in Beiträgen, auf Seiten und in Text-Widgets angezeigt werden."
553
 
554
- #: wp-table-reloaded-admin.php:1031
555
  msgid "Usage"
556
  msgstr "Benutzung"
557
 
558
- #: wp-table-reloaded-admin.php:1033
559
  msgid "At first you should add or import a table. Then edit your data and select the options you want. To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them. You may then style your table via CSS. Every table has the CSS-class \"wp-table-reloaded\". A table also has the class \"wp-table-reloaded-&lt;table-id&gt;\". You can also use the classes \"column-&lt;number&gt;\" and \"row-&lt;number&gt;\" to style rows and columns individually. Use this to style columns width and text alignment."
560
  msgstr "Zuerst sollest du eine Tabelle anlegen oder importieren. Dann kannst du die Daten editieren und gewünschte Darstellungsoptionen aktivieren. Um die Tabelle in einem Beitrag, auf einer Seite oder in einem Text-Widget anzuzeigen, füge dort den Shortcode [table id=&lt;ID-der-Tabelle&gt;] ein. Du kannst die Tabelle dann mittels CSS stylen. Jede Tabelle hat die CSS-Klasse \"wp-table-reloaded\". Jede Tabelle hat außerdem eine Klasse \"wp-table-reloaded-&lt;ID-der-Tabelle&gt;\". Du kannst die Klassen \"column-&lt;Nummer&gt;\" und \"row-&lt;Nummer&gt;\" nutzen, um Zeilen und Spalten individuell zu stylen. Dies kann für die Textausrichtung oder Spaltenbreite genutzt werden."
561
 
562
- #: wp-table-reloaded-admin.php:1037
563
  msgid "More Information and Documentation"
564
  msgstr "Weitere Informationen und Dokumentation"
565
 
566
- #: wp-table-reloaded-admin.php:1039
567
  msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. A documentation and certain support and help request possibilities will be available soon."
568
  msgstr "Weitere Informationen findest du auf der <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">Website des Plugins</a> oder auf seiner Seite im <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory.</a> Eine Dokumentation und bestimmte Unterstützungs- und Hilfemöglichkeiten werden in Kürze verfügbar sein."
569
 
570
- #: wp-table-reloaded-admin.php:1044
571
  msgid "Author and Licence"
572
  msgstr "Autor und Lizenz"
573
 
574
- #: wp-table-reloaded-admin.php:1046
575
  msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">donating</a> or rating it at the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. Thanks!"
576
  msgstr "Wenn dir das Plugin gefällt, kannst du gerne etwas <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">spenden</a> oder das Plugin auf seiner Seite im <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a> bewerten. Danke!"
577
 
578
- #: wp-table-reloaded-admin.php:1051
579
  msgid "Credits and Thanks"
580
  msgstr "Danksagungen"
581
 
582
- #: wp-table-reloaded-admin.php:1054
583
- msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original WP-Table plugin,"
584
- msgstr "Vielen Dank an <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> für das Plugin WP-Table,"
585
-
586
- #: wp-table-reloaded-admin.php:1056
587
- msgid "the submitters of translations: <br/>&middot; Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)<br/>&middot; Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
588
- msgstr "die Einsender der Übersetzungen: <br/> &middot; Türkisch (danke <a href=\"http://www.wpuzmani.com/\">Semih)</a><br/> &middot; Schwedisch (danke <a href=\"http://www.zuperzed.se/\">ZuperZed)</a>"
589
-
590
- #: wp-table-reloaded-admin.php:1057
591
  msgid "and all contributors, supporters, reviewers and users of the plugin!"
592
  msgstr "und alle Unterstützer, Reviewer und Nutzer des Plugins!"
593
 
594
- #: wp-table-reloaded-admin.php:668
595
  #, php-format
596
  msgid "Swap rows %s and %s"
597
  msgstr "Tausche die Zeilen %s und %s"
598
 
599
- #: wp-table-reloaded-admin.php:688
600
  #, php-format
601
  msgid "Swap columns %s and %s"
602
  msgstr "Tausche die Spalten %s und %s"
603
 
604
- #: wp-table-reloaded-admin.php:1055
605
  msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
606
  msgstr "Christian Bach für das <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  msgid "Table \"%s\" exported successfully."
76
  msgstr "Tabelle \"%s\" erfolgreich exportiert."
77
 
78
+ #: wp-table-reloaded-admin.php:433
79
  msgid "Options saved successfully."
80
  msgstr "Einstellungen erfolgreich gespeichert."
81
 
82
+ #: wp-table-reloaded-admin.php:471
83
  msgid "List of Tables"
84
  msgstr "Liste der Tabellen"
85
 
86
+ #: wp-table-reloaded-admin.php:474
87
  msgid "This is a list of all available tables. You may add, edit, copy or delete tables here."
88
  msgstr "Dies ist eine Liste aller verfügbaren Tabellen. Hier kannst du Tabellen hinzufügen, bearbeiten, kopieren oder löschen."
89
 
90
+ #: wp-table-reloaded-admin.php:483
91
+ #: wp-table-reloaded-admin.php:887
92
  msgid "ID"
93
  msgstr "ID"
94
 
95
+ #: wp-table-reloaded-admin.php:484
96
+ #: wp-table-reloaded-admin.php:544
97
+ #: wp-table-reloaded-admin.php:594
98
+ #: wp-table-reloaded-admin.php:888
99
  msgid "Table Name"
100
  msgstr "Name der Tabelle"
101
 
102
+ #: wp-table-reloaded-admin.php:485
103
+ #: wp-table-reloaded-admin.php:548
104
+ #: wp-table-reloaded-admin.php:598
105
+ #: wp-table-reloaded-admin.php:889
106
  msgid "Description"
107
  msgstr "Beschreibung"
108
 
109
+ #: wp-table-reloaded-admin.php:486
110
+ #: wp-table-reloaded-admin.php:890
111
  msgid "Action"
112
  msgstr "Aktion"
113
 
114
+ #: wp-table-reloaded-admin.php:511
115
  msgid "Edit"
116
  msgstr "Bearbeiten"
117
 
118
+ #: wp-table-reloaded-admin.php:512
119
  msgid "Do you want to copy this table?"
120
  msgstr "Möchtest du diese Tabelle kopieren?"
121
 
122
+ #: wp-table-reloaded-admin.php:512
123
  msgid "Copy"
124
  msgstr "Kopieren"
125
 
126
+ #: wp-table-reloaded-admin.php:513
127
  msgid "Export"
128
  msgstr "Exportieren"
129
 
130
+ #: wp-table-reloaded-admin.php:514
131
+ #: wp-table-reloaded-admin.php:807
132
  msgid "The complete table and all content will be erased. Do you really want to delete it?"
133
  msgstr "Die gesamte Tabelle und alle Inhalte werden gelöscht. Möchtest du dies wirklich?"
134
 
135
+ #: wp-table-reloaded-admin.php:514
136
  msgid "Delete"
137
  msgstr "Löschen"
138
 
139
+ #: wp-table-reloaded-admin.php:524
140
+ #: wp-table-reloaded-admin.php:1001
141
  msgid "No tables found."
142
  msgstr "Keine Tabellen gefunden."
143
 
144
+ #: wp-table-reloaded-admin.php:524
145
+ #: wp-table-reloaded-admin.php:1001
146
  #, php-format
147
  msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
148
  msgstr "Du kannst eine <a href=\"%s\">anlegen</a> oder <a href=\"%s\">importieren</a>!"
149
 
150
+ #: wp-table-reloaded-admin.php:532
151
+ #: wp-table-reloaded-admin.php:1171
152
  msgid "Add new Table"
153
  msgstr "Neue Tabelle anlegen"
154
 
155
+ #: wp-table-reloaded-admin.php:536
156
  msgid "You can add a new table here. Just enter it's name, a description (optional) and the number of rows and columns.<br/>You may add, insert or delete rows and columns later."
157
  msgstr "Hier kannst du eine neue Tabelle anlegen. Gib einfach ihren Namen, eine (optionale) Beschreibung und die Anzahl der Zeilen und Spalten ein.<br/>Du kannst später auch Zeilen oder Spalten hinzufügen, einfügen oder löschen."
158
 
159
+ #: wp-table-reloaded-admin.php:552
160
  msgid "Number of Rows"
161
  msgstr "Anzahl Zeilen"
162
 
163
+ #: wp-table-reloaded-admin.php:556
164
  msgid "Number of Columns"
165
  msgstr "Anzahl Spalten"
166
 
167
+ #: wp-table-reloaded-admin.php:563
168
  msgid "Add Table"
169
  msgstr "Tabelle anlegen"
170
 
171
+ #: wp-table-reloaded-admin.php:584
172
  msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
173
  msgstr "Hier kannst du die Inhalte der Tabelle bearbeiten. Außerdem können Zeilen oder Spalten hinzugefügt, gelöscht oder getauscht werden."
174
 
175
+ #: wp-table-reloaded-admin.php:590
176
  msgid "Table Information"
177
  msgstr "Informationen über die Tabelle"
178
 
179
+ #: wp-table-reloaded-admin.php:616
180
  msgid "Table Contents"
181
  msgstr "Inhalte der Tabelle"
182
 
183
+ #: wp-table-reloaded-admin.php:644
184
  msgid "Insert Row"
185
  msgstr "Zeile einfügen"
186
 
187
+ #: wp-table-reloaded-admin.php:646
188
  msgid "Do you really want to delete this row?"
189
  msgstr "Möchtest du diese Zeile wirklich löschen?"
190
 
191
+ #: wp-table-reloaded-admin.php:646
192
  msgid "Delete Row"
193
  msgstr "Zeile löschen"
194
 
195
+ #: wp-table-reloaded-admin.php:656
196
  msgid "Insert Column"
197
  msgstr "Spalte einfügen"
198
 
199
+ #: wp-table-reloaded-admin.php:658
200
  msgid "Do you really want to delete this column?"
201
  msgstr "Möchtest du diese Spalte wirklich löschen?"
202
 
203
+ #: wp-table-reloaded-admin.php:658
204
  msgid "Delete Column"
205
  msgstr "Spalte löschen"
206
 
207
+ #: wp-table-reloaded-admin.php:663
208
  msgid "Add Row"
209
  msgstr "Zeile hinzufügen"
210
 
211
+ #: wp-table-reloaded-admin.php:663
212
  msgid "Add Column"
213
  msgstr "Spalte hinzufügen"
214
 
215
+ #: wp-table-reloaded-admin.php:690
216
+ #: wp-table-reloaded-admin.php:710
217
  msgid "Swap"
218
  msgstr "Tauschen"
219
 
220
+ #: wp-table-reloaded-admin.php:767
221
  msgid "Table Settings"
222
  msgstr "Einstellungen zur Tabelle"
223
 
224
+ #: wp-table-reloaded-admin.php:769
225
  msgid "These settings will only be used for this table."
226
  msgstr "Diese Einstellungen gelten nur für diese Tabelle."
227
 
228
+ #: wp-table-reloaded-admin.php:772
229
  msgid "Alternating row colors"
230
  msgstr "alternierende Zeilenfarben"
231
 
232
+ #: wp-table-reloaded-admin.php:773
233
  msgid "Every second row will have an alternating background color."
234
  msgstr "Jede zweite Zeile bekommt eine alternierende Hintergrundfarbe."
235
 
236
+ #: wp-table-reloaded-admin.php:776
237
  msgid "Use Table Headline"
238
  msgstr "Tabellenüberschrift"
239
 
240
+ #: wp-table-reloaded-admin.php:777
241
  msgid "The first row of your table will use the [th] tag."
242
  msgstr "Die erste Zeile der Tabelle wird mit dem HTML-Tag [th] markiert."
243
 
244
+ #: wp-table-reloaded-admin.php:780
245
  msgid "Print Table Name"
246
  msgstr "Tabellennamen ausgeben"
247
 
248
+ #: wp-table-reloaded-admin.php:781
249
  msgid "The Table Name will be written above the table in a [h2] tag."
250
  msgstr "Der Name der Tabelle wird in einem [h2]-HTML-Tag über die Tabelle geschrieben."
251
 
252
+ #: wp-table-reloaded-admin.php:784
253
  msgid "Print Table Description"
254
  msgstr "Tabellenbeschreibung ausgeben"
255
 
256
+ #: wp-table-reloaded-admin.php:785
257
  msgid "The Table Description will be written under the table."
258
  msgstr "Die Tabellenbeschreibung wird unter die Tabelle geschrieben."
259
 
260
+ #: wp-table-reloaded-admin.php:788
261
  msgid "Use Tablesorter"
262
  msgstr "Tablesorter benutzen"
263
 
264
+ #: wp-table-reloaded-admin.php:789
265
  msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. <small>Attention: You must have Tablesorter enabled on the \"Plugin Options\" page and the option \"Use Table Headline\" has to be enabled above for this to work!</small>"
266
  msgstr "Eine Tabelle kann dynamisch mit dem <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> sortiert werden. <small>Achtung: Tablesorter muss auf der Seite \\"Plugin-Einstellungen\\" aktiviert sein! Außerdem muss die \\"Tabellenüberschrift\\" (mit [th]) (siehe oben) aktiviert sein!</small>"
267
 
268
+ #: wp-table-reloaded-admin.php:606
269
+ #: wp-table-reloaded-admin.php:798
270
  msgid "Update Changes"
271
  msgstr "Änderungen speichern"
272
 
273
+ #: wp-table-reloaded-admin.php:607
274
+ #: wp-table-reloaded-admin.php:799
275
  msgid "Save and go back"
276
  msgstr "Speichern und zurück"
277
 
278
+ #: wp-table-reloaded-admin.php:610
279
+ #: wp-table-reloaded-admin.php:802
280
  msgid "Cancel"
281
  msgstr "Abbrechen"
282
 
283
+ #: wp-table-reloaded-admin.php:804
284
  msgid "Other actions"
285
  msgstr "Andere Aktionen"
286
 
287
+ #: wp-table-reloaded-admin.php:807
288
  msgid "Delete Table"
289
  msgstr "Tabelle löschen"
290
 
291
+ #: wp-table-reloaded-admin.php:808
292
+ #: wp-table-reloaded-admin.php:990
293
  msgid "Export Table"
294
  msgstr "Tabelle exportieren"
295
 
296
+ #: wp-table-reloaded-admin.php:819
297
+ #: wp-table-reloaded-admin.php:1172
298
  msgid "Import a Table"
299
  msgstr "Eine Tabelle importieren"
300
 
301
+ #: wp-table-reloaded-admin.php:850
302
  msgid "Select File with Table to Import"
303
  msgstr "Datei mit den zu importierenden Inhalten auswählen"
304
 
305
+ #: wp-table-reloaded-admin.php:840
306
  msgid "Used Delimiter"
307
  msgstr "Verwendetes Trennzeichen"
308
 
309
+ #: wp-table-reloaded-admin.php:864
310
  msgid "Import Table"
311
  msgstr "Tabelle importieren"
312
 
313
+ #: wp-table-reloaded-admin.php:937
314
+ #: wp-table-reloaded-admin.php:1173
315
  msgid "Export a Table"
316
  msgstr "Eine Tabelle exportieren"
317
 
318
+ #: wp-table-reloaded-admin.php:949
319
  msgid "Select Table to Export"
320
  msgstr "zu exportierende Tabelle auswählen"
321
 
322
+ #: wp-table-reloaded-admin.php:964
323
  msgid "Select Export Format"
324
  msgstr "gewünschtes Export-Format"
325
 
326
+ #: wp-table-reloaded-admin.php:974
327
  msgid "Select Delimiter to use"
328
  msgstr "zu verwendendes Trennzeichen"
329
 
330
+ #: wp-table-reloaded-admin.php:1010
331
  msgid "General Plugin Options"
332
  msgstr "Plugin-Einstellungen"
333
 
334
+ #: wp-table-reloaded-admin.php:1014
335
  msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
336
  msgstr "Hier können allgemeine Plugin-Einstellungen geändert werden<br/>Diese beeinflussen alle Tabellen oder das allgemeine Verhalten des Plugins."
337
 
338
+ #: wp-table-reloaded-admin.php:1046
339
  msgid "Uninstall Plugin upon Deactivation?"
340
  msgstr "Plugin beim Deaktivieren deinstallieren?"
341
 
342
+ #: wp-table-reloaded-admin.php:1025
343
  msgid "Enable Tablesorter-JavaScript?"
344
  msgstr "Tablesorter-JavaScript aktivieren?"
345
 
346
+ #: wp-table-reloaded-admin.php:1026
347
  msgid "Yes, enable <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> to be used to make table sortable (can be changed for every table separatly)."
348
  msgstr "Ja, Nutzung des <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugins</a> ermöglichen, um eine Tabelle sortierbar machen (kann für jede Tabelle separat aktiviert werden)."
349
 
350
+ #: wp-table-reloaded-admin.php:1057
 
 
 
 
351
  msgid "Save Options"
352
  msgstr "Einstellungen speichern"
353
 
354
+ #: wp-table-reloaded-admin.php:1078
355
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
356
  msgstr "Möchtest du das Plugin wirklich deinstallieren und ALLE Daten löschen?"
357
 
358
+ #: wp-table-reloaded-admin.php:1078
359
  msgid "Are you really sure?"
360
  msgstr "Bist du wirklich sicher?"
361
 
362
+ #: wp-table-reloaded-admin.php:1088
363
  msgid "Information about the plugin"
364
  msgstr "Informationen über das Plugin"
365
 
366
+ #: wp-table-reloaded-admin.php:1184
367
  msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a>. A documentation and certain support and help request possibilities will be available soon."
368
  msgstr "Mehr Informationen sind auf der <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">Webseite des Plugins</a> zu finden. Eine Dokumentation und Hilfe- und Unterstützungsmöglichkeiten sind bald verfügbar."
369
 
370
+ #: wp-table-reloaded-admin.php:1116
371
  msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. It is licenced as Free Software under GPL 2."
372
  msgstr "Dieses Plugin wurde von <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a> programmiert. Es ist als Freie Software unter der GPL v2 lizenziert."
373
 
374
+ #: wp-table-reloaded-admin.php:1170
375
  msgid "List Tables"
376
  msgstr "Liste der Tabellen"
377
 
378
+ #: wp-table-reloaded-admin.php:1175
379
  msgid "Plugin Options"
380
  msgstr "Plugin-Einstellungen"
381
 
382
+ #: wp-table-reloaded-admin.php:1176
383
  msgid "About the Plugin"
384
  msgstr "Über das Plugin"
385
 
408
  msgid ": (colon)"
409
  msgstr ": (Doppelpunkt)"
410
 
411
+ #: wp-table-reloaded-admin.php:1078
412
  msgid "Uninstall Plugin WP-Table Reloaded"
413
  msgstr "Plugin WP-Table Reloaded deinstallieren"
414
 
433
  msgid "Table could not be imported."
434
  msgstr "Tabelle konnte nicht importiert werden."
435
 
436
+ #: wp-table-reloaded-admin.php:451
437
  msgid "WP-Table Reloaded"
438
  msgstr "WP-Table Reloaded"
439
 
440
+ #: wp-table-reloaded-admin.php:452
441
  msgid "Plugin deactivated successfully."
442
  msgstr "Plugin erfolgreich deaktiviert."
443
 
444
+ #: wp-table-reloaded-admin.php:453
445
  msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
446
  msgstr "Alle Tabellen, Daten und Einstellungen wurden gelöscht. Du kannst jetzt den Ordner des Plugins aus deinem WordPress Plugin-Ordner löschen."
447
 
448
+ #: wp-table-reloaded-admin.php:475
449
  msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode: <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
450
  msgstr "Wenn Du eine Tabelle in einem Beitrag, auf einer Seite oder in einem Text-Widgets anzeigen möchtest, verwende den Shortcode: <strong>[table id=&lt;ID-der-Tabelle&gt; /]</strong>"
451
 
452
+ #: wp-table-reloaded-admin.php:545
453
  msgid "Enter Table Name"
454
  msgstr "Tabellennamen eingeben"
455
 
456
+ #: wp-table-reloaded-admin.php:549
457
  msgid "Enter Description"
458
  msgstr "Beschreibung eingeben"
459
 
460
+ #: wp-table-reloaded-admin.php:830
 
 
 
 
461
  msgid "Select Import Format"
462
  msgstr "Import-Format wählen"
463
 
464
+ #: wp-table-reloaded-admin.php:847
465
+ #: wp-table-reloaded-admin.php:981
466
  msgid "<small>(Only needed for CSV export.)</small>"
467
  msgstr "<small>(Nur für CSV-Export benötigt.)</small>"
468
 
469
+ #: wp-table-reloaded-admin.php:854
470
  msgid "- or -"
471
  msgstr "- oder -"
472
 
473
+ #: wp-table-reloaded-admin.php:855
474
  msgid "(upload will be preferred over pasting)"
475
  msgstr "(Hochladen hat Vorrang vor manueller Eingabe)"
476
 
477
+ #: wp-table-reloaded-admin.php:858
478
  msgid "Paste data with Table to Import"
479
  msgstr "zu importierende Tabelle einfügen"
480
 
481
+ #: wp-table-reloaded-admin.php:910
 
 
 
 
 
 
 
 
482
  msgid "Import"
483
  msgstr "Import"
484
 
485
+ #: wp-table-reloaded-admin.php:941
 
 
 
 
486
  msgid "You may export a table here. Just select the table, your desired export format and a delimiter (needed for CSV only).<br/>You may opt to download the export file. Otherwise it will be shown on this page."
487
  msgstr "Hier kann eine Tabelle exportiert werden. Einfach Tabelle, gewünschtes Export-Format und Trennzeichen (nur für CSV) auswählen.<br/>Du kannst wählen, ob du die Export-Datei downloaden oder anzeigen lassen möchtest."
488
 
489
+ #: wp-table-reloaded-admin.php:984
490
  msgid "Download file"
491
  msgstr "Datei downloaden"
492
 
493
+ #: wp-table-reloaded-admin.php:985
494
  msgid "Yes, I want to download the export file."
495
  msgstr "Ja, ich möchte die Export-Datei downloaden."
496
 
497
+ #: wp-table-reloaded-admin.php:1021
498
  msgid "Frontend Options"
499
  msgstr "Darstellungsoptionen"
500
 
501
+ #: wp-table-reloaded-admin.php:1042
 
 
 
 
 
 
 
 
 
 
 
 
502
  msgid "Admin Options"
503
  msgstr "Verwaltungseinstellungen"
504
 
505
+ #: wp-table-reloaded-admin.php:1047
506
  msgid "Yes, uninstall everything when plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page! (It does not influence the \"Manually Uninstall Plugin\" button below!)"
507
  msgstr "Ja, alles deinstallieren, wenn Plugin deaktiviert wird. Achtung: Du solltest dieses Kästchen erst direkt vor der Deaktivierung des Plugins auf der WordPress-Plugin-Seite aktivieren! (Es hat keinen Einfluss auf die Schaltfläche zur manuellen Deinstallation unten auf dieser Seite!)"
508
 
509
+ #: wp-table-reloaded-admin.php:1073
510
  msgid "Manually Uninstall Plugin"
511
  msgstr "Manuelle Plugin-Deinstallation"
512
 
513
+ #: wp-table-reloaded-admin.php:1075
514
  msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported.<br/> Be very careful with this and only click the button if you know what you are doing!"
515
  msgstr "Hier kannst du das Plugin deinstallieren. Dies <strong>löscht</strong> alle Tabellen, Daten, Einstellungen, etc. die zum Plugin gehören, inklusive aller angelegter oder importierter Tabellen! Sei hiermit vorsichtig und klicke die Schaltfläche nur, wenn du weißt, was du tust!"
516
 
517
+ #: wp-table-reloaded-admin.php:1094
518
  msgid "Plugin Purpose"
519
  msgstr "Zweck des Plugins"
520
 
521
+ #: wp-table-reloaded-admin.php:1096
522
  msgid "This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode."
523
  msgstr "Dieses Plugin erlaubt die Erstellung und Verwaltung von Tabellen im Administrationsbereich von WordPress. Die Tabellen können dann mittels eines Shortcodes in Beiträgen, auf Seiten und in Text-Widgets angezeigt werden."
524
 
525
+ #: wp-table-reloaded-admin.php:1101
526
  msgid "Usage"
527
  msgstr "Benutzung"
528
 
529
+ #: wp-table-reloaded-admin.php:1103
530
  msgid "At first you should add or import a table. Then edit your data and select the options you want. To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them. You may then style your table via CSS. Every table has the CSS-class \"wp-table-reloaded\". A table also has the class \"wp-table-reloaded-&lt;table-id&gt;\". You can also use the classes \"column-&lt;number&gt;\" and \"row-&lt;number&gt;\" to style rows and columns individually. Use this to style columns width and text alignment."
531
  msgstr "Zuerst sollest du eine Tabelle anlegen oder importieren. Dann kannst du die Daten editieren und gewünschte Darstellungsoptionen aktivieren. Um die Tabelle in einem Beitrag, auf einer Seite oder in einem Text-Widget anzuzeigen, füge dort den Shortcode [table id=&lt;ID-der-Tabelle&gt;] ein. Du kannst die Tabelle dann mittels CSS stylen. Jede Tabelle hat die CSS-Klasse \"wp-table-reloaded\". Jede Tabelle hat außerdem eine Klasse \"wp-table-reloaded-&lt;ID-der-Tabelle&gt;\". Du kannst die Klassen \"column-&lt;Nummer&gt;\" und \"row-&lt;Nummer&gt;\" nutzen, um Zeilen und Spalten individuell zu stylen. Dies kann für die Textausrichtung oder Spaltenbreite genutzt werden."
532
 
533
+ #: wp-table-reloaded-admin.php:1107
534
  msgid "More Information and Documentation"
535
  msgstr "Weitere Informationen und Dokumentation"
536
 
537
+ #: wp-table-reloaded-admin.php:1109
538
  msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. A documentation and certain support and help request possibilities will be available soon."
539
  msgstr "Weitere Informationen findest du auf der <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">Website des Plugins</a> oder auf seiner Seite im <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory.</a> Eine Dokumentation und bestimmte Unterstützungs- und Hilfemöglichkeiten werden in Kürze verfügbar sein."
540
 
541
+ #: wp-table-reloaded-admin.php:1114
542
  msgid "Author and Licence"
543
  msgstr "Autor und Lizenz"
544
 
545
+ #: wp-table-reloaded-admin.php:1116
546
  msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">donating</a> or rating it at the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. Thanks!"
547
  msgstr "Wenn dir das Plugin gefällt, kannst du gerne etwas <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">spenden</a> oder das Plugin auf seiner Seite im <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a> bewerten. Danke!"
548
 
549
+ #: wp-table-reloaded-admin.php:1121
550
  msgid "Credits and Thanks"
551
  msgstr "Danksagungen"
552
 
553
+ #: wp-table-reloaded-admin.php:1133
 
 
 
 
 
 
 
 
554
  msgid "and all contributors, supporters, reviewers and users of the plugin!"
555
  msgstr "und alle Unterstützer, Reviewer und Nutzer des Plugins!"
556
 
557
+ #: wp-table-reloaded-admin.php:687
558
  #, php-format
559
  msgid "Swap rows %s and %s"
560
  msgstr "Tausche die Zeilen %s und %s"
561
 
562
+ #: wp-table-reloaded-admin.php:707
563
  #, php-format
564
  msgid "Swap columns %s and %s"
565
  msgstr "Tausche die Spalten %s und %s"
566
 
567
+ #: wp-table-reloaded-admin.php:1125
568
  msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
569
  msgstr "Christian Bach für das <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
570
 
571
+ #: wp-table-reloaded-admin.php:877
572
+ msgid "Import from original wp-Table plugin"
573
+ msgstr "Import von Tabellen aus dem Plugin wp-Table"
574
+
575
+ #: wp-table-reloaded-admin.php:910
576
+ msgid "Do you really want to import this table from the wp-Table plugin?"
577
+ msgstr "Möchtest du diese Tabelle wirklich aus dem Plugin wp-Table importieren?"
578
+
579
+ #: wp-table-reloaded-admin.php:918
580
+ msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
581
+ msgstr "Das Plugin wp-Table von Alex Rabe scheint installiert zu sein, es wurden jedoch keine Tabellen gefunden."
582
+
583
+ #: wp-table-reloaded-admin.php:1067
584
+ msgid "Do you really want to activate this? You should only do that right before uninstallation!"
585
+ msgstr "Möchtest du diese Option wirklich aktivieren? Du solltest dies erst unmittelbar vor der Deaktivierung zum Zwecke der Deinstallation tun!"
586
+
587
+ #: wp-table-reloaded-admin.php:1124
588
+ msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
589
+ msgstr "Danke an <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> für das Plugin wp-Table,"
590
+
591
+ #: wp-table-reloaded-admin.php:1126
592
+ msgid "the submitters of translations:"
593
+ msgstr "die Übersetzer:"
594
+
595
+ #: wp-table-reloaded-admin.php:1127
596
+ msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
597
+ msgstr "Albanisch (danke an <a href=\"http://www.romeolab.com/\">Romeo</a>)"
598
+
599
+ #: wp-table-reloaded-admin.php:1128
600
+ msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
601
+ msgstr "Französisch (danke an <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
602
+
603
+ #: wp-table-reloaded-admin.php:1129
604
+ msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
605
+ msgstr "Russisch (danke an <a href=\"http://wp-skins.info/\">Truper</a>)"
606
+
607
+ #: wp-table-reloaded-admin.php:1130
608
+ msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>)"
609
+ msgstr "Spanisch (danke an <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>)"
610
+
611
+ #: wp-table-reloaded-admin.php:1131
612
+ msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
613
+ msgstr "Schwedisch (danke an <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
614
+
615
+ #: wp-table-reloaded-admin.php:1132
616
+ msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
617
+ msgstr "Türkisch (danke an <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
618
+
619
+ #: wp-table-reloaded-admin.php:1029
620
+ msgid "Add custom CSS?"
621
+ msgstr "Eigenes CSS hinzufügen?"
622
+
623
+ #: wp-table-reloaded-admin.php:1030
624
+ #, php-format
625
+ msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag. (If you do not want this, just add your CSS styling to your theme's \"style.css\" <small>(located at %s)</small>.) (See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin website</a> for examples.)"
626
+ msgstr "Ja, lade den folgenden CSS-Code mittels eines [style]-HTML-Tags. (Falls du das nicht möchtest, füge deinen CSS-Code einfach in die Datei \"style.css\" deines Themes hinzu <small>(Datei: %s)</small>.) (Für Beispiele besuche die <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-deutsch/\">Webseite des Plugins</a>.)"
627
+
628
+ #: wp-table-reloaded-admin.php:1034
629
+ msgid "Enter custom CSS"
630
+ msgstr "Eigenes CSS eingeben"
631
+
632
+ #: wp-table-reloaded-admin.php:580
633
+ #, php-format
634
+ msgid "Edit Table \"%s\""
635
+ msgstr "Bearbeite Tabelle \"%s\""
636
+
637
+ #: wp-table-reloaded-admin.php:585
638
+ #, php-format
639
+ msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
640
+ msgstr "Wenn du diese Tabelle in einem Beitrag, auf einer Seite oder in einem Text-Widget anzeigen möchtest, für dort einfach den Shortcode <strong>[table id=%s /]</strong> ein."
641
+
642
+ #: wp-table-reloaded-admin.php:672
643
+ msgid "Data Manipulation"
644
+ msgstr "Bearbeitungsfunktionen"
645
+
646
+ #: wp-table-reloaded-admin.php:714
647
+ msgid "Insert Link"
648
+ msgstr "Link einfügen"
649
+
650
+ #: wp-table-reloaded-admin.php:714
651
+ msgid "Insert Image"
652
+ msgstr "Bild einfügen"
653
+
654
+ #: wp-table-reloaded-admin.php:732
655
+ msgid "URL of link to insert"
656
+ msgstr "URL des einzufügenden Links"
657
+
658
+ #: wp-table-reloaded-admin.php:734
659
+ #: wp-table-reloaded-admin.php:734
660
+ msgid "Text of link"
661
+ msgstr "Text des Links"
662
+
663
+ #: wp-table-reloaded-admin.php:737
664
+ msgid "To insert the following link into a cell, just click the cell after closing this dialog."
665
+ msgstr "Um den folgenden Link in eine Tabellenzelle einzufügen, klicke einfach auf diese."
666
+
667
+ #: wp-table-reloaded-admin.php:746
668
+ msgid "URL of image to insert"
669
+ msgstr "URL des einzufügenden Bildes"
670
+
671
+ #: wp-table-reloaded-admin.php:748
672
+ msgid "\"alt\" text of the image"
673
+ msgstr "Alternativtext (\"alt\") des Bildes:"
674
+
675
+ #: wp-table-reloaded-admin.php:751
676
+ msgid "To insert the following image into a cell, just click the cell after closing this dialog."
677
+ msgstr "Um das folgende Bild in eine Tabellenzelle einzufügen, klicke einfach auf diese."
678
+
679
+ #: wp-table-reloaded-admin.php:823
680
+ msgid "You may import a table from existing data here.<br/>It may be a CSV, XML or HTML file. It needs a certain structure though. Please consult the documentation."
681
+ msgstr "Hier kannst du eine Tabelle aus existierenden Daten importieren.<br/>Dies kann eine CSV-, XML- oder HTML-Datei sein. Sie benötigt jedoch eine bestimmte Struktur. Bitte lies bei Problemen die Dokumentation."
682
+
languages/wp-table-reloaded-es_ES.mo ADDED
Binary file
languages/wp-table-reloaded-es_ES.po ADDED
@@ -0,0 +1,726 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wp-table-reloaded\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
5
+ "POT-Creation-Date: 2009-04-27 16:30+0000\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Alejandro Urrutia <alejandro@theindependentproject.com>\n"
8
+ "Language-Team: <alejandro@theindependentproject.com>\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: Spanish\n"
13
+ "X-Poedit-Country: SPAIN\n"
14
+
15
+ #: php/wp-table-reloaded-export.class.php:30
16
+ #: php/wp-table-reloaded-import.class.php:41
17
+ msgid "CSV - Character-Separated Values"
18
+ msgstr "CSV - Character-Separated Values"
19
+
20
+ #: php/wp-table-reloaded-export.class.php:31
21
+ #: php/wp-table-reloaded-import.class.php:42
22
+ msgid "HTML - Hypertext Markup Language"
23
+ msgstr "HTML - Hypertext Markup Language"
24
+
25
+ #: php/wp-table-reloaded-export.class.php:32
26
+ #: php/wp-table-reloaded-import.class.php:43
27
+ msgid "XML - eXtended Markup Language"
28
+ msgstr "XML - eXtended Markup Language"
29
+
30
+ #: php/wp-table-reloaded-export.class.php:35
31
+ #: php/wp-table-reloaded-import.class.php:36
32
+ msgid "; (semicolon)"
33
+ msgstr "; (punto y coma)"
34
+
35
+ #: php/wp-table-reloaded-export.class.php:36
36
+ #: php/wp-table-reloaded-import.class.php:37
37
+ msgid ", (comma)"
38
+ msgstr ", (coma)"
39
+
40
+ #: php/wp-table-reloaded-export.class.php:37
41
+ #: php/wp-table-reloaded-import.class.php:38
42
+ msgid ": (colon)"
43
+ msgstr ": (dos puntos)"
44
+
45
+ #: wp-table-reloaded-admin.php:137
46
+ #, php-format
47
+ msgid "Table \"%s\" added successfully."
48
+ msgstr "Tabla \"%s\" añadida exitosamente."
49
+
50
+ #: wp-table-reloaded-admin.php:160
51
+ msgid "Table edited successfully."
52
+ msgstr "Tabla editada exitosamente."
53
+
54
+ #: wp-table-reloaded-admin.php:176
55
+ msgid "Rows swapped successfully."
56
+ msgstr "Filas cambiadas exitosamente."
57
+
58
+ #: wp-table-reloaded-admin.php:195
59
+ msgid "Columns swapped successfully."
60
+ msgstr "Columnas cambiadas exitosamente."
61
+
62
+ #: wp-table-reloaded-admin.php:224
63
+ msgid "Copy of"
64
+ msgstr "Copia de"
65
+
66
+ #: wp-table-reloaded-admin.php:229
67
+ #, php-format
68
+ msgid "Table \"%s\" copied successfully."
69
+ msgstr "Tabla \"%s\" copiada exitosamente."
70
+
71
+ #: wp-table-reloaded-admin.php:248
72
+ #, php-format
73
+ msgid "Table \"%s\" deleted successfully."
74
+ msgstr "Tabla \"%s\" borrada exitosamente."
75
+
76
+ #: wp-table-reloaded-admin.php:258
77
+ msgid "Row deleted successfully."
78
+ msgstr "Fila borrada exitosamente."
79
+
80
+ #: wp-table-reloaded-admin.php:271
81
+ msgid "Column deleted successfully."
82
+ msgstr "Columna borrada exitosamente."
83
+
84
+ #: wp-table-reloaded-admin.php:276
85
+ msgid "Delete failed."
86
+ msgstr "Borrado fallido."
87
+
88
+ #: wp-table-reloaded-admin.php:300
89
+ msgid "Row inserted successfully."
90
+ msgstr "Filas insertadas exitosamente."
91
+
92
+ #: wp-table-reloaded-admin.php:309
93
+ msgid "Column inserted successfully."
94
+ msgstr "Columna añadida exitosamente."
95
+
96
+ #: wp-table-reloaded-admin.php:312
97
+ msgid "Insert failed."
98
+ msgstr "Inserción fallida."
99
+
100
+ #: wp-table-reloaded-admin.php:340
101
+ msgid "Imported Table"
102
+ msgstr "Tabla Importada"
103
+
104
+ #: wp-table-reloaded-admin.php:341
105
+ msgid "via form"
106
+ msgstr "vía formulario"
107
+
108
+ #: wp-table-reloaded-admin.php:358
109
+ #: wp-table-reloaded-admin.php:379
110
+ msgid "Table imported successfully."
111
+ msgstr "Tabla importada exitosamente."
112
+
113
+ #: wp-table-reloaded-admin.php:361
114
+ msgid "Table could not be imported."
115
+ msgstr "la Tabla no pudo ser importada."
116
+
117
+ #: wp-table-reloaded-admin.php:405
118
+ #, php-format
119
+ msgid "Table \"%s\" exported successfully."
120
+ msgstr "Tabla \"%s\" exportada exitosamente."
121
+
122
+ #: wp-table-reloaded-admin.php:433
123
+ msgid "Options saved successfully."
124
+ msgstr "Opciones guardadas exitosamente."
125
+
126
+ #. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
127
+ #. Plugin Name of an extension
128
+ #: wp-table-reloaded-admin.php:451
129
+ msgid "WP-Table Reloaded"
130
+ msgstr "WP-Table Reloaded"
131
+
132
+ #: wp-table-reloaded-admin.php:452
133
+ msgid "Plugin deactivated successfully."
134
+ msgstr "PLugin desactivado exitosamente."
135
+
136
+ #: wp-table-reloaded-admin.php:453
137
+ msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
138
+ msgstr "Todas las tablas, los datos y las opciones fueron eliminados. Ahora puede quitar la subcarpeta del plugin de la carpeta de plugins de WordPress."
139
+
140
+ #: wp-table-reloaded-admin.php:471
141
+ msgid "List of Tables"
142
+ msgstr "Lista de Tablas"
143
+
144
+ #: wp-table-reloaded-admin.php:474
145
+ msgid "This is a list of all available tables. You may add, edit, copy or delete tables here."
146
+ msgstr "Esta es una lista de todas las Tablas. Usted puede agregar, editar, copiar o borrar las Tablas aquí."
147
+
148
+ #: wp-table-reloaded-admin.php:475
149
+ msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode: <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
150
+ msgstr "Si desea mostrar una tabla en sus páginas, entradas o widgets de texto, utilice el shortcode: <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
151
+
152
+ #: wp-table-reloaded-admin.php:483
153
+ #: wp-table-reloaded-admin.php:887
154
+ msgid "ID"
155
+ msgstr "ID"
156
+
157
+ #: wp-table-reloaded-admin.php:484
158
+ #: wp-table-reloaded-admin.php:544
159
+ #: wp-table-reloaded-admin.php:594
160
+ #: wp-table-reloaded-admin.php:888
161
+ msgid "Table Name"
162
+ msgstr "Nombre de Tabla"
163
+
164
+ #: wp-table-reloaded-admin.php:485
165
+ #: wp-table-reloaded-admin.php:548
166
+ #: wp-table-reloaded-admin.php:598
167
+ #: wp-table-reloaded-admin.php:889
168
+ msgid "Description"
169
+ msgstr "Descripción"
170
+
171
+ #: wp-table-reloaded-admin.php:486
172
+ #: wp-table-reloaded-admin.php:890
173
+ msgid "Action"
174
+ msgstr "Acción"
175
+
176
+ #: wp-table-reloaded-admin.php:511
177
+ msgid "Edit"
178
+ msgstr "Editar"
179
+
180
+ #: wp-table-reloaded-admin.php:512
181
+ msgid "Do you want to copy this table?"
182
+ msgstr "¿Usted quiere copiar esta Tabla?"
183
+
184
+ #: wp-table-reloaded-admin.php:512
185
+ msgid "Copy"
186
+ msgstr "Copiar"
187
+
188
+ #: wp-table-reloaded-admin.php:513
189
+ msgid "Export"
190
+ msgstr "Exportar"
191
+
192
+ #: wp-table-reloaded-admin.php:514
193
+ #: wp-table-reloaded-admin.php:807
194
+ msgid "The complete table and all content will be erased. Do you really want to delete it?"
195
+ msgstr "La tabla completa y todo el contenido se borrará. ¿Realmente quieres eliminarla?"
196
+
197
+ #: wp-table-reloaded-admin.php:514
198
+ msgid "Delete"
199
+ msgstr "Borrar"
200
+
201
+ #: wp-table-reloaded-admin.php:524
202
+ #: wp-table-reloaded-admin.php:1001
203
+ msgid "No tables found."
204
+ msgstr "No se han encontrado Tablas."
205
+
206
+ #: wp-table-reloaded-admin.php:524
207
+ #: wp-table-reloaded-admin.php:1001
208
+ #, php-format
209
+ msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
210
+ msgstr "¡Usted puede <a href=\"%s\">agregar</a> o <a href=\"%s\">importar</a> una!"
211
+
212
+ #: wp-table-reloaded-admin.php:532
213
+ #: wp-table-reloaded-admin.php:1171
214
+ msgid "Add new Table"
215
+ msgstr "Añadir nueva Tabla"
216
+
217
+ #: wp-table-reloaded-admin.php:536
218
+ msgid "You can add a new table here. Just enter it's name, a description (optional) and the number of rows and columns.<br/>You may add, insert or delete rows and columns later."
219
+ msgstr "Puede agregar una nueva tabla aquí. Sólo tienes que introducir su nombre, una descripción (opcional) y el número de filas y columnas. <br/> Puede añadir, insertar o eliminar filas y columnas más tarde."
220
+
221
+ #: wp-table-reloaded-admin.php:545
222
+ msgid "Enter Table Name"
223
+ msgstr "Completar nombre de Tabla"
224
+
225
+ #: wp-table-reloaded-admin.php:549
226
+ msgid "Enter Description"
227
+ msgstr "Completar Descripción"
228
+
229
+ #: wp-table-reloaded-admin.php:552
230
+ msgid "Number of Rows"
231
+ msgstr "Número de Filas"
232
+
233
+ #: wp-table-reloaded-admin.php:556
234
+ msgid "Number of Columns"
235
+ msgstr "Número de Columnas"
236
+
237
+ #: wp-table-reloaded-admin.php:563
238
+ msgid "Add Table"
239
+ msgstr "Añadir Tabla"
240
+
241
+ #: wp-table-reloaded-admin.php:580
242
+ #, php-format
243
+ msgid "Edit Table \"%s\""
244
+ msgstr "Editar Tabla \"%s\""
245
+
246
+ #: wp-table-reloaded-admin.php:584
247
+ msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
248
+ msgstr "Usted puede editar el contenido de la tabla. También es posible añadir o borrar columnas y filas."
249
+
250
+ #: wp-table-reloaded-admin.php:585
251
+ #, php-format
252
+ msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
253
+ msgstr "Si desea mostrar una tabla en sus páginas, entradas o widgets de texto, utilice el shortcode: <strong>[table id=%s /]</strong>"
254
+
255
+ #: wp-table-reloaded-admin.php:590
256
+ msgid "Table Information"
257
+ msgstr "Información de Tabla"
258
+
259
+ #: wp-table-reloaded-admin.php:606
260
+ #: wp-table-reloaded-admin.php:798
261
+ msgid "Update Changes"
262
+ msgstr "Actualizar Cambios"
263
+
264
+ #: wp-table-reloaded-admin.php:607
265
+ #: wp-table-reloaded-admin.php:799
266
+ msgid "Save and go back"
267
+ msgstr "Guardar y volver"
268
+
269
+ #: wp-table-reloaded-admin.php:610
270
+ #: wp-table-reloaded-admin.php:802
271
+ msgid "Cancel"
272
+ msgstr "Cancelar"
273
+
274
+ #: wp-table-reloaded-admin.php:616
275
+ msgid "Table Contents"
276
+ msgstr "Contenido de Tabla"
277
+
278
+ #: wp-table-reloaded-admin.php:644
279
+ msgid "Insert Row"
280
+ msgstr "Insertar Fila"
281
+
282
+ #: wp-table-reloaded-admin.php:646
283
+ msgid "Do you really want to delete this row?"
284
+ msgstr "¿Realmente desea borrar esta fila?"
285
+
286
+ #: wp-table-reloaded-admin.php:646
287
+ msgid "Delete Row"
288
+ msgstr "Borrar Fila"
289
+
290
+ #: wp-table-reloaded-admin.php:656
291
+ msgid "Insert Column"
292
+ msgstr "Insertar Columna"
293
+
294
+ #: wp-table-reloaded-admin.php:658
295
+ msgid "Do you really want to delete this column?"
296
+ msgstr "¿Realmente desea borrar esta columna?"
297
+
298
+ #: wp-table-reloaded-admin.php:658
299
+ msgid "Delete Column"
300
+ msgstr "Borrar Columna"
301
+
302
+ #: wp-table-reloaded-admin.php:663
303
+ msgid "Add Row"
304
+ msgstr "Añadir Fila"
305
+
306
+ #: wp-table-reloaded-admin.php:663
307
+ msgid "Add Column"
308
+ msgstr "Añadir Columna"
309
+
310
+ #: wp-table-reloaded-admin.php:672
311
+ msgid "Data Manipulation"
312
+ msgstr " Manipulación de datos"
313
+
314
+ #: wp-table-reloaded-admin.php:687
315
+ #, php-format
316
+ msgid "Swap rows %s and %s"
317
+ msgstr "Cambiar filas %s y %s"
318
+
319
+ #: wp-table-reloaded-admin.php:690
320
+ #: wp-table-reloaded-admin.php:710
321
+ msgid "Swap"
322
+ msgstr "Cambiar"
323
+
324
+ #: wp-table-reloaded-admin.php:707
325
+ #, php-format
326
+ msgid "Swap columns %s and %s"
327
+ msgstr "Cambiar columnas %s y %s"
328
+
329
+ #: wp-table-reloaded-admin.php:714
330
+ msgid "Insert Link"
331
+ msgstr "Insertar Enlace"
332
+
333
+ #: wp-table-reloaded-admin.php:714
334
+ msgid "Insert Image"
335
+ msgstr "Insertar Imagen"
336
+
337
+ #: wp-table-reloaded-admin.php:732
338
+ msgid "URL of link to insert"
339
+ msgstr "URL del enlace a insertar"
340
+
341
+ #: wp-table-reloaded-admin.php:734
342
+ msgid "Text of link"
343
+ msgstr "Texto del enlace"
344
+
345
+ #: wp-table-reloaded-admin.php:737
346
+ msgid "To insert the following link into a cell, just click the cell after closing this dialog."
347
+ msgstr "Para insertar el siguiente enlace en una celda, basta con hacer clic en la celda después de cerrar este cuadro de diálogo."
348
+
349
+ #: wp-table-reloaded-admin.php:746
350
+ msgid "URL of image to insert"
351
+ msgstr "URL de la imagen a insertar"
352
+
353
+ #: wp-table-reloaded-admin.php:748
354
+ msgid "\"alt\" text of the image"
355
+ msgstr "texto \"alt\" de la imagen"
356
+
357
+ #: wp-table-reloaded-admin.php:751
358
+ msgid "To insert the following image into a cell, just click the cell after closing this dialog."
359
+ msgstr "Para insertar la siguiente imagen en una celda, basta con hacer clic en la celda después de cerrar este cuadro de diálogo."
360
+
361
+ #: wp-table-reloaded-admin.php:767
362
+ msgid "Table Settings"
363
+ msgstr "Configuración de tablas"
364
+
365
+ #: wp-table-reloaded-admin.php:769
366
+ msgid "These settings will only be used for this table."
367
+ msgstr "Estos ajustes sólo se utilizarán para esta tabla."
368
+
369
+ #: wp-table-reloaded-admin.php:772
370
+ msgid "Alternating row colors"
371
+ msgstr "Alternando colores por fila"
372
+
373
+ #: wp-table-reloaded-admin.php:773
374
+ msgid "Every second row will have an alternating background color."
375
+ msgstr "Cada segunda fila tendrá un color de fondo alterno."
376
+
377
+ #: wp-table-reloaded-admin.php:776
378
+ msgid "Use Table Headline"
379
+ msgstr "Utilizar Encabezado de tabla"
380
+
381
+ #: wp-table-reloaded-admin.php:777
382
+ msgid "The first row of your table will use the [th] tag."
383
+ msgstr "La primera fila de la tabla utilizará la etiqueta th."
384
+
385
+ #: wp-table-reloaded-admin.php:780
386
+ msgid "Print Table Name"
387
+ msgstr "Mostrar Nombre de Tabla"
388
+
389
+ #: wp-table-reloaded-admin.php:781
390
+ msgid "The Table Name will be written above the table in a [h2] tag."
391
+ msgstr "El Nombre de la Tabla será escrita sobre la Tabla en una etiqueta h2."
392
+
393
+ #: wp-table-reloaded-admin.php:784
394
+ msgid "Print Table Description"
395
+ msgstr "Mostrar Descripción de Tabla"
396
+
397
+ #: wp-table-reloaded-admin.php:785
398
+ msgid "The Table Description will be written under the table."
399
+ msgstr "El Nombre de la Tabla será escrita debajo de la Tabla."
400
+
401
+ #: wp-table-reloaded-admin.php:788
402
+ msgid "Use Tablesorter"
403
+ msgstr "Usar Tabsorter"
404
+
405
+ #: wp-table-reloaded-admin.php:789
406
+ msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. <small>Attention: You must have Tablesorter enabled on the \"Plugin Options\" page and the option \"Use Table Headline\" has to be enabled above for this to work!</small>"
407
+ msgstr "Usted puede ordenar una tabla utilizando el <a href=\"http://www.tablesorter.com/\">Plugin jQuery Tablesorter</a>. <small>Atención: Usted debe tener habilitado Tablesorter en la página de \"Opciones de Plugin\" y la opción \"Utilice encabezado\" ¡tiene que estar habilitado para funcionar!</small>"
408
+
409
+ #: wp-table-reloaded-admin.php:804
410
+ msgid "Other actions"
411
+ msgstr "Otras acciones"
412
+
413
+ #: wp-table-reloaded-admin.php:807
414
+ msgid "Delete Table"
415
+ msgstr "Borrar Tabla"
416
+
417
+ #: wp-table-reloaded-admin.php:808
418
+ #: wp-table-reloaded-admin.php:990
419
+ msgid "Export Table"
420
+ msgstr "Exportar una Tabla"
421
+
422
+ #: wp-table-reloaded-admin.php:819
423
+ #: wp-table-reloaded-admin.php:1172
424
+ msgid "Import a Table"
425
+ msgstr "Importar una Tabla"
426
+
427
+ #: wp-table-reloaded-admin.php:823
428
+ msgid "You may import a table from existing data here.<br/>It may be a CSV, XML or HTML file. It needs a certain structure though. Please consult the documentation."
429
+ msgstr "Usted puede importar una tabla a partir de los datos existentes aquí.<br/> Puede ser un archivo CSV, XML o archivo HTML. Se necesita una cierta estructura. Por favor, consulte la documentación."
430
+
431
+ #: wp-table-reloaded-admin.php:830
432
+ msgid "Select Import Format"
433
+ msgstr "Seleccionar Formato de Importación"
434
+
435
+ #: wp-table-reloaded-admin.php:840
436
+ msgid "Used Delimiter"
437
+ msgstr "Delimitador utilizado"
438
+
439
+ #: wp-table-reloaded-admin.php:847
440
+ #: wp-table-reloaded-admin.php:981
441
+ msgid "<small>(Only needed for CSV export.)</small>"
442
+ msgstr "<small>(Solamente necesario para exportación CSV.)</small>"
443
+
444
+ #: wp-table-reloaded-admin.php:850
445
+ msgid "Select File with Table to Import"
446
+ msgstr "Seleccionar fichero con Tabla para Importar"
447
+
448
+ #: wp-table-reloaded-admin.php:854
449
+ msgid "- or -"
450
+ msgstr "- o -"
451
+
452
+ #: wp-table-reloaded-admin.php:855
453
+ msgid "(upload will be preferred over pasting)"
454
+ msgstr "(subir será preferible a pegar)"
455
+
456
+ #: wp-table-reloaded-admin.php:858
457
+ msgid "Paste data with Table to Import"
458
+ msgstr "Pegar datos con la Tabla para Importar"
459
+
460
+ #: wp-table-reloaded-admin.php:864
461
+ msgid "Import Table"
462
+ msgstr "Importar Tabla"
463
+
464
+ #: wp-table-reloaded-admin.php:877
465
+ msgid "Import from original wp-Table plugin"
466
+ msgstr "Importar desde el plugin WP-Table original"
467
+
468
+ #: wp-table-reloaded-admin.php:910
469
+ msgid "Do you really want to import this table from the wp-Table plugin?"
470
+ msgstr "¿Está seguro de que desea importar esta Tabla a partir del plugin WP-Table?"
471
+
472
+ #: wp-table-reloaded-admin.php:910
473
+ msgid "Import"
474
+ msgstr "Importar"
475
+
476
+ #: wp-table-reloaded-admin.php:918
477
+ msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
478
+ msgstr "WP-Table de Alex Rabe parece estar instalado, pero no se han encontrado Tablas."
479
+
480
+ #: wp-table-reloaded-admin.php:937
481
+ #: wp-table-reloaded-admin.php:1173
482
+ msgid "Export a Table"
483
+ msgstr "Exportar Tabla"
484
+
485
+ #: wp-table-reloaded-admin.php:941
486
+ msgid "You may export a table here. Just select the table, your desired export format and a delimiter (needed for CSV only).<br/>You may opt to download the export file. Otherwise it will be shown on this page."
487
+ msgstr "Puede exportar una tabla aquí. Basta con seleccionar la tabla, el formato de exportación deseado y un delimitador (sólo necesario para CSV). <br/> Usted puede optar por descargar el archivo de exportación. De lo contrario, se mostrará en esta página."
488
+
489
+ #: wp-table-reloaded-admin.php:949
490
+ msgid "Select Table to Export"
491
+ msgstr "Seleccionar Tabla a Exportar"
492
+
493
+ #: wp-table-reloaded-admin.php:964
494
+ msgid "Select Export Format"
495
+ msgstr "Seleccionar Formato de Exportación"
496
+
497
+ #: wp-table-reloaded-admin.php:974
498
+ msgid "Select Delimiter to use"
499
+ msgstr "Seleccionar Delimitador a utilizar"
500
+
501
+ #: wp-table-reloaded-admin.php:984
502
+ msgid "Download file"
503
+ msgstr "Descargar fichero"
504
+
505
+ #: wp-table-reloaded-admin.php:985
506
+ msgid "Yes, I want to download the export file."
507
+ msgstr "Si, quiero descargar el fichero exportado."
508
+
509
+ #: wp-table-reloaded-admin.php:1010
510
+ msgid "General Plugin Options"
511
+ msgstr "Opciones generales del Plugin"
512
+
513
+ #: wp-table-reloaded-admin.php:1014
514
+ msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
515
+ msgstr "Usted puede cambiar estas opciones. <br/> Ellas efectarán todas las tablas o el comportamiento del plugin."
516
+
517
+ #: wp-table-reloaded-admin.php:1021
518
+ msgid "Frontend Options"
519
+ msgstr "Opciones del Frontend"
520
+
521
+ #: wp-table-reloaded-admin.php:1025
522
+ msgid "Enable Tablesorter-JavaScript?"
523
+ msgstr "¿Habilitar el uso de Tabsorter-JavaScript?"
524
+
525
+ #: wp-table-reloaded-admin.php:1026
526
+ msgid "Yes, enable <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> to be used to make table sortable (can be changed for every table separatly)."
527
+ msgstr "Sí, habilitar el <a href=\"http://www.tablesorter.com/\">Plugin jQuery Tablesorter</a> para ser usado para hacer las tablas sortables (puede ser cambiado por cada tabla por separado)."
528
+
529
+ #: wp-table-reloaded-admin.php:1029
530
+ msgid "Add custom CSS?"
531
+ msgstr "¿Añadir hoja de estilos CSS propia?"
532
+
533
+ #: wp-table-reloaded-admin.php:1030
534
+ #, php-format
535
+ msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag. (If you do not want this, just add your CSS styling to your theme's \"style.css\" <small>(located at %s)</small>.) (See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin website</a> for examples.)"
536
+ msgstr "Sí, incluir y cargar el siguiente snippet de CSS en mi sitio web dentro de una etiqueta HTML del tipo [style]. (Si no quiere hacer esto, solamente añada su estilo CSS a su hoja de estilo \"style.css\" de su tema <small>(en %s)</small>.) (Ver el sitio web de <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">wp-table-reloaded</a> para ver ejemplos.)"
537
+
538
+ #: wp-table-reloaded-admin.php:1034
539
+ msgid "Enter custom CSS"
540
+ msgstr "Introduzca CSS personalizado"
541
+
542
+ #: wp-table-reloaded-admin.php:1042
543
+ msgid "Admin Options"
544
+ msgstr "Opciones de Administración"
545
+
546
+ #: wp-table-reloaded-admin.php:1046
547
+ msgid "Uninstall Plugin upon Deactivation?"
548
+ msgstr "¿Desinstalar Plugin sobre la desactivación?"
549
+
550
+ #: wp-table-reloaded-admin.php:1047
551
+ msgid "Yes, uninstall everything when plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page! (It does not influence the \"Manually Uninstall Plugin\" button below!)"
552
+ msgstr "Sí, desinstalar todo cuando se desactiva el plugin. Atención: Sólo debe habilitar esta opción directamente antes de desactivar el plugin desde la página de plugins de WordPress! (¡No influye en el botón \"desinstalar plugin manualmente\" !)"
553
+
554
+ #: wp-table-reloaded-admin.php:1057
555
+ msgid "Save Options"
556
+ msgstr "Guardar Opciones"
557
+
558
+ #: wp-table-reloaded-admin.php:1067
559
+ msgid "Do you really want to activate this? You should only do that right before uninstallation!"
560
+ msgstr "¿Realmente desea activar esto? ¡Sólo debe hacerlo antes de la desinstalación!"
561
+
562
+ #: wp-table-reloaded-admin.php:1073
563
+ msgid "Manually Uninstall Plugin"
564
+ msgstr "Desinstalar manualmente el Plugin"
565
+
566
+ #: wp-table-reloaded-admin.php:1075
567
+ msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported.<br/> Be very careful with this and only click the button if you know what you are doing!"
568
+ msgstr "Puede desinstalar el plugin aquí. Esto <strong>eliminará</strong>, todas las tablas, datos, opciones, etc, que pertenecen al plugin, incluyendo todas las tablas que ha añadido o importado. <br/> ¡Tenga mucho cuidado con esto y sólo haga clic en el botón si sabes lo que estás haciendo!"
569
+
570
+ #: wp-table-reloaded-admin.php:1078
571
+ msgid "Do you really want to uninstall the plugin and delete ALL data?"
572
+ msgstr "¿Realmente quieres desinstalar el plugin y eliminar TODOS los datos?"
573
+
574
+ #: wp-table-reloaded-admin.php:1078
575
+ msgid "Are you really sure?"
576
+ msgstr "¿Está usted seguro?"
577
+
578
+ #: wp-table-reloaded-admin.php:1078
579
+ msgid "Uninstall Plugin WP-Table Reloaded"
580
+ msgstr "Desinstalar Plugin WP-Table Reloaded"
581
+
582
+ #: wp-table-reloaded-admin.php:1088
583
+ msgid "Information about the plugin"
584
+ msgstr "Información sobre el Plugin"
585
+
586
+ #: wp-table-reloaded-admin.php:1094
587
+ msgid "Plugin Purpose"
588
+ msgstr "Propósito del Plugin"
589
+
590
+ #: wp-table-reloaded-admin.php:1096
591
+ msgid "This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode."
592
+ msgstr "Este plugin te permite crear y administrar tablas en el ámbito de la administración WordPress. A continuación, puede mostrar en sus entradas, en sus páginas o en los widgets de texto usando shortcode."
593
+
594
+ #: wp-table-reloaded-admin.php:1101
595
+ msgid "Usage"
596
+ msgstr "Uso"
597
+
598
+ #: wp-table-reloaded-admin.php:1103
599
+ msgid "At first you should add or import a table. Then edit your data and select the options you want. To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them. You may then style your table via CSS. Every table has the CSS-class \"wp-table-reloaded\". A table also has the class \"wp-table-reloaded-&lt;table-id&gt;\". You can also use the classes \"column-&lt;number&gt;\" and \"row-&lt;number&gt;\" to style rows and columns individually. Use this to style columns width and text alignment."
600
+ msgstr "En primer lugar, debe añadir o importar una tabla. A continuación, edite los datos y seleccionar las opciones que desee. Para incluir la tabla en sus entradas, las páginas o los widgets de texto, escriba el shortcode[table id=&lt;table-id&gt;] en ellos. Usted puede entonces a través estilos CSS darle estilo la tabla. Cada tabla tiene la clase CSS \"wp-table-reloaded\". Una tabla tiene la clase \"wp-table-reloaded-&lt;table-id&gt;\". También puede usar las clases \"column-&lt;number&gt;\" y \"row-&lt;number&gt;\" para estilizar las filas y columnas de estilo individualmente. Utilice este para estilizar ancho y alineación de texto de las columnas."
601
+
602
+ #: wp-table-reloaded-admin.php:1107
603
+ msgid "More Information and Documentation"
604
+ msgstr "Más Información y Documentación"
605
+
606
+ #: wp-table-reloaded-admin.php:1109
607
+ msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. A documentation and certain support and help request possibilities will be available soon."
608
+ msgstr "Se puede encontrar más información en <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">website del plugin</a> o en el <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">Directorio del Plugin de WordPress</a>. Documentación y soporte y las posibilidades de solicitud de ayuda estarán disponibles en breve."
609
+
610
+ #: wp-table-reloaded-admin.php:1114
611
+ msgid "Author and Licence"
612
+ msgstr "Autor y Licencia"
613
+
614
+ #: wp-table-reloaded-admin.php:1116
615
+ msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. It is licenced as Free Software under GPL 2."
616
+ msgstr "Este plugin fue escrito por <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. Tiene licencia de Software Libre bajo GPL 2."
617
+
618
+ #: wp-table-reloaded-admin.php:1116
619
+ msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">donating</a> or rating it at the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. Thanks!"
620
+ msgstr "Si te gusta este plugin, por favor considere <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">hacer una donación</a> o califícalo en <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">Directorio de Plugins de WordPress</a>. ¡Gracias!"
621
+
622
+ #: wp-table-reloaded-admin.php:1121
623
+ msgid "Credits and Thanks"
624
+ msgstr "Créditos y Agradecimientos"
625
+
626
+ #: wp-table-reloaded-admin.php:1124
627
+ msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
628
+ msgstr "Las gracias son para <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> por la versión original del plugin WP-Table,"
629
+
630
+ #: wp-table-reloaded-admin.php:1125
631
+ msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
632
+ msgstr "Christian Bach por el <a href=\"http://www.tablesorter.com/\">Plugin jQuery: Tablesorter</a>,"
633
+
634
+ #: wp-table-reloaded-admin.php:1126
635
+ msgid "the submitters of translations:"
636
+ msgstr "los traductores:"
637
+
638
+ #: wp-table-reloaded-admin.php:1127
639
+ msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
640
+ msgstr "Albanés (gracias a <a href=\"http://www.romeolab.com/\">Romeo</a>)"
641
+
642
+ #: wp-table-reloaded-admin.php:1128
643
+ msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
644
+ msgstr "Francés (gracias a <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
645
+
646
+ #: wp-table-reloaded-admin.php:1129
647
+ msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
648
+ msgstr "Ruso (gracias a <a href=\"http://wp-skins.info/\">Truper</a>)"
649
+
650
+ #: wp-table-reloaded-admin.php:1130
651
+ msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>)"
652
+ msgstr "Español (gracias a <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>)"
653
+
654
+ #: wp-table-reloaded-admin.php:1131
655
+ msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
656
+ msgstr "Sueco (gracias a <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
657
+
658
+ #: wp-table-reloaded-admin.php:1132
659
+ msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
660
+ msgstr "Turco (gracias a <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
661
+
662
+ #: wp-table-reloaded-admin.php:1133
663
+ msgid "and all contributors, supporters, reviewers and users of the plugin!"
664
+ msgstr "y todos los colaboradores, soportadores, los revisores y los usuarios del plugin!"
665
+
666
+ #: wp-table-reloaded-admin.php:1170
667
+ msgid "List Tables"
668
+ msgstr "Listar Tablas"
669
+
670
+ #: wp-table-reloaded-admin.php:1175
671
+ msgid "Plugin Options"
672
+ msgstr "Opciones de Plugin"
673
+
674
+ #: wp-table-reloaded-admin.php:1176
675
+ msgid "About the Plugin"
676
+ msgstr "Sobre el Plugin"
677
+
678
+ #: wp-table-reloaded-admin.php:1184
679
+ msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a>. A documentation and certain support and help request possibilities will be available soon."
680
+ msgstr "Se puede encontrar más información en <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">website del plugin</a>. Documentación y soporte y las posibilidades de solicitud de ayuda estarán disponibles en breve."
681
+
682
+ #. Plugin URI of an extension
683
+ msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
684
+ msgstr "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
685
+
686
+ #. Description of an extension
687
+ msgid "This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode. The plugin is a completely rewritten and extended version of Alex Rabe's \"wp-Table\" and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin."
688
+ msgstr "Este plugin te permite crear y administrar tablas en el ámbito de la Administración de WordPress. A continuación, puede insertarlas en sus entradas, en sus páginas o en los widgets de texto usando [shortcode]. El plugin es totalmente una versión reescrita y ampliada de \"WP-Table\" de Alex Rabe y utiliza la técnica de WordPress que lo hace más rápido y más ligero que el plugin original."
689
+
690
+ #. Author of an extension
691
+ msgid "Tobias B&auml;thge"
692
+ msgstr "Tobias B&auml;thge"
693
+
694
+ #. Author URI of an extension
695
+ msgid "http://tobias.baethge.com/"
696
+ msgstr "http://tobias.baethge.com/"
697
+
698
+ #~ msgid "Use global CSS-file?"
699
+ #~ msgstr "¿Utilizar fichero CSS global?"
700
+ #~ msgid ""
701
+ #~ "Yes, load a CSS-file, which contains basic styles for the table. The CSS-"
702
+ #~ "files must be located in subfolder \"css\". To change styles, please copy "
703
+ #~ "the file \"example-style.css\", edit the copied file with your style "
704
+ #~ "changes and place it in the same folder. You may then select it below. "
705
+ #~ msgstr ""
706
+ #~ "Sí, carga un archivo CSS, que contiene estilos básicos de la mesa. Los "
707
+ #~ "ficheros CSS deben estar situados en la subcarpeta \"css\". Para cambiar "
708
+ #~ "los estilos, por favor, copie el archivo \"ejemplo-style.css\", edite el "
709
+ #~ "archivo copiado y copialo en la misma carpeta. Usted puede entonces, "
710
+ #~ "seleccionarlo debajo."
711
+ #~ msgid "Select CSS file to use"
712
+ #~ msgstr "Sleleccionarfichero CSS a utilizar"
713
+ #~ msgid ""
714
+ #~ "(These files are located in the subfolder \"css\" of the plugin folder.)"
715
+ #~ msgstr ""
716
+ #~ "(Estos ficheros se encuentran en la subcarpeta \"css\" de la carpeta del "
717
+ #~ "plugin.)"
718
+ #~ msgid ""
719
+ #~ "the submitters of translations: <br/>&middot; Turkish (thanks to <a href="
720
+ #~ "\"http://www.wpuzmani.com/\">Semih</a>)<br/>&middot; Swedish (thanks to "
721
+ #~ "<a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
722
+ #~ msgstr ""
723
+ #~ "los traductores: <br/>&middot; Turco (gracias a <a href=\"http://www."
724
+ #~ "wpuzmani.com/\">Semih</a>)<br/>&middot; Sueco (gracias a <a href="
725
+ #~ "\"http://www.zuperzed.se/\">ZuperZed</a>)"
726
+
languages/wp-table-reloaded-fr_FR.mo ADDED
Binary file
languages/wp-table-reloaded-fr_FR.po ADDED
@@ -0,0 +1,639 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-Table Reloaded v1.0.1\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-04-27 14:34+0100\n"
6
+ "PO-Revision-Date: 2009-04-27 15:11+0100\n"
7
+ "Last-Translator: Yin-Yin <yin-yin@boitamail.net>\n"
8
+ "Language-Team: Yin-YIn <yin-yin@boitamail.net>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n>1;\n"
13
+ "X-Poedit-Language: French\n"
14
+ "X-Poedit-Country: FRANCE\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;__ngettext_noop:1,2;_c\n"
17
+ "X-Poedit-Basepath: ../\n"
18
+ ": \n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #: wp-table-reloaded-admin.php:137
22
+ #, php-format
23
+ msgid "Table \"%s\" added successfully."
24
+ msgstr "Tableau \"%s\" ajouté avec succès."
25
+
26
+ #: wp-table-reloaded-admin.php:160
27
+ msgid "Table edited successfully."
28
+ msgstr "Tableau modifié avec succès."
29
+
30
+ #: wp-table-reloaded-admin.php:176
31
+ msgid "Rows swapped successfully."
32
+ msgstr "Lignes échangées avec succès."
33
+
34
+ #: wp-table-reloaded-admin.php:195
35
+ msgid "Columns swapped successfully."
36
+ msgstr "Colonnes échangées avec succès."
37
+
38
+ #: wp-table-reloaded-admin.php:224
39
+ msgid "Copy of"
40
+ msgstr "Copie de"
41
+
42
+ #: wp-table-reloaded-admin.php:229
43
+ #, php-format
44
+ msgid "Table \"%s\" copied successfully."
45
+ msgstr "Le tableau \"%s\" a été copié."
46
+
47
+ #: wp-table-reloaded-admin.php:248
48
+ #, php-format
49
+ msgid "Table \"%s\" deleted successfully."
50
+ msgstr "Le tableau \"%s\" a été effacé."
51
+
52
+ #: wp-table-reloaded-admin.php:258
53
+ msgid "Row deleted successfully."
54
+ msgstr "La ligne a été supprimée."
55
+
56
+ #: wp-table-reloaded-admin.php:271
57
+ msgid "Column deleted successfully."
58
+ msgstr "La colonne a été supprimée."
59
+
60
+ #: wp-table-reloaded-admin.php:276
61
+ msgid "Delete failed."
62
+ msgstr "Suppression échouée."
63
+
64
+ #: wp-table-reloaded-admin.php:300
65
+ msgid "Row inserted successfully."
66
+ msgstr "Ligne insérée."
67
+
68
+ #: wp-table-reloaded-admin.php:309
69
+ msgid "Column inserted successfully."
70
+ msgstr "Colonne insérée."
71
+
72
+ #: wp-table-reloaded-admin.php:312
73
+ msgid "Insert failed."
74
+ msgstr "Insertion échouée."
75
+
76
+ #: wp-table-reloaded-admin.php:340
77
+ msgid "Imported Table"
78
+ msgstr "Importer un tableau"
79
+
80
+ #: wp-table-reloaded-admin.php:341
81
+ msgid "via form"
82
+ msgstr "via le formulaire"
83
+
84
+ #: wp-table-reloaded-admin.php:358
85
+ #: wp-table-reloaded-admin.php:379
86
+ msgid "Table imported successfully."
87
+ msgstr "Tableau importé."
88
+
89
+ #: wp-table-reloaded-admin.php:361
90
+ msgid "Table could not be imported."
91
+ msgstr "Le tableau n'a pas pu être importé."
92
+
93
+ #: wp-table-reloaded-admin.php:405
94
+ #, php-format
95
+ msgid "Table \"%s\" exported successfully."
96
+ msgstr "Tableau \"%s\" exporté."
97
+
98
+ #: wp-table-reloaded-admin.php:433
99
+ msgid "Options saved successfully."
100
+ msgstr "Options enregistrées."
101
+
102
+ #: wp-table-reloaded-admin.php:451
103
+ msgid "WP-Table Reloaded"
104
+ msgstr "WP-Table Reloaded"
105
+
106
+ #: wp-table-reloaded-admin.php:452
107
+ msgid "Plugin deactivated successfully."
108
+ msgstr "Plugin désactivé."
109
+
110
+ #: wp-table-reloaded-admin.php:453
111
+ msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
112
+ msgstr "Tous les tableaux, les données et les options ont été supprimés. Vous pouvez maintenant supprimer le répertoire du plugin sur votre serveur."
113
+
114
+ #: wp-table-reloaded-admin.php:471
115
+ msgid "List of Tables"
116
+ msgstr "Liste des tableaux"
117
+
118
+ #: wp-table-reloaded-admin.php:474
119
+ msgid "This is a list of all available tables. You may add, edit, copy or delete tables here."
120
+ msgstr "Voici la liste de tous les tableaux. Vous pouvez ajouter, modifier, copier ou supprimer des tableaux."
121
+
122
+ #: wp-table-reloaded-admin.php:475
123
+ msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode: <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
124
+ msgstr "Si vous voulez afficher un tableau dans vos pages, billets ou widgets texte, utilisez le code: <strong>[table id=&lt;the_table_ID&gt;]</strong>"
125
+
126
+ #: wp-table-reloaded-admin.php:483
127
+ #: wp-table-reloaded-admin.php:832
128
+ msgid "ID"
129
+ msgstr "ID"
130
+
131
+ #: wp-table-reloaded-admin.php:484
132
+ #: wp-table-reloaded-admin.php:544
133
+ #: wp-table-reloaded-admin.php:594
134
+ #: wp-table-reloaded-admin.php:833
135
+ msgid "Table Name"
136
+ msgstr "Nom du tableau"
137
+
138
+ #: wp-table-reloaded-admin.php:485
139
+ #: wp-table-reloaded-admin.php:548
140
+ #: wp-table-reloaded-admin.php:598
141
+ #: wp-table-reloaded-admin.php:834
142
+ msgid "Description"
143
+ msgstr "Description"
144
+
145
+ #: wp-table-reloaded-admin.php:486
146
+ #: wp-table-reloaded-admin.php:835
147
+ msgid "Action"
148
+ msgstr "Action"
149
+
150
+ #: wp-table-reloaded-admin.php:511
151
+ msgid "Edit"
152
+ msgstr "Modifier"
153
+
154
+ #: wp-table-reloaded-admin.php:512
155
+ msgid "Do you want to copy this table?"
156
+ msgstr "Voulez-vous copier ce tableau?"
157
+
158
+ #: wp-table-reloaded-admin.php:512
159
+ msgid "Copy"
160
+ msgstr "Copier"
161
+
162
+ #: wp-table-reloaded-admin.php:513
163
+ msgid "Export"
164
+ msgstr "Exporter"
165
+
166
+ #: wp-table-reloaded-admin.php:514
167
+ #: wp-table-reloaded-admin.php:752
168
+ msgid "The complete table and all content will be erased. Do you really want to delete it?"
169
+ msgstr "Le tableau complet et tout le contenu sera effacé. Voulez-vous vraiment supprimer?"
170
+
171
+ #: wp-table-reloaded-admin.php:514
172
+ msgid "Delete"
173
+ msgstr "Supprimer"
174
+
175
+ #: wp-table-reloaded-admin.php:524
176
+ #: wp-table-reloaded-admin.php:946
177
+ msgid "No tables found."
178
+ msgstr "Pas de tableau trouvé."
179
+
180
+ #: wp-table-reloaded-admin.php:524
181
+ #: wp-table-reloaded-admin.php:946
182
+ #, php-format
183
+ msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
184
+ msgstr "Vous pouvez en <a href=\"%s\">ajouter</a> ou en <a href=\"%s\">importer</a> un!"
185
+
186
+ #: wp-table-reloaded-admin.php:532
187
+ #: wp-table-reloaded-admin.php:1116
188
+ msgid "Add new Table"
189
+ msgstr "Ajouter un nouveau tableau"
190
+
191
+ #: wp-table-reloaded-admin.php:536
192
+ msgid "You can add a new table here. Just enter it's name, a description (optional) and the number of rows and columns.<br/>You may add, insert or delete rows and columns later."
193
+ msgstr "Ici vous pouvez ajouter un nouveau tableau. Entrez simplement son nom, une description (en option) et un nombre de lignes et de colonnes.<br/>Plus tard vous pourrez ajouter, insérer ou supprimer des lignes et des colonnes."
194
+
195
+ #: wp-table-reloaded-admin.php:545
196
+ msgid "Enter Table Name"
197
+ msgstr "Entrez un nom de tableau"
198
+
199
+ #: wp-table-reloaded-admin.php:549
200
+ msgid "Enter Description"
201
+ msgstr "Entrez la description"
202
+
203
+ #: wp-table-reloaded-admin.php:552
204
+ msgid "Number of Rows"
205
+ msgstr "Nombre de lignes"
206
+
207
+ #: wp-table-reloaded-admin.php:556
208
+ msgid "Number of Columns"
209
+ msgstr "Nombre de colonnes"
210
+
211
+ #: wp-table-reloaded-admin.php:563
212
+ msgid "Add Table"
213
+ msgstr "Ajouter un tableau"
214
+
215
+ #: wp-table-reloaded-admin.php:584
216
+ msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
217
+ msgstr "Ici vous pouvez éditer le contenu du tableau. Il est possible d'ajouter ou supprimer des colonnes et des lignes."
218
+
219
+ #: wp-table-reloaded-admin.php:590
220
+ msgid "Table Information"
221
+ msgstr "Informations du tableau"
222
+
223
+ #: wp-table-reloaded-admin.php:606
224
+ #: wp-table-reloaded-admin.php:743
225
+ msgid "Update Changes"
226
+ msgstr "Mise à jour des modifications"
227
+
228
+ #: wp-table-reloaded-admin.php:607
229
+ #: wp-table-reloaded-admin.php:744
230
+ msgid "Save and go back"
231
+ msgstr "Enregistrer et revenir en arrière"
232
+
233
+ #: wp-table-reloaded-admin.php:610
234
+ #: wp-table-reloaded-admin.php:747
235
+ msgid "Cancel"
236
+ msgstr "Annuler"
237
+
238
+ #: wp-table-reloaded-admin.php:616
239
+ msgid "Table Contents"
240
+ msgstr "Table des matières"
241
+
242
+ #: wp-table-reloaded-admin.php:644
243
+ msgid "Insert Row"
244
+ msgstr "Insérer une ligne"
245
+
246
+ #: wp-table-reloaded-admin.php:646
247
+ msgid "Do you really want to delete this row?"
248
+ msgstr "Voulez-vous vraiment supprimer cette ligne?"
249
+
250
+ #: wp-table-reloaded-admin.php:646
251
+ msgid "Delete Row"
252
+ msgstr "Supprimer la ligne"
253
+
254
+ #: wp-table-reloaded-admin.php:656
255
+ msgid "Insert Column"
256
+ msgstr "Insérer une colonne"
257
+
258
+ #: wp-table-reloaded-admin.php:658
259
+ msgid "Do you really want to delete this column?"
260
+ msgstr "Voulez-vous vraiment supprimer cette colonne?"
261
+
262
+ #: wp-table-reloaded-admin.php:658
263
+ msgid "Delete Column"
264
+ msgstr "Supprimer la colonne"
265
+
266
+ #: wp-table-reloaded-admin.php:663
267
+ msgid "Add Row"
268
+ msgstr "Ajouter une ligne"
269
+
270
+ #: wp-table-reloaded-admin.php:663
271
+ msgid "Add Column"
272
+ msgstr "Ajouter une colonne"
273
+
274
+ #: wp-table-reloaded-admin.php:684
275
+ #, php-format
276
+ msgid "Swap rows %s and %s"
277
+ msgstr "Échanger les lignes %s et %s"
278
+
279
+ #: wp-table-reloaded-admin.php:687
280
+ #: wp-table-reloaded-admin.php:707
281
+ msgid "Swap"
282
+ msgstr "Échanger"
283
+
284
+ #: wp-table-reloaded-admin.php:704
285
+ #, php-format
286
+ msgid "Swap columns %s and %s"
287
+ msgstr "Échanger les colonnes %s et %s"
288
+
289
+ #: wp-table-reloaded-admin.php:712
290
+ msgid "Table Settings"
291
+ msgstr "Paramètres du tableau"
292
+
293
+ #: wp-table-reloaded-admin.php:714
294
+ msgid "These settings will only be used for this table."
295
+ msgstr "Ces paramètres ne seront utilisées que pour ce tableau."
296
+
297
+ #: wp-table-reloaded-admin.php:717
298
+ msgid "Alternating row colors"
299
+ msgstr "Alterner les couleurs des lignes"
300
+
301
+ #: wp-table-reloaded-admin.php:718
302
+ msgid "Every second row will have an alternating background color."
303
+ msgstr "Chaque deuxième ligne aura une couleur de fond alternée."
304
+
305
+ #: wp-table-reloaded-admin.php:721
306
+ msgid "Use Table Headline"
307
+ msgstr "Utiliser le titre du tableau"
308
+
309
+ #: wp-table-reloaded-admin.php:722
310
+ msgid "The first row of your table will use the [th] tag."
311
+ msgstr "La première ligne de votre tableau utilisera le tag [th]."
312
+
313
+ #: wp-table-reloaded-admin.php:725
314
+ msgid "Print Table Name"
315
+ msgstr "Afficher le nom du tableau"
316
+
317
+ #: wp-table-reloaded-admin.php:726
318
+ msgid "The Table Name will be written above the table in a [h2] tag."
319
+ msgstr "Le nom du tableau sera écrit au-dessus du tableau dans un tag [h2]."
320
+
321
+ #: wp-table-reloaded-admin.php:729
322
+ msgid "Print Table Description"
323
+ msgstr "Afficher la description du tableau"
324
+
325
+ #: wp-table-reloaded-admin.php:730
326
+ msgid "The Table Description will be written under the table."
327
+ msgstr "La description du tableau sera écrite sous le tableau."
328
+
329
+ #: wp-table-reloaded-admin.php:733
330
+ msgid "Use Tablesorter"
331
+ msgstr "Utiliser le tri des tableaux"
332
+
333
+ #: wp-table-reloaded-admin.php:734
334
+ msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. <small>Attention: You must have Tablesorter enabled on the \"Plugin Options\" page and the option \"Use Table Headline\" has to be enabled above for this to work!</small>"
335
+ msgstr "Vous pouvez trier un tableau à l'aide du plugin <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery</a>. <small>Attention: Vous devez avoir activé le tri des tableaux dans la page \"Options du plugin\" et l'option \"Utiliser le titre du tableau\"doit être activée au dessus pour que cela fonctionne!</small>"
336
+
337
+ #: wp-table-reloaded-admin.php:749
338
+ msgid "Other actions"
339
+ msgstr "Autres actions"
340
+
341
+ #: wp-table-reloaded-admin.php:752
342
+ msgid "Delete Table"
343
+ msgstr "Supprimer le tableau"
344
+
345
+ #: wp-table-reloaded-admin.php:753
346
+ #: wp-table-reloaded-admin.php:935
347
+ msgid "Export Table"
348
+ msgstr "Export le tableau"
349
+
350
+ #: wp-table-reloaded-admin.php:764
351
+ #: wp-table-reloaded-admin.php:1117
352
+ msgid "Import a Table"
353
+ msgstr "Importer un tableau"
354
+
355
+ #: wp-table-reloaded-admin.php:768
356
+ msgid "You may import a table from existing data here.<br/>It may be a CSV, XML oder HTML file. It needs a certain structure though. Please consult the documentation."
357
+ msgstr "Vous pouvez importer un tableau à partir de données existantes.<br/>Cela peut être un fichier CSV, XML ou HTML. Il a besoin d'une structure bien précise. Veuillez consulter la documentation."
358
+
359
+ #: wp-table-reloaded-admin.php:775
360
+ msgid "Select Import Format"
361
+ msgstr "Sélectionnez le format d'importation"
362
+
363
+ #: wp-table-reloaded-admin.php:785
364
+ msgid "Used Delimiter"
365
+ msgstr "Séparateur utilisé"
366
+
367
+ #: wp-table-reloaded-admin.php:792
368
+ #: wp-table-reloaded-admin.php:926
369
+ msgid "<small>(Only needed for CSV export.)</small>"
370
+ msgstr "<small>(Seulement nécessaire pour l'exportation CSV).</small>"
371
+
372
+ #: wp-table-reloaded-admin.php:795
373
+ msgid "Select File with Table to Import"
374
+ msgstr "Sélectionner le fichier du tableau à importer"
375
+
376
+ #: wp-table-reloaded-admin.php:799
377
+ msgid "- or -"
378
+ msgstr "- ou -"
379
+
380
+ #: wp-table-reloaded-admin.php:800
381
+ msgid "(upload will be preferred over pasting)"
382
+ msgstr "(envoyer sera préféré à coller)"
383
+
384
+ #: wp-table-reloaded-admin.php:803
385
+ msgid "Paste data with Table to Import"
386
+ msgstr "Coller les données de tableau à importer"
387
+
388
+ #: wp-table-reloaded-admin.php:809
389
+ msgid "Import Table"
390
+ msgstr "Importer un tableau"
391
+
392
+ #: wp-table-reloaded-admin.php:822
393
+ msgid "Import from original wp-Table plugin"
394
+ msgstr "Importer à partir du plugin original <em>WP-Table</em>"
395
+
396
+ #: wp-table-reloaded-admin.php:855
397
+ msgid "Do you really want to import this table from the wp-Table plugin?"
398
+ msgstr "Voulez-vous vraiment importer ce tableau depuis le plugin <em>WP-table</em>?"
399
+
400
+ #: wp-table-reloaded-admin.php:855
401
+ msgid "Import"
402
+ msgstr "Importer"
403
+
404
+ #: wp-table-reloaded-admin.php:863
405
+ msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
406
+ msgstr "<em>WP-Table</em> d'Alex Rabe semble être installé, mais aucun tableau n'a été trouvé."
407
+
408
+ #: wp-table-reloaded-admin.php:882
409
+ #: wp-table-reloaded-admin.php:1118
410
+ msgid "Export a Table"
411
+ msgstr "Exporter un tableau"
412
+
413
+ #: wp-table-reloaded-admin.php:886
414
+ msgid "You may export a table here. Just select the table, your desired export format and a delimiter (needed for CSV only).<br/>You may opt to download the export file. Otherwise it will be shown on this page."
415
+ msgstr "Vous pouvez exporter un tableau ici. Il vous suffit de sélectionner le tableau, le choix de votre format d'exportation et un séparateur (uniquement pour le format CSV).<br/>Vous pouvez choisir de télécharger le fichier d'exportation. Sinon, il sera affiché sur cette page."
416
+
417
+ #: wp-table-reloaded-admin.php:894
418
+ msgid "Select Table to Export"
419
+ msgstr "Sélectionner le tableau à exporter"
420
+
421
+ #: wp-table-reloaded-admin.php:909
422
+ msgid "Select Export Format"
423
+ msgstr "Sélectionnez le format d'exportation"
424
+
425
+ #: wp-table-reloaded-admin.php:919
426
+ msgid "Select Delimiter to use"
427
+ msgstr "Sélectionnez un délimiteur à utiliser"
428
+
429
+ #: wp-table-reloaded-admin.php:929
430
+ msgid "Download file"
431
+ msgstr "Télécharger le fichier"
432
+
433
+ #: wp-table-reloaded-admin.php:930
434
+ msgid "Yes, I want to download the export file."
435
+ msgstr "Oui, je veux télécharger le fichier d'exportation."
436
+
437
+ #: wp-table-reloaded-admin.php:955
438
+ msgid "General Plugin Options"
439
+ msgstr "Options générales du plugin"
440
+
441
+ #: wp-table-reloaded-admin.php:959
442
+ msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
443
+ msgstr "Vous pouvez changer les options globales.<br/>Elles seront effectives sur tous les tableaux ou sur le comportement général du plugin."
444
+
445
+ #: wp-table-reloaded-admin.php:966
446
+ msgid "Frontend Options"
447
+ msgstr "Options de l'interface"
448
+
449
+ #: wp-table-reloaded-admin.php:970
450
+ msgid "Enable Tablesorter-JavaScript?"
451
+ msgstr "Activer Tablesorter-JavaScript?"
452
+
453
+ #: wp-table-reloaded-admin.php:971
454
+ msgid "Yes, enable <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> to be used to make table sortable (can be changed for every table separatly)."
455
+ msgstr "Oui, activer le plugin <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery</a> pour rendre les tableaux triables (peut être changé séparément pour chaque tableau)."
456
+
457
+ #: wp-table-reloaded-admin.php:974
458
+ msgid "Add custom CSS?"
459
+ msgstr "Ajouter un style CSS personnalisé?"
460
+
461
+ #: wp-table-reloaded-admin.php:975
462
+ #, php-format
463
+ msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag. (If you do not want this, just add your CSS styling to your theme's \"style.css\" <small>(located at %s)</small>.) (See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin website</a> for examples.)"
464
+ msgstr "Oui, inclure et charger le style CSS ci-dessous dans mon site en ajoutant la balise HTML [style]. (Si vous ne le voulez pas, ajoutez simplement votre personnalisation dans le fichier \"style.css\" de votre thème <small>(situé dans %s)</small>.) (Rendez vous sur le <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">site du plugin</a> pour voir des exemples.)"
465
+
466
+ #: wp-table-reloaded-admin.php:979
467
+ msgid "Enter custom CSS"
468
+ msgstr "Entrez un style CSS personnalisé"
469
+
470
+ #: wp-table-reloaded-admin.php:987
471
+ msgid "Admin Options"
472
+ msgstr "Options d'administration"
473
+
474
+ #: wp-table-reloaded-admin.php:991
475
+ msgid "Uninstall Plugin upon Deactivation?"
476
+ msgstr "Désinstaller le plugin lors de la désactivation?"
477
+
478
+ #: wp-table-reloaded-admin.php:992
479
+ msgid "Yes, uninstall everything when plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page! (It does not influence the \"Manually Uninstall Plugin\" button below!)"
480
+ msgstr "Oui, tout désinstaller lorsque le plugin est désactivé. Attention: Vous devez cocher cette case uniquement juste avant de désactiver le plugin depuis la page des plugins de WordPress! (Cela n'influence pas le bouton \"Désinstallation manuelle du plugin\" ci-dessous!)"
481
+
482
+ #: wp-table-reloaded-admin.php:1002
483
+ msgid "Save Options"
484
+ msgstr "Enregistrer les options"
485
+
486
+ #: wp-table-reloaded-admin.php:1012
487
+ msgid "Do you really want to activate this? You should only do that right before uninstallation!"
488
+ msgstr "Voulez-vous vraiment activer ceci? Vous devez uniquement le faire juste avant la désinstallation!"
489
+
490
+ #: wp-table-reloaded-admin.php:1018
491
+ msgid "Manually Uninstall Plugin"
492
+ msgstr "Désinstallation manuelle du plugin"
493
+
494
+ #: wp-table-reloaded-admin.php:1020
495
+ msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported.<br/> Be very careful with this and only click the button if you know what you are doing!"
496
+ msgstr "Vous pouvez désinstaller le plugin ici. Cela <strong>supprimera</strong> tous les tableaux, les données, les options, etc... qui font partie de l'extension, y compris tous les tableaux que vous avez ajoutés ou importés.<br/>Soyez très prudent et ne cliquez sur le bouton que si vous savez ce que vous faites!"
497
+
498
+ #: wp-table-reloaded-admin.php:1023
499
+ msgid "Do you really want to uninstall the plugin and delete ALL data?"
500
+ msgstr "Voulez-vous vraiment désinstaller le plugin et supprimer TOUTES les données?"
501
+
502
+ #: wp-table-reloaded-admin.php:1023
503
+ msgid "Are you really sure?"
504
+ msgstr "Êtes-vous vraiment sûr?"
505
+
506
+ #: wp-table-reloaded-admin.php:1023
507
+ msgid "Uninstall Plugin WP-Table Reloaded"
508
+ msgstr "Désinstaller WP-Table Reloaded"
509
+
510
+ #: wp-table-reloaded-admin.php:1033
511
+ msgid "Information about the plugin"
512
+ msgstr "Informations sur le plugin"
513
+
514
+ #: wp-table-reloaded-admin.php:1039
515
+ msgid "Plugin Purpose"
516
+ msgstr "Objectif du plugin"
517
+
518
+ #: wp-table-reloaded-admin.php:1041
519
+ msgid "This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode."
520
+ msgstr "Ce plugin vous permet de créer et de gérer des tableaux dans la console d'administration de WordPress. Vous pouvez ensuite les afficher dans vos billets, vos pages ou dans des widgets texte à l'aide d'un code."
521
+
522
+ #: wp-table-reloaded-admin.php:1046
523
+ msgid "Usage"
524
+ msgstr "Utilisation"
525
+
526
+ #: wp-table-reloaded-admin.php:1048
527
+ msgid "At first you should add or import a table. Then edit your data and select the options you want. To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them. You may then style your table via CSS. Every table has the CSS-class \"wp-table-reloaded\". A table also has the class \"wp-table-reloaded-&lt;table-id&gt;\". You can also use the classes \"column-&lt;number&gt;\" and \"row-&lt;number&gt;\" to style rows and columns individually. Use this to style columns width and text alignment."
528
+ msgstr "En premier vous devez ajouter ou importer un tableau. Puis éditez vos données et sélectionnez les options que vous voulez. Pour afficher le tableau dans vos billets, pages ou widgets texte, copier le code [table id=&lt;table-id&gt;] dedans. Vous pouvez mettre en forme votre tableau via une feuille de style CSS. Chaque tableau a la classe CSS \"wp-table-reloaded\". Un tableau a également la classe \"wp-table-reloaded-&lt;table-id&gt;\". Vous pouvez aussi utiliser les classes \"column-&lt;number&gt;\" et \"row-&lt;number&gt;\" pour définir le style des lignes et colonnes individuellement. Utilisez ceci pour définir la largeur des colonnes et l'alignement du texte."
529
+
530
+ #: wp-table-reloaded-admin.php:1052
531
+ msgid "More Information and Documentation"
532
+ msgstr "Plus d'information et documentation"
533
+
534
+ #: wp-table-reloaded-admin.php:1054
535
+ msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. A documentation and certain support and help request possibilities will be available soon."
536
+ msgstr "Vous pouvez trouvez plus d'informations sur le <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">site du plugin</a> ou sur sa page sur <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress.org</a>. Une documentation et un certain support et des possibilités de demande d'aide seront disponibles bientôt."
537
+
538
+ #: wp-table-reloaded-admin.php:1059
539
+ msgid "Author and Licence"
540
+ msgstr "Auteur et licence"
541
+
542
+ #: wp-table-reloaded-admin.php:1061
543
+ msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. It is licenced as Free Software under GPL 2."
544
+ msgstr "Ce plugin a été écrit par <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. Il est licencié en tant que Logiciel Libre sous licence GPL 2."
545
+
546
+ #: wp-table-reloaded-admin.php:1061
547
+ msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">donating</a> or rating it at the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. Thanks!"
548
+ msgstr "Si vous aimez le plugin, vous pouvez <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">faire un don</a> ou voter sur la page du plugin sur <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress.org</a>. Merci!"
549
+
550
+ #: wp-table-reloaded-admin.php:1066
551
+ msgid "Credits and Thanks"
552
+ msgstr "Crédits et remerciements"
553
+
554
+ #: wp-table-reloaded-admin.php:1069
555
+ msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
556
+ msgstr "Merci à <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> pour son plugin original WP-Table,"
557
+
558
+ #: wp-table-reloaded-admin.php:1070
559
+ msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
560
+ msgstr "Christian Bach pour le plugin <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery</a>,"
561
+
562
+ #: wp-table-reloaded-admin.php:1071
563
+ msgid "the submitters of translations:"
564
+ msgstr "les auteurs des traduction:"
565
+
566
+ #: wp-table-reloaded-admin.php:1072
567
+ msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
568
+ msgstr "Albanais (merci à <a href=\"http://www.romeolab.com/\">Romeo</a>)"
569
+
570
+ #: wp-table-reloaded-admin.php:1073
571
+ msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
572
+ msgstr "Français (merci à <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
573
+
574
+ #: wp-table-reloaded-admin.php:1074
575
+ msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
576
+ msgstr "Russe (merci à <a href=\"http://wp-skins.info/\">Truper</a>)"
577
+
578
+ #: wp-table-reloaded-admin.php:1075
579
+ msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>)"
580
+ msgstr "Espagnol (merci à <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>)"
581
+
582
+ #: wp-table-reloaded-admin.php:1076
583
+ msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
584
+ msgstr "Suédois (merci à <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
585
+
586
+ #: wp-table-reloaded-admin.php:1077
587
+ msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
588
+ msgstr "Turc (merci à <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
589
+
590
+ #: wp-table-reloaded-admin.php:1078
591
+ msgid "and all contributors, supporters, reviewers and users of the plugin!"
592
+ msgstr "et tous les contributeurs, les supporters, les commentateurs et les utilisateurs du plugin!"
593
+
594
+ #: wp-table-reloaded-admin.php:1115
595
+ msgid "List Tables"
596
+ msgstr "Liste des tableaux"
597
+
598
+ #: wp-table-reloaded-admin.php:1120
599
+ msgid "Plugin Options"
600
+ msgstr "Options du plugin"
601
+
602
+ #: wp-table-reloaded-admin.php:1121
603
+ msgid "About the Plugin"
604
+ msgstr "A propos du Plugin"
605
+
606
+ #: wp-table-reloaded-admin.php:1129
607
+ msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a>. A documentation and certain support and help request possibilities will be available soon."
608
+ msgstr "Vous pouvez trouvez plus d'informations sur le <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">site du plugin</a>. Une documentation et un certain support et des possibilités de demande d'aide seront disponibles bientôt."
609
+
610
+ #: php/wp-table-reloaded-export.class.php:30
611
+ #: php/wp-table-reloaded-import.class.php:41
612
+ msgid "CSV - Character-Separated Values"
613
+ msgstr "CSV - Character-Separated Values"
614
+
615
+ #: php/wp-table-reloaded-export.class.php:31
616
+ #: php/wp-table-reloaded-import.class.php:42
617
+ msgid "HTML - Hypertext Markup Language"
618
+ msgstr "HTML - Hypertext Markup Language"
619
+
620
+ #: php/wp-table-reloaded-export.class.php:32
621
+ #: php/wp-table-reloaded-import.class.php:43
622
+ msgid "XML - eXtended Markup Language"
623
+ msgstr "XML - eXtended Markup Language"
624
+
625
+ #: php/wp-table-reloaded-export.class.php:35
626
+ #: php/wp-table-reloaded-import.class.php:36
627
+ msgid "; (semicolon)"
628
+ msgstr "; (point-virgule)"
629
+
630
+ #: php/wp-table-reloaded-export.class.php:36
631
+ #: php/wp-table-reloaded-import.class.php:37
632
+ msgid ", (comma)"
633
+ msgstr ", (virgule)"
634
+
635
+ #: php/wp-table-reloaded-export.class.php:37
636
+ #: php/wp-table-reloaded-import.class.php:38
637
+ msgid ": (colon)"
638
+ msgstr ": (deux points)"
639
+
languages/wp-table-reloaded-ru_RU.mo ADDED
Binary file
languages/wp-table-reloaded-ru_RU.po ADDED
@@ -0,0 +1,682 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-Table Reloaded v1.0.1\n"
4
+ "PO-Revision-Date: 2009-04-22 09:52+0400\n"
5
+ "Last-Translator: Truper (http://wp-skins.info)\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=3; plural=n%100/10==1 ? 2 : n%10==1 ? 0 : (n+9)%10>3 ? 2 : 1;\n"
10
+ "X-Poedit-Language: Russian\n"
11
+ "X-Poedit-Country: RUSSIA\n"
12
+ "X-Poedit-SourceCharset: utf-8\n"
13
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;__ngettext_noop:1,2;_c\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Poedit-SearchPath-0: ."
16
+
17
+ #: php/wp-table-reloaded-export.class.php:30
18
+ #: php/wp-table-reloaded-import.class.php:41
19
+ msgid "CSV - Character-Separated Values"
20
+ msgstr "CSV - Character-Separated Values"
21
+
22
+ #: php/wp-table-reloaded-export.class.php:31
23
+ #: php/wp-table-reloaded-import.class.php:42
24
+ msgid "HTML - Hypertext Markup Language"
25
+ msgstr "HTML - Hypertext Markup Language"
26
+
27
+ #: php/wp-table-reloaded-export.class.php:32
28
+ #: php/wp-table-reloaded-import.class.php:43
29
+ msgid "XML - eXtended Markup Language"
30
+ msgstr "XML - eXtended Markup Language"
31
+
32
+ #: php/wp-table-reloaded-export.class.php:35
33
+ #: php/wp-table-reloaded-import.class.php:36
34
+ msgid "; (semicolon)"
35
+ msgstr "; (точка с запятой)"
36
+
37
+ #: php/wp-table-reloaded-export.class.php:36
38
+ #: php/wp-table-reloaded-import.class.php:37
39
+ msgid ", (comma)"
40
+ msgstr ", (запятая)"
41
+
42
+ #: php/wp-table-reloaded-export.class.php:37
43
+ #: php/wp-table-reloaded-import.class.php:38
44
+ msgid ": (colon)"
45
+ msgstr ": (двоеточие)"
46
+
47
+ #: wp-table-reloaded-admin.php:137
48
+ #, php-format
49
+ msgid "Table \"%s\" added successfully."
50
+ msgstr "Таблица \"%s\" успешно добавлена."
51
+
52
+ #: wp-table-reloaded-admin.php:160
53
+ msgid "Table edited successfully."
54
+ msgstr "Таблица успешно отредактирована."
55
+
56
+ #: wp-table-reloaded-admin.php:176
57
+ msgid "Rows swapped successfully."
58
+ msgstr "Строки успешно поменяны местами."
59
+
60
+ #: wp-table-reloaded-admin.php:195
61
+ msgid "Columns swapped successfully."
62
+ msgstr "Столбцы успешно поменяны местами."
63
+
64
+ #: wp-table-reloaded-admin.php:224
65
+ msgid "Copy of"
66
+ msgstr "Копия"
67
+
68
+ #: wp-table-reloaded-admin.php:229
69
+ #, php-format
70
+ msgid "Table \"%s\" copied successfully."
71
+ msgstr "Таблица \"%s\" успешно скопирована."
72
+
73
+ #: wp-table-reloaded-admin.php:248
74
+ #, php-format
75
+ msgid "Table \"%s\" deleted successfully."
76
+ msgstr "Таблица \"%s\" успешно удалена."
77
+
78
+ #: wp-table-reloaded-admin.php:258
79
+ msgid "Row deleted successfully."
80
+ msgstr "Строка успешно удалена."
81
+
82
+ #: wp-table-reloaded-admin.php:271
83
+ msgid "Column deleted successfully."
84
+ msgstr "Столбец успешно удален."
85
+
86
+ #: wp-table-reloaded-admin.php:276
87
+ msgid "Delete failed."
88
+ msgstr "Ошибка при удалении."
89
+
90
+ #: wp-table-reloaded-admin.php:300
91
+ msgid "Row inserted successfully."
92
+ msgstr "Строка вставлена успешно."
93
+
94
+ #: wp-table-reloaded-admin.php:309
95
+ msgid "Column inserted successfully."
96
+ msgstr "Столбец вставлен успешно."
97
+
98
+ #: wp-table-reloaded-admin.php:312
99
+ msgid "Insert failed."
100
+ msgstr "Ошибка при вставке."
101
+
102
+ #: wp-table-reloaded-admin.php:340
103
+ msgid "Imported Table"
104
+ msgstr "Импортированная таблица"
105
+
106
+ #: wp-table-reloaded-admin.php:341
107
+ msgid "via form"
108
+ msgstr "из формы"
109
+
110
+ #: wp-table-reloaded-admin.php:358
111
+ #: wp-table-reloaded-admin.php:379
112
+ msgid "Table imported successfully."
113
+ msgstr "Таблица импортирована успешно."
114
+
115
+ #: wp-table-reloaded-admin.php:361
116
+ msgid "Table could not be imported."
117
+ msgstr "Таблица не может быть импортирована."
118
+
119
+ #: wp-table-reloaded-admin.php:405
120
+ #, php-format
121
+ msgid "Table \"%s\" exported successfully."
122
+ msgstr "Таблица \"%s\" экспортирована успешно."
123
+
124
+ #: wp-table-reloaded-admin.php:433
125
+ msgid "Options saved successfully."
126
+ msgstr "Настройки успешно сохранены."
127
+
128
+ #: wp-table-reloaded-admin.php:451
129
+ msgid "WP-Table Reloaded"
130
+ msgstr "Работа с таблицами"
131
+
132
+ #: wp-table-reloaded-admin.php:452
133
+ msgid "Plugin deactivated successfully."
134
+ msgstr "Плагин успешно деактивирован."
135
+
136
+ #: wp-table-reloaded-admin.php:453
137
+ msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
138
+ msgstr "Все таблицы, данные и настройки были удалены. Теперь можно удалить сам плагин из директории плагинов WordPress (wp-content/plugins)."
139
+
140
+ #: wp-table-reloaded-admin.php:471
141
+ msgid "List of Tables"
142
+ msgstr "Список таблиц"
143
+
144
+ #: wp-table-reloaded-admin.php:474
145
+ msgid "This is a list of all available tables. You may add, edit, copy or delete tables here."
146
+ msgstr "Это список всех доступных таблиц. Здесь Вы можете добавлять, редактировать, копировать и удалять таблицы."
147
+
148
+ #: wp-table-reloaded-admin.php:475
149
+ msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode: <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
150
+ msgstr "Для отображения таблицы на странице, в новости или текстовом виджете используйте код: <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
151
+
152
+ #: wp-table-reloaded-admin.php:483
153
+ #: wp-table-reloaded-admin.php:887
154
+ msgid "ID"
155
+ msgstr "ID"
156
+
157
+ #: wp-table-reloaded-admin.php:484
158
+ #: wp-table-reloaded-admin.php:544
159
+ #: wp-table-reloaded-admin.php:594
160
+ #: wp-table-reloaded-admin.php:888
161
+ msgid "Table Name"
162
+ msgstr "Имя таблицы"
163
+
164
+ #: wp-table-reloaded-admin.php:485
165
+ #: wp-table-reloaded-admin.php:548
166
+ #: wp-table-reloaded-admin.php:598
167
+ #: wp-table-reloaded-admin.php:889
168
+ msgid "Description"
169
+ msgstr "Описание"
170
+
171
+ #: wp-table-reloaded-admin.php:486
172
+ #: wp-table-reloaded-admin.php:890
173
+ msgid "Action"
174
+ msgstr "Действие"
175
+
176
+ #: wp-table-reloaded-admin.php:511
177
+ msgid "Edit"
178
+ msgstr "Изменить"
179
+
180
+ #: wp-table-reloaded-admin.php:512
181
+ msgid "Do you want to copy this table?"
182
+ msgstr "Вы хотите скопировать эту таблицу?"
183
+
184
+ #: wp-table-reloaded-admin.php:512
185
+ msgid "Copy"
186
+ msgstr "Копировать"
187
+
188
+ #: wp-table-reloaded-admin.php:513
189
+ msgid "Export"
190
+ msgstr "Экспорт"
191
+
192
+ #: wp-table-reloaded-admin.php:514
193
+ #: wp-table-reloaded-admin.php:807
194
+ msgid "The complete table and all content will be erased. Do you really want to delete it?"
195
+ msgstr "Таблица и все её содержимое будет стерто. Вы действительно хотите удалить её?"
196
+
197
+ #: wp-table-reloaded-admin.php:514
198
+ msgid "Delete"
199
+ msgstr "Удалить"
200
+
201
+ #: wp-table-reloaded-admin.php:524
202
+ #: wp-table-reloaded-admin.php:1001
203
+ msgid "No tables found."
204
+ msgstr "Таблицы не найдены."
205
+
206
+ #: wp-table-reloaded-admin.php:524
207
+ #: wp-table-reloaded-admin.php:1001
208
+ #, php-format
209
+ msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
210
+ msgstr "Вы можете <a href=\"%s\">добавить</a> или <a href=\"%s\">импортировать</a>!"
211
+
212
+ #: wp-table-reloaded-admin.php:532
213
+ #: wp-table-reloaded-admin.php:1171
214
+ msgid "Add new Table"
215
+ msgstr "Создать таблицу"
216
+
217
+ #: wp-table-reloaded-admin.php:536
218
+ msgid "You can add a new table here. Just enter it's name, a description (optional) and the number of rows and columns.<br/>You may add, insert or delete rows and columns later."
219
+ msgstr "Здесь Вы можете создать новую таблицу. Просто введите название, описание (не обязательно) и количество строк и столбцов.<br/>Добавить, вставить или удалить строки и столбцы Вы сможете позднее."
220
+
221
+ #: wp-table-reloaded-admin.php:545
222
+ msgid "Enter Table Name"
223
+ msgstr "Введите имя таблицы"
224
+
225
+ #: wp-table-reloaded-admin.php:549
226
+ msgid "Enter Description"
227
+ msgstr "Введите описание"
228
+
229
+ #: wp-table-reloaded-admin.php:552
230
+ msgid "Number of Rows"
231
+ msgstr "Количество строк"
232
+
233
+ #: wp-table-reloaded-admin.php:556
234
+ msgid "Number of Columns"
235
+ msgstr "Количество столбцов"
236
+
237
+ #: wp-table-reloaded-admin.php:563
238
+ msgid "Add Table"
239
+ msgstr "Добавить таблицу"
240
+
241
+ #: wp-table-reloaded-admin.php:584
242
+ msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
243
+ msgstr "Здесь Вы можете изменять данные в таблице. Ещё Вы можете добавлять или удалять строки и столбцы."
244
+
245
+ #: wp-table-reloaded-admin.php:590
246
+ msgid "Table Information"
247
+ msgstr "Информация о таблице"
248
+
249
+ #: wp-table-reloaded-admin.php:616
250
+ msgid "Table Contents"
251
+ msgstr "Содержание таблицы"
252
+
253
+ #: wp-table-reloaded-admin.php:644
254
+ msgid "Insert Row"
255
+ msgstr "Вставить строку"
256
+
257
+ #: wp-table-reloaded-admin.php:646
258
+ msgid "Do you really want to delete this row?"
259
+ msgstr "Вы на самом деле хотите удалить эту строку?"
260
+
261
+ #: wp-table-reloaded-admin.php:646
262
+ msgid "Delete Row"
263
+ msgstr "Удалить строку"
264
+
265
+ #: wp-table-reloaded-admin.php:656
266
+ msgid "Insert Column"
267
+ msgstr "Вставить столбец"
268
+
269
+ #: wp-table-reloaded-admin.php:658
270
+ msgid "Do you really want to delete this column?"
271
+ msgstr "Вы на самом деле хотите удалить этот столбец?"
272
+
273
+ #: wp-table-reloaded-admin.php:658
274
+ msgid "Delete Column"
275
+ msgstr "Удалить столбец"
276
+
277
+ #: wp-table-reloaded-admin.php:663
278
+ msgid "Add Row"
279
+ msgstr "Добавить строку"
280
+
281
+ #: wp-table-reloaded-admin.php:663
282
+ msgid "Add Column"
283
+ msgstr "Добавить столбец"
284
+
285
+ #: wp-table-reloaded-admin.php:687
286
+ #, php-format
287
+ msgid "Swap rows %s and %s"
288
+ msgstr "Поменять местами строки %s и %s"
289
+
290
+ #: wp-table-reloaded-admin.php:690
291
+ #: wp-table-reloaded-admin.php:710
292
+ msgid "Swap"
293
+ msgstr "Поменять"
294
+
295
+ #: wp-table-reloaded-admin.php:707
296
+ #, php-format
297
+ msgid "Swap columns %s and %s"
298
+ msgstr "Поменять местами столбцы %s и %s"
299
+
300
+ #: wp-table-reloaded-admin.php:767
301
+ msgid "Table Settings"
302
+ msgstr "Настройки таблицы"
303
+
304
+ #: wp-table-reloaded-admin.php:769
305
+ msgid "These settings will only be used for this table."
306
+ msgstr "Эти настройки используются только для этой таблицы."
307
+
308
+ #: wp-table-reloaded-admin.php:772
309
+ msgid "Alternating row colors"
310
+ msgstr "Разные цвета для строк"
311
+
312
+ #: wp-table-reloaded-admin.php:773
313
+ msgid "Every second row will have an alternating background color."
314
+ msgstr "Каждая вторая строка будет иметь другой цвет фона."
315
+
316
+ #: wp-table-reloaded-admin.php:776
317
+ msgid "Use Table Headline"
318
+ msgstr "Использовать заголовок таблицы"
319
+
320
+ #: wp-table-reloaded-admin.php:777
321
+ msgid "The first row of your table will use the [th] tag."
322
+ msgstr "Первая строка Вашей таблицы будет использовать тег [th]."
323
+
324
+ #: wp-table-reloaded-admin.php:780
325
+ msgid "Print Table Name"
326
+ msgstr "Печатать название таблицы"
327
+
328
+ #: wp-table-reloaded-admin.php:781
329
+ msgid "The Table Name will be written above the table in a [h2] tag."
330
+ msgstr "Имя таблицы будет написано над таблицей в теге [h2]."
331
+
332
+ #: wp-table-reloaded-admin.php:784
333
+ msgid "Print Table Description"
334
+ msgstr "Печатать описание таблицы"
335
+
336
+ #: wp-table-reloaded-admin.php:785
337
+ msgid "The Table Description will be written under the table."
338
+ msgstr "Описание таблицы будет написано после таблицы."
339
+
340
+ #: wp-table-reloaded-admin.php:788
341
+ msgid "Use Tablesorter"
342
+ msgstr "Использовать сортировку в таблице"
343
+
344
+ #: wp-table-reloaded-admin.php:789
345
+ msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. <small>Attention: You must have Tablesorter enabled on the \"Plugin Options\" page and the option \"Use Table Headline\" has to be enabled above for this to work!</small>"
346
+ msgstr "Вы можете сортировать таблицу используя <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. <small>Внимание: Вы должны включить сортировку таблиц в \"Настройках плагина\" и опция \"Использовать заголовок таблицы\" должна быть включена для того чтобы это работало!</small>"
347
+
348
+ #: wp-table-reloaded-admin.php:606
349
+ #: wp-table-reloaded-admin.php:798
350
+ msgid "Update Changes"
351
+ msgstr "Сохранить изменения"
352
+
353
+ #: wp-table-reloaded-admin.php:607
354
+ #: wp-table-reloaded-admin.php:799
355
+ msgid "Save and go back"
356
+ msgstr "Сохранить и вернуться"
357
+
358
+ #: wp-table-reloaded-admin.php:610
359
+ #: wp-table-reloaded-admin.php:802
360
+ msgid "Cancel"
361
+ msgstr "Отмена"
362
+
363
+ #: wp-table-reloaded-admin.php:804
364
+ msgid "Other actions"
365
+ msgstr "Другие действия"
366
+
367
+ #: wp-table-reloaded-admin.php:807
368
+ msgid "Delete Table"
369
+ msgstr "Удалить таблицу"
370
+
371
+ #: wp-table-reloaded-admin.php:808
372
+ #: wp-table-reloaded-admin.php:990
373
+ msgid "Export Table"
374
+ msgstr "Экспорт таблицы"
375
+
376
+ #: wp-table-reloaded-admin.php:819
377
+ #: wp-table-reloaded-admin.php:1172
378
+ msgid "Import a Table"
379
+ msgstr "Импорт таблицы"
380
+
381
+ #: wp-table-reloaded-admin.php:830
382
+ msgid "Select Import Format"
383
+ msgstr "Выберите формат для импорта"
384
+
385
+ #: wp-table-reloaded-admin.php:840
386
+ msgid "Used Delimiter"
387
+ msgstr "Используется разделитесь"
388
+
389
+ #: wp-table-reloaded-admin.php:847
390
+ #: wp-table-reloaded-admin.php:981
391
+ msgid "<small>(Only needed for CSV export.)</small>"
392
+ msgstr "<small>(Необходимо только для CSV.)</small>"
393
+
394
+ #: wp-table-reloaded-admin.php:850
395
+ msgid "Select File with Table to Import"
396
+ msgstr "Выберите файл с таблицей для импорта"
397
+
398
+ #: wp-table-reloaded-admin.php:854
399
+ msgid "- or -"
400
+ msgstr "- или -"
401
+
402
+ #: wp-table-reloaded-admin.php:855
403
+ msgid "(upload will be preferred over pasting)"
404
+ msgstr "(сначала загрузить, потом вставить)"
405
+
406
+ #: wp-table-reloaded-admin.php:858
407
+ msgid "Paste data with Table to Import"
408
+ msgstr "Вставьте данные с таблицей для импорта"
409
+
410
+ #: wp-table-reloaded-admin.php:864
411
+ msgid "Import Table"
412
+ msgstr "Импорт таблицы"
413
+
414
+ #: wp-table-reloaded-admin.php:910
415
+ msgid "Import"
416
+ msgstr "Импорт"
417
+
418
+ #: wp-table-reloaded-admin.php:937
419
+ #: wp-table-reloaded-admin.php:1173
420
+ msgid "Export a Table"
421
+ msgstr "Экспорт таблицы"
422
+
423
+ #: wp-table-reloaded-admin.php:941
424
+ msgid "You may export a table here. Just select the table, your desired export format and a delimiter (needed for CSV only).<br/>You may opt to download the export file. Otherwise it will be shown on this page."
425
+ msgstr "Здесь Вы можете сделать экспорт таблицы. Просто выберите в таблице нужный формат экспорта и разделитель (необходимо только для CSV).<br/>Вы можете выбрать файл для загрузки экспорта. В противном случае он будет показан на этой странице."
426
+
427
+ #: wp-table-reloaded-admin.php:949
428
+ msgid "Select Table to Export"
429
+ msgstr "Выберите таблицу для экспорта"
430
+
431
+ #: wp-table-reloaded-admin.php:964
432
+ msgid "Select Export Format"
433
+ msgstr "Выберите формат экспорта"
434
+
435
+ #: wp-table-reloaded-admin.php:974
436
+ msgid "Select Delimiter to use"
437
+ msgstr "Выберите разделитель"
438
+
439
+ #: wp-table-reloaded-admin.php:984
440
+ msgid "Download file"
441
+ msgstr "Скачать файл"
442
+
443
+ #: wp-table-reloaded-admin.php:985
444
+ msgid "Yes, I want to download the export file."
445
+ msgstr "Да, я хочу скачать файл экспорта."
446
+
447
+ #: wp-table-reloaded-admin.php:1010
448
+ msgid "General Plugin Options"
449
+ msgstr "Главные настройки плагина"
450
+
451
+ #: wp-table-reloaded-admin.php:1014
452
+ msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
453
+ msgstr "Вы можете изменить главные настройки плагина.<br/>Они повлияют на все таблицы или на общее поведение плагина."
454
+
455
+ #: wp-table-reloaded-admin.php:1021
456
+ msgid "Frontend Options"
457
+ msgstr "Внешние настройки"
458
+
459
+ #: wp-table-reloaded-admin.php:1025
460
+ msgid "Enable Tablesorter-JavaScript?"
461
+ msgstr "Разрешить сортировку в таблицах с помощью JavaScript?"
462
+
463
+ #: wp-table-reloaded-admin.php:1026
464
+ msgid "Yes, enable <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> to be used to make table sortable (can be changed for every table separatly)."
465
+ msgstr "Да, включить <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>, который используется для сортировки таблиц (можно изменить для каждой таблицы отдельно)."
466
+
467
+ #: wp-table-reloaded-admin.php:1042
468
+ msgid "Admin Options"
469
+ msgstr "Административные настройки"
470
+
471
+ #: wp-table-reloaded-admin.php:1046
472
+ msgid "Uninstall Plugin upon Deactivation?"
473
+ msgstr "Удалить плагин после деактивации?"
474
+
475
+ #: wp-table-reloaded-admin.php:1047
476
+ msgid "Yes, uninstall everything when plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page! (It does not influence the \"Manually Uninstall Plugin\" button below!)"
477
+ msgstr "Да, удалить все, когда плагин будет деактивирован. Внимание: Вы должны включить этот флажок, только непосредственно перед отключением плагина на странице плагинов WordPress! (Это не влияет на кнопку \"Удалить плагин вручную\", находящуюся ниже!)"
478
+
479
+ #: wp-table-reloaded-admin.php:1057
480
+ msgid "Save Options"
481
+ msgstr "Сохранить настройки"
482
+
483
+ #: wp-table-reloaded-admin.php:1073
484
+ msgid "Manually Uninstall Plugin"
485
+ msgstr "Удалить плагин вручную"
486
+
487
+ #: wp-table-reloaded-admin.php:1075
488
+ msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported.<br/> Be very careful with this and only click the button if you know what you are doing!"
489
+ msgstr "Здесь Вы можете удалить плагин. Это <strong>приведет к удалению</strong> всех таблиц, данных, настроек и т.д., которые относятся к плагину, в том числе все таблицы, которые вы добавили или импортировали.<br/> Будьте очень осторожны и нажимайте на кнопку, если Вы знаете что делаете!"
490
+
491
+ #: wp-table-reloaded-admin.php:1078
492
+ msgid "Do you really want to uninstall the plugin and delete ALL data?"
493
+ msgstr "Вы на самом деле хотите удалить этот плагин со всеми данными?"
494
+
495
+ #: wp-table-reloaded-admin.php:1078
496
+ msgid "Are you really sure?"
497
+ msgstr "Вы действительно уверены?"
498
+
499
+ #: wp-table-reloaded-admin.php:1078
500
+ msgid "Uninstall Plugin WP-Table Reloaded"
501
+ msgstr "Удалить плагин WP-Table Reloaded"
502
+
503
+ #: wp-table-reloaded-admin.php:1088
504
+ msgid "Information about the plugin"
505
+ msgstr "Информация о плагине"
506
+
507
+ #: wp-table-reloaded-admin.php:1094
508
+ msgid "Plugin Purpose"
509
+ msgstr "Цель плагина"
510
+
511
+ #: wp-table-reloaded-admin.php:1096
512
+ msgid "This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode."
513
+ msgstr "Этот плагин позволит Вам создавать и управлять таблицами в панели администратора WordPress. Вы можете вывести таблицы в новостях, на страницах или в текстовом виджете используя код."
514
+
515
+ #: wp-table-reloaded-admin.php:1101
516
+ msgid "Usage"
517
+ msgstr "Использование"
518
+
519
+ #: wp-table-reloaded-admin.php:1103
520
+ msgid "At first you should add or import a table. Then edit your data and select the options you want. To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them. You may then style your table via CSS. Every table has the CSS-class \"wp-table-reloaded\". A table also has the class \"wp-table-reloaded-&lt;table-id&gt;\". You can also use the classes \"column-&lt;number&gt;\" and \"row-&lt;number&gt;\" to style rows and columns individually. Use this to style columns width and text alignment."
521
+ msgstr "Для начала Вы должны добавить или импортировать таблицу. Далее можете отредактировать данные и установить необходимые опции. Для вставки таблицы в Вашу новость, страницу или текстовый виджет, используйте код [table id=&lt;table-id&gt;]. Вы можете изменить внешний вид таблицы используя CSS. Все таблицы имеют CSS класс \"wp-table-reloaded\". Так же каждая таблица имеет CSS класс \"wp-table-reloaded-&lt;table-id&gt;\". Вы так же можете использовать CSS классы \"column-&lt;number&gt;\" и \"row-&lt;number&gt;\" для изменения стиля строк и столбцов индивидуально. Используйте это для настройки стиля ширины столбца и изменения расположения текста."
522
+
523
+ #: wp-table-reloaded-admin.php:1107
524
+ msgid "More Information and Documentation"
525
+ msgstr "Дополнительная информация и документация"
526
+
527
+ #: wp-table-reloaded-admin.php:1109
528
+ msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. A documentation and certain support and help request possibilities will be available soon."
529
+ msgstr "Дополнительную информацию Вы сможете найти на <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">сайте плагина</a> или на странице плагина в <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
530
+
531
+ #: wp-table-reloaded-admin.php:1114
532
+ msgid "Author and Licence"
533
+ msgstr "Автор и лицензия"
534
+
535
+ #: wp-table-reloaded-admin.php:1116
536
+ msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. It is licenced as Free Software under GPL 2."
537
+ msgstr "Этот плагин написал <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. Он доступен по лицензии Free Software under GPL 2."
538
+
539
+ #: wp-table-reloaded-admin.php:1116
540
+ msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">donating</a> or rating it at the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. Thanks!"
541
+ msgstr "Если вам нравится плагин, пожалуйста <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">сделайте пожертвование</a> или поднимите рейтинг в <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. Спасибо!"
542
+
543
+ #: wp-table-reloaded-admin.php:1121
544
+ msgid "Credits and Thanks"
545
+ msgstr "Благодарности"
546
+
547
+ #: wp-table-reloaded-admin.php:1125
548
+ msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
549
+ msgstr "Christian Bach за сортировку таблиц <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
550
+
551
+ #: wp-table-reloaded-admin.php:1133
552
+ msgid "and all contributors, supporters, reviewers and users of the plugin!"
553
+ msgstr "и всем вкладчикам, сторонникам, рецензорам и пользователям плагина!"
554
+
555
+ #: wp-table-reloaded-admin.php:1170
556
+ msgid "List Tables"
557
+ msgstr "Список таблиц"
558
+
559
+ #: wp-table-reloaded-admin.php:1175
560
+ msgid "Plugin Options"
561
+ msgstr "Настройки плагина"
562
+
563
+ #: wp-table-reloaded-admin.php:1176
564
+ msgid "About the Plugin"
565
+ msgstr "О плагине"
566
+
567
+ #: wp-table-reloaded-admin.php:1184
568
+ msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a>. A documentation and certain support and help request possibilities will be available soon."
569
+ msgstr "Дополнительную информацию Вы сможете найти на <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">сайте плагина</a>."
570
+
571
+ #: wp-table-reloaded-admin.php:580
572
+ #, php-format
573
+ msgid "Edit Table \"%s\""
574
+ msgstr "Редактировать таблицу \"%s\""
575
+
576
+ #: wp-table-reloaded-admin.php:585
577
+ #, php-format
578
+ msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
579
+ msgstr "Если вы хотите отобразить таблицу на Вашей странице, в новости или текстовом виджете, используйте этот код: <strong>[table id=%s /]</strong>"
580
+
581
+ #: wp-table-reloaded-admin.php:672
582
+ msgid "Data Manipulation"
583
+ msgstr "Работа с данными"
584
+
585
+ #: wp-table-reloaded-admin.php:714
586
+ msgid "Insert Link"
587
+ msgstr "Вставить ссылку"
588
+
589
+ #: wp-table-reloaded-admin.php:714
590
+ msgid "Insert Image"
591
+ msgstr "Вставить картинку"
592
+
593
+ #: wp-table-reloaded-admin.php:732
594
+ msgid "URL of link to insert"
595
+ msgstr "УРЛ ссылки для вставки"
596
+
597
+ #: wp-table-reloaded-admin.php:734
598
+ #: wp-table-reloaded-admin.php:734
599
+ msgid "Text of link"
600
+ msgstr "Текст ссылки"
601
+
602
+ #: wp-table-reloaded-admin.php:737
603
+ msgid "To insert the following link into a cell, just click the cell after closing this dialog."
604
+ msgstr "Чтобы добавить ссылку в ячейку, просто нажмите на ячейку после закрытия этого диалогового окна."
605
+
606
+ #: wp-table-reloaded-admin.php:746
607
+ msgid "URL of image to insert"
608
+ msgstr "УРЛ картинки для вставки"
609
+
610
+ #: wp-table-reloaded-admin.php:748
611
+ msgid "\"alt\" text of the image"
612
+ msgstr "\"alt\" текст для изображения"
613
+
614
+ #: wp-table-reloaded-admin.php:751
615
+ msgid "To insert the following image into a cell, just click the cell after closing this dialog."
616
+ msgstr "Чтобы вставить картинку в ячейку, просто нажмите на ячейку после закрытия этого диалогового окна."
617
+
618
+ #: wp-table-reloaded-admin.php:823
619
+ msgid "You may import a table from existing data here.<br/>It may be a CSV, XML or HTML file. It needs a certain structure though. Please consult the documentation."
620
+ msgstr "Здесь Вы можете импортировать таблицу из существующей.<br/>Это может быть CSV, XML или HTML файл. Если что-то непонятно, пожалуйста, обратитесь к документации."
621
+
622
+ #: wp-table-reloaded-admin.php:877
623
+ msgid "Import from original wp-Table plugin"
624
+ msgstr "Импорт из оригинального плагина wp-Table"
625
+
626
+ #: wp-table-reloaded-admin.php:910
627
+ msgid "Do you really want to import this table from the wp-Table plugin?"
628
+ msgstr "Вы на самом деле хотите импортировать эту таблицу из плагина wp-Table?"
629
+
630
+ #: wp-table-reloaded-admin.php:918
631
+ msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
632
+ msgstr "Плагин wp-Table от Alex Rabe установлен, но таблицы не найдены."
633
+
634
+ #: wp-table-reloaded-admin.php:1029
635
+ msgid "Add custom CSS?"
636
+ msgstr "Добавить произвольный CSS?"
637
+
638
+ #: wp-table-reloaded-admin.php:1030
639
+ #, php-format
640
+ msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag. (If you do not want this, just add your CSS styling to your theme's \"style.css\" <small>(located at %s)</small>.) (See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin website</a> for examples.)"
641
+ msgstr "Да, включить и загрузить следующий CSS-фрагмент на сайт внутри HTML тега [style]. (Если вы не хотите этого, просто добавьте свой CSS в вашу тему в файл \"style.css\" <small>(расположенный в %s)</small>.)(Смотрите примеры использования на <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">сайте плагина</a>.)"
642
+
643
+ #: wp-table-reloaded-admin.php:1034
644
+ msgid "Enter custom CSS"
645
+ msgstr "Введите произвольный CSS"
646
+
647
+ #: wp-table-reloaded-admin.php:1067
648
+ msgid "Do you really want to activate this? You should only do that right before uninstallation!"
649
+ msgstr "Вы действительно хотите активировать это? Вы должны сделать это до удаления!"
650
+
651
+ #: wp-table-reloaded-admin.php:1124
652
+ msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
653
+ msgstr "Спасибо <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> за оригинальный плагин wp-Table,"
654
+
655
+ #: wp-table-reloaded-admin.php:1126
656
+ msgid "the submitters of translations:"
657
+ msgstr "тем кто сделал перевод:"
658
+
659
+ #: wp-table-reloaded-admin.php:1127
660
+ msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
661
+ msgstr "Албанский (спасибо <a href=\"http://www.romeolab.com/\">Romeo</a>)"
662
+
663
+ #: wp-table-reloaded-admin.php:1128
664
+ msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
665
+ msgstr "Французкий (спасибо <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
666
+
667
+ #: wp-table-reloaded-admin.php:1129
668
+ msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
669
+ msgstr "Русский (спасибо <a href=\"http://wp-skins.info/\">Truper</a>)"
670
+
671
+ #: wp-table-reloaded-admin.php:1130
672
+ msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>)"
673
+ msgstr "Испанский (спасибо <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>)"
674
+
675
+ #: wp-table-reloaded-admin.php:1131
676
+ msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
677
+ msgstr "Шведский (спасибо <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
678
+
679
+ #: wp-table-reloaded-admin.php:1132
680
+ msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
681
+ msgstr "Турецкий (спасибо <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
682
+
languages/wp-table-reloaded-sq_AL.mo ADDED
Binary file
languages/wp-table-reloaded-sq_AL.po ADDED
@@ -0,0 +1,731 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-Table Reloaded v0.9.2\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
5
+ "POT-Creation-Date: 2009-04-27 16:30+0000\n"
6
+ "PO-Revision-Date: 2009-04-28 11:57+0100\n"
7
+ "Last-Translator: Romeo Shuka <webmaster@romeolab.com>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Shqip\n"
14
+ "X-Poedit-Country: ALBANIA\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;__ngettext_noop:1,2;_c\n"
17
+ "X-Poedit-Basepath: .\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+
20
+ #: php/wp-table-reloaded-export.class.php:30
21
+ #: php/wp-table-reloaded-import.class.php:41
22
+ msgid "CSV - Character-Separated Values"
23
+ msgstr "CSV - Character-Separated Values"
24
+
25
+ #: php/wp-table-reloaded-export.class.php:31
26
+ #: php/wp-table-reloaded-import.class.php:42
27
+ msgid "HTML - Hypertext Markup Language"
28
+ msgstr "HTML - Hypertext Markup Language"
29
+
30
+ #: php/wp-table-reloaded-export.class.php:32
31
+ #: php/wp-table-reloaded-import.class.php:43
32
+ msgid "XML - eXtended Markup Language"
33
+ msgstr "XML - eXtended Markup Language"
34
+
35
+ #: php/wp-table-reloaded-export.class.php:35
36
+ #: php/wp-table-reloaded-import.class.php:36
37
+ msgid "; (semicolon)"
38
+ msgstr "; (pikë-presje)"
39
+
40
+ #: php/wp-table-reloaded-export.class.php:36
41
+ #: php/wp-table-reloaded-import.class.php:37
42
+ msgid ", (comma)"
43
+ msgstr ", (presje)"
44
+
45
+ #: php/wp-table-reloaded-export.class.php:37
46
+ #: php/wp-table-reloaded-import.class.php:38
47
+ msgid ": (colon)"
48
+ msgstr ": (Dy pika)"
49
+
50
+ #: wp-table-reloaded-admin.php:137
51
+ #, php-format
52
+ msgid "Table \"%s\" added successfully."
53
+ msgstr "Tabela \"%s\" u shtua me sukses."
54
+
55
+ #: wp-table-reloaded-admin.php:160
56
+ msgid "Table edited successfully."
57
+ msgstr "Tabela u përpunua me sukses."
58
+
59
+ #: wp-table-reloaded-admin.php:176
60
+ msgid "Rows swapped successfully."
61
+ msgstr "Rrjeshtat u ndërruan me sukses."
62
+
63
+ #: wp-table-reloaded-admin.php:195
64
+ msgid "Columns swapped successfully."
65
+ msgstr "Kolonat u ndërruan me sukses."
66
+
67
+ #: wp-table-reloaded-admin.php:224
68
+ msgid "Copy of"
69
+ msgstr "Kopje e"
70
+
71
+ #: wp-table-reloaded-admin.php:229
72
+ #, php-format
73
+ msgid "Table \"%s\" copied successfully."
74
+ msgstr "Tabela \"%s\" u kopjua me sukses."
75
+
76
+ #: wp-table-reloaded-admin.php:248
77
+ #, php-format
78
+ msgid "Table \"%s\" deleted successfully."
79
+ msgstr "Tabela \"%s\" u fshi me sukses."
80
+
81
+ #: wp-table-reloaded-admin.php:258
82
+ msgid "Row deleted successfully."
83
+ msgstr "Rrjeshti u fshi me sukses."
84
+
85
+ #: wp-table-reloaded-admin.php:271
86
+ msgid "Column deleted successfully."
87
+ msgstr "Kolona u fshi me sukses."
88
+
89
+ #: wp-table-reloaded-admin.php:276
90
+ msgid "Delete failed."
91
+ msgstr "Fshirja nuk u krye."
92
+
93
+ #: wp-table-reloaded-admin.php:300
94
+ msgid "Row inserted successfully."
95
+ msgstr "Rrjeshti u shtua me sukses."
96
+
97
+ #: wp-table-reloaded-admin.php:309
98
+ msgid "Column inserted successfully."
99
+ msgstr "Kolona u shtua me sukses."
100
+
101
+ #: wp-table-reloaded-admin.php:312
102
+ msgid "Insert failed."
103
+ msgstr "Shtimi nuk u krye."
104
+
105
+ #: wp-table-reloaded-admin.php:340
106
+ msgid "Imported Table"
107
+ msgstr "Tabelë e importuar"
108
+
109
+ #: wp-table-reloaded-admin.php:341
110
+ msgid "via form"
111
+ msgstr "via form"
112
+
113
+ #: wp-table-reloaded-admin.php:358
114
+ #: wp-table-reloaded-admin.php:379
115
+ msgid "Table imported successfully."
116
+ msgstr "Tabela u importua me sukses."
117
+
118
+ #: wp-table-reloaded-admin.php:361
119
+ msgid "Table could not be imported."
120
+ msgstr "Tabela nuk mund të importohet"
121
+
122
+ #: wp-table-reloaded-admin.php:405
123
+ #, php-format
124
+ msgid "Table \"%s\" exported successfully."
125
+ msgstr "Tabela \"%s\" u eksportua me sukses."
126
+
127
+ #: wp-table-reloaded-admin.php:433
128
+ msgid "Options saved successfully."
129
+ msgstr "Opsionet u ruajtën me sukses."
130
+
131
+ #. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
132
+ #. Plugin Name of an extension
133
+ #: wp-table-reloaded-admin.php:451
134
+ msgid "WP-Table Reloaded"
135
+ msgstr "WP-Table Reloaded"
136
+
137
+ #: wp-table-reloaded-admin.php:452
138
+ msgid "Plugin deactivated successfully."
139
+ msgstr "Plugini u ç'aktivizua me sukses."
140
+
141
+ #: wp-table-reloaded-admin.php:453
142
+ msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
143
+ msgstr "Të gjitha tabelat, datat edhe opsionet u fshinë. Tani mund të fshish edhe dosjen e Pluginit nga serveri juaj."
144
+
145
+ #: wp-table-reloaded-admin.php:471
146
+ msgid "List of Tables"
147
+ msgstr "Lista e tabelave"
148
+
149
+ #: wp-table-reloaded-admin.php:474
150
+ msgid "This is a list of all available tables. You may add, edit, copy or delete tables here."
151
+ msgstr "Kjo është një listë e të gjithë tabelave. Këtu mund të shtosh, të përpunosh, kopjosh apo fshish tabela."
152
+
153
+ #: wp-table-reloaded-admin.php:475
154
+ msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode: <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
155
+ msgstr "Nëse don të bësh tabelën të shfaqet në një postim, atëherë duhet të përdorësh Shortcode: <strong>[table id=&lt;ID-e Tabelës&gt; /]</strong>"
156
+
157
+ #: wp-table-reloaded-admin.php:483
158
+ #: wp-table-reloaded-admin.php:887
159
+ msgid "ID"
160
+ msgstr "ID"
161
+
162
+ #: wp-table-reloaded-admin.php:484
163
+ #: wp-table-reloaded-admin.php:544
164
+ #: wp-table-reloaded-admin.php:594
165
+ #: wp-table-reloaded-admin.php:888
166
+ msgid "Table Name"
167
+ msgstr "Emri i Tabelës"
168
+
169
+ #: wp-table-reloaded-admin.php:485
170
+ #: wp-table-reloaded-admin.php:548
171
+ #: wp-table-reloaded-admin.php:598
172
+ #: wp-table-reloaded-admin.php:889
173
+ msgid "Description"
174
+ msgstr "Përshkrimi"
175
+
176
+ #: wp-table-reloaded-admin.php:486
177
+ #: wp-table-reloaded-admin.php:890
178
+ msgid "Action"
179
+ msgstr "Aksioni"
180
+
181
+ #: wp-table-reloaded-admin.php:511
182
+ msgid "Edit"
183
+ msgstr "Përpuno"
184
+
185
+ #: wp-table-reloaded-admin.php:512
186
+ msgid "Do you want to copy this table?"
187
+ msgstr "Don të kopjosh këtë tabelë?"
188
+
189
+ #: wp-table-reloaded-admin.php:512
190
+ msgid "Copy"
191
+ msgstr "Kopjo"
192
+
193
+ #: wp-table-reloaded-admin.php:513
194
+ msgid "Export"
195
+ msgstr "Eksporto"
196
+
197
+ #: wp-table-reloaded-admin.php:514
198
+ #: wp-table-reloaded-admin.php:807
199
+ msgid "The complete table and all content will be erased. Do you really want to delete it?"
200
+ msgstr "E gjithë tabela bashkë me përmbajtjen do të fshihet. Je i sigurtë për këtë?"
201
+
202
+ #: wp-table-reloaded-admin.php:514
203
+ msgid "Delete"
204
+ msgstr "Fshi"
205
+
206
+ #: wp-table-reloaded-admin.php:524
207
+ #: wp-table-reloaded-admin.php:1001
208
+ msgid "No tables found."
209
+ msgstr "Asnjë tabelë e gjetur."
210
+
211
+ #: wp-table-reloaded-admin.php:524
212
+ #: wp-table-reloaded-admin.php:1001
213
+ #, php-format
214
+ msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
215
+ msgstr "Mund të <a href=\"%s\">shtosh</a> ose <a href=\"%s\">importosh</a> një tabelë!"
216
+
217
+ #: wp-table-reloaded-admin.php:532
218
+ #: wp-table-reloaded-admin.php:1171
219
+ msgid "Add new Table"
220
+ msgstr "Shto tabelë të re"
221
+
222
+ #: wp-table-reloaded-admin.php:536
223
+ msgid "You can add a new table here. Just enter it's name, a description (optional) and the number of rows and columns.<br/>You may add, insert or delete rows and columns later."
224
+ msgstr "Këtu mund të shtosh ti një tabelë të re. Vendos emrin e saj, pëshkrimin (me dëshirë) dhe numrin e kolonave dhe rrjeshtave.<br/> Ti mund të shtosh apo fshish kolona e rrjeshta edhe me vone. löschen."
225
+
226
+ #: wp-table-reloaded-admin.php:545
227
+ msgid "Enter Table Name"
228
+ msgstr "Vendos emrin e tabelës"
229
+
230
+ #: wp-table-reloaded-admin.php:549
231
+ msgid "Enter Description"
232
+ msgstr "Vendos përshkrimit"
233
+
234
+ #: wp-table-reloaded-admin.php:552
235
+ msgid "Number of Rows"
236
+ msgstr "Numri i rrjeshtave"
237
+
238
+ #: wp-table-reloaded-admin.php:556
239
+ msgid "Number of Columns"
240
+ msgstr "Numri i kolonave"
241
+
242
+ #: wp-table-reloaded-admin.php:563
243
+ msgid "Add Table"
244
+ msgstr "Shto Tabelë"
245
+
246
+ #: wp-table-reloaded-admin.php:580
247
+ #, php-format
248
+ msgid "Edit Table \"%s\""
249
+ msgstr "Formato tabelën \"%s\""
250
+
251
+ #: wp-table-reloaded-admin.php:584
252
+ msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
253
+ msgstr "Këtu mund të përpunosh pëmbajtjen e tabelës. Gjithashtu mund të fshish, shtosh e ndërrosh rrjeshta apo kolona."
254
+
255
+ #: wp-table-reloaded-admin.php:585
256
+ #, php-format
257
+ msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
258
+ msgstr "Nëse don të bësh tabelën të shfaqet në një postim, atëherë duhet të përdorësh Shortcode: <strong>[table id=%s /]</strong>"
259
+
260
+ #: wp-table-reloaded-admin.php:590
261
+ msgid "Table Information"
262
+ msgstr "Informacione mbi tabelën"
263
+
264
+ #: wp-table-reloaded-admin.php:606
265
+ #: wp-table-reloaded-admin.php:798
266
+ msgid "Update Changes"
267
+ msgstr "Ruaj ndryshimet"
268
+
269
+ #: wp-table-reloaded-admin.php:607
270
+ #: wp-table-reloaded-admin.php:799
271
+ msgid "Save and go back"
272
+ msgstr "Ruaj dhe kthehu mbrapsht"
273
+
274
+ #: wp-table-reloaded-admin.php:610
275
+ #: wp-table-reloaded-admin.php:802
276
+ msgid "Cancel"
277
+ msgstr "Anullo"
278
+
279
+ #: wp-table-reloaded-admin.php:616
280
+ msgid "Table Contents"
281
+ msgstr "Përmbajtja e tabelës"
282
+
283
+ #: wp-table-reloaded-admin.php:644
284
+ msgid "Insert Row"
285
+ msgstr "Shto rrjesht"
286
+
287
+ #: wp-table-reloaded-admin.php:646
288
+ msgid "Do you really want to delete this row?"
289
+ msgstr "Jeni i sigurtë që të fshini këtë rrjesht?"
290
+
291
+ #: wp-table-reloaded-admin.php:646
292
+ msgid "Delete Row"
293
+ msgstr "Fshi rrjeshtin"
294
+
295
+ #: wp-table-reloaded-admin.php:656
296
+ msgid "Insert Column"
297
+ msgstr "Shto kolonë"
298
+
299
+ #: wp-table-reloaded-admin.php:658
300
+ msgid "Do you really want to delete this column?"
301
+ msgstr "A jeni i sigurtë që doni me fshirë këtë kolonë?"
302
+
303
+ #: wp-table-reloaded-admin.php:658
304
+ msgid "Delete Column"
305
+ msgstr "Fshi kolonën"
306
+
307
+ #: wp-table-reloaded-admin.php:663
308
+ msgid "Add Row"
309
+ msgstr "Shto rrjesht"
310
+
311
+ #: wp-table-reloaded-admin.php:663
312
+ msgid "Add Column"
313
+ msgstr "Shto kolonë"
314
+
315
+ #: wp-table-reloaded-admin.php:672
316
+ msgid "Data Manipulation"
317
+ msgstr "Manipulimi Datave"
318
+
319
+ #: wp-table-reloaded-admin.php:687
320
+ #, php-format
321
+ msgid "Swap rows %s and %s"
322
+ msgstr "Ndërro rrjeshtat %s dhe %s"
323
+
324
+ #: wp-table-reloaded-admin.php:690
325
+ #: wp-table-reloaded-admin.php:710
326
+ msgid "Swap"
327
+ msgstr "Ndërroj"
328
+
329
+ #: wp-table-reloaded-admin.php:707
330
+ #, php-format
331
+ msgid "Swap columns %s and %s"
332
+ msgstr "Ndërro kolonat %s dhe %s"
333
+
334
+ #: wp-table-reloaded-admin.php:714
335
+ msgid "Insert Link"
336
+ msgstr "Shto Link"
337
+
338
+ #: wp-table-reloaded-admin.php:714
339
+ msgid "Insert Image"
340
+ msgstr "Shto foto"
341
+
342
+ #: wp-table-reloaded-admin.php:732
343
+ msgid "URL of link to insert"
344
+ msgstr "URL e linkut për të futur"
345
+
346
+ #: wp-table-reloaded-admin.php:734
347
+ msgid "Text of link"
348
+ msgstr "Tekst ose link"
349
+
350
+ #: wp-table-reloaded-admin.php:737
351
+ msgid "To insert the following link into a cell, just click the cell after closing this dialog."
352
+ msgstr "Për të vendosur linkun në një kuti të tabelës, mjafton të klikoni një kuti mbas mbylljes së këtij dialogu."
353
+
354
+ #: wp-table-reloaded-admin.php:746
355
+ msgid "URL of image to insert"
356
+ msgstr "URL e imazhit që do të vendoset"
357
+
358
+ #: wp-table-reloaded-admin.php:748
359
+ msgid "\"alt\" text of the image"
360
+ msgstr "\"alt\" teksti i imazhit"
361
+
362
+ #: wp-table-reloaded-admin.php:751
363
+ msgid "To insert the following image into a cell, just click the cell after closing this dialog."
364
+ msgstr "Për të shtuar imazhin në një kuti të tabelës, mjafton të klikosh kutinë mbasi të keni mbyllur këtë dialog."
365
+
366
+ #: wp-table-reloaded-admin.php:767
367
+ msgid "Table Settings"
368
+ msgstr "Opsionet e tabelës"
369
+
370
+ #: wp-table-reloaded-admin.php:769
371
+ msgid "These settings will only be used for this table."
372
+ msgstr "Këto opsione vlejnë vetëm për këtë tabelë."
373
+
374
+ #: wp-table-reloaded-admin.php:772
375
+ msgid "Alternating row colors"
376
+ msgstr "ngjyrat e rrjeshtave janë të alternuara"
377
+
378
+ #: wp-table-reloaded-admin.php:773
379
+ msgid "Every second row will have an alternating background color."
380
+ msgstr "Çdo rrjesht i dytë merr një ngjyrë të ndryshme në background."
381
+
382
+ #: wp-table-reloaded-admin.php:776
383
+ msgid "Use Table Headline"
384
+ msgstr "Titulli i tabelës"
385
+
386
+ #: wp-table-reloaded-admin.php:777
387
+ msgid "The first row of your table will use the [th] tag."
388
+ msgstr "Rrjeshti i parë i tabelës tënde do të shënohet me një HTML-tag [th]."
389
+
390
+ #: wp-table-reloaded-admin.php:780
391
+ msgid "Print Table Name"
392
+ msgstr "Jepni emrin e tabelës"
393
+
394
+ #: wp-table-reloaded-admin.php:781
395
+ msgid "The Table Name will be written above the table in a [h2] tag."
396
+ msgstr "Emri i tabelës do të shkruhet me një [h2]-HTML-Tag."
397
+
398
+ #: wp-table-reloaded-admin.php:784
399
+ msgid "Print Table Description"
400
+ msgstr "Jep përshkrimin e tabelës"
401
+
402
+ #: wp-table-reloaded-admin.php:785
403
+ msgid "The Table Description will be written under the table."
404
+ msgstr "Përshkrimi i tabelës do të shkruhet poshtë saj."
405
+
406
+ #: wp-table-reloaded-admin.php:788
407
+ msgid "Use Tablesorter"
408
+ msgstr "Përdor Tablesorter"
409
+
410
+ #: wp-table-reloaded-admin.php:789
411
+ msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. <small>Attention: You must have Tablesorter enabled on the \"Plugin Options\" page and the option \"Use Table Headline\" has to be enabled above for this to work!</small>"
412
+ msgstr "Ju mund të rradhisni elementët e tabelës me <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> . <small> KUJDES: Tablesorter duhet të jetë i aktivizuar në \"Plugin Options\" ! Gjithashtu duhet të aktivizohet edhe opsioni \"Use Table Headline\" (me [th]) (shiko lart) aktiviert sein!</small>"
413
+
414
+ #: wp-table-reloaded-admin.php:804
415
+ msgid "Other actions"
416
+ msgstr "Aksione të tjera"
417
+
418
+ #: wp-table-reloaded-admin.php:807
419
+ msgid "Delete Table"
420
+ msgstr "Fshi tabelën"
421
+
422
+ #: wp-table-reloaded-admin.php:808
423
+ #: wp-table-reloaded-admin.php:990
424
+ msgid "Export Table"
425
+ msgstr "Eksporto tabelën"
426
+
427
+ #: wp-table-reloaded-admin.php:819
428
+ #: wp-table-reloaded-admin.php:1172
429
+ msgid "Import a Table"
430
+ msgstr "Importo një tabelë"
431
+
432
+ #: wp-table-reloaded-admin.php:823
433
+ msgid "You may import a table from existing data here.<br/>It may be a CSV, XML or HTML file. It needs a certain structure though. Please consult the documentation."
434
+ msgstr "Këtu mund të importohet një Tabelë nga një dokument ekzistues.<br/> Ky mund të jetë një CSV-, XML- ose HTML-dokument. Për probleme lexoni dokumentacionin përkatës."
435
+
436
+ #: wp-table-reloaded-admin.php:830
437
+ msgid "Select Import Format"
438
+ msgstr "Zgjidh dokumentin e importimit"
439
+
440
+ #: wp-table-reloaded-admin.php:840
441
+ msgid "Used Delimiter"
442
+ msgstr "Përdor shenjën ndarëse"
443
+
444
+ #: wp-table-reloaded-admin.php:847
445
+ #: wp-table-reloaded-admin.php:981
446
+ msgid "<small>(Only needed for CSV export.)</small>"
447
+ msgstr "<small>(Vetëm për Exportin e datave CSV.)</small>"
448
+
449
+ #: wp-table-reloaded-admin.php:850
450
+ msgid "Select File with Table to Import"
451
+ msgstr "Zgjidh dokumentin me tabelën për tu importuar"
452
+
453
+ #: wp-table-reloaded-admin.php:854
454
+ msgid "- or -"
455
+ msgstr "- ose -"
456
+
457
+ #: wp-table-reloaded-admin.php:855
458
+ msgid "(upload will be preferred over pasting)"
459
+ msgstr "(Ngarkimi ka përparësi kundrejt kopimit)"
460
+
461
+ #: wp-table-reloaded-admin.php:858
462
+ msgid "Paste data with Table to Import"
463
+ msgstr "ngjit tabelën që duhet importuar"
464
+
465
+ #: wp-table-reloaded-admin.php:864
466
+ msgid "Import Table"
467
+ msgstr "Importo tabelën"
468
+
469
+ #: wp-table-reloaded-admin.php:877
470
+ msgid "Import from original wp-Table plugin"
471
+ msgstr "Importo nga tabelat e Pluginit origjinal WP-Table"
472
+
473
+ #: wp-table-reloaded-admin.php:910
474
+ msgid "Do you really want to import this table from the wp-Table plugin?"
475
+ msgstr "Jeni i sigurtë që doni të importoni këto tabela nga Plugini WP-Table?"
476
+
477
+ #: wp-table-reloaded-admin.php:910
478
+ msgid "Import"
479
+ msgstr "Importo"
480
+
481
+ #: wp-table-reloaded-admin.php:918
482
+ msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
483
+ msgstr "Plugini WP-Table vnga Alex Rabe duket sikur është i instaluar, por nuk u gjëndën asnjë tabela."
484
+
485
+ #: wp-table-reloaded-admin.php:937
486
+ #: wp-table-reloaded-admin.php:1173
487
+ msgid "Export a Table"
488
+ msgstr "Eksporto një tabelë"
489
+
490
+ #: wp-table-reloaded-admin.php:941
491
+ msgid "You may export a table here. Just select the table, your desired export format and a delimiter (needed for CSV only).<br/>You may opt to download the export file. Otherwise it will be shown on this page."
492
+ msgstr "Këtu mund të eksportohet një tabelë. Si fillim zgjidh tabelën, më pas llojin e formatit të eksportit dhe ndarëset (vetëm për CVS).<br/> Gjithashtu mund të zgjedhës që ky dokument të shkarkohet apo të tregohet në faqe."
493
+
494
+ #: wp-table-reloaded-admin.php:949
495
+ msgid "Select Table to Export"
496
+ msgstr "zgjidh tabelën për të eksportuar"
497
+
498
+ #: wp-table-reloaded-admin.php:964
499
+ msgid "Select Export Format"
500
+ msgstr "Zgjidh formatin e eksportit"
501
+
502
+ #: wp-table-reloaded-admin.php:974
503
+ msgid "Select Delimiter to use"
504
+ msgstr "Zgjidh ndarësin për të përdorur"
505
+
506
+ #: wp-table-reloaded-admin.php:984
507
+ msgid "Download file"
508
+ msgstr "Shkarko dokumentin"
509
+
510
+ #: wp-table-reloaded-admin.php:985
511
+ msgid "Yes, I want to download the export file."
512
+ msgstr "Po, unë dua të shkarkoj dokumentat e eksportuar."
513
+
514
+ #: wp-table-reloaded-admin.php:1010
515
+ msgid "General Plugin Options"
516
+ msgstr "Opsionet e Pluginit"
517
+
518
+ #: wp-table-reloaded-admin.php:1014
519
+ msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
520
+ msgstr "Këtu mund të ndryshohet opsione e përgjithshme të pluginit<br/>Këto ndryshime vlejnë për të gjitha tabelat."
521
+
522
+ #: wp-table-reloaded-admin.php:1021
523
+ msgid "Frontend Options"
524
+ msgstr "Opsionet e Frontend"
525
+
526
+ #: wp-table-reloaded-admin.php:1025
527
+ msgid "Enable Tablesorter-JavaScript?"
528
+ msgstr "Aktivizo Tablesorter-JavaScript?"
529
+
530
+ #: wp-table-reloaded-admin.php:1026
531
+ msgid "Yes, enable <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> to be used to make table sortable (can be changed for every table separatly)."
532
+ msgstr "Po, aktivizo <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugins</a> , në mënyrë që tabelat të bëhen me elementë të rënditshëm (mund të aktivizohet edhe për çdo tabelë më vete)."
533
+
534
+ #: wp-table-reloaded-admin.php:1029
535
+ msgid "Add custom CSS?"
536
+ msgstr "Shto CSS të personalizuar?"
537
+
538
+ #: wp-table-reloaded-admin.php:1030
539
+ #, php-format
540
+ msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag. (If you do not want this, just add your CSS styling to your theme's \"style.css\" <small>(located at %s)</small>.) (See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin website</a> for examples.)"
541
+ msgstr "Po, përdor CSS-snippet e mëposhtëme brënda [style]-HTML-tag. (Nëse nuk doni këtë, shtoni stilin tuaj të CSS tek thema juaj \"style.css\" <small>(gjëndet në %s)</small>.) (Shikoni <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">faqen e pluginit</a> për shëmbuj.)"
542
+
543
+ #: wp-table-reloaded-admin.php:1034
544
+ msgid "Enter custom CSS"
545
+ msgstr "Vendos CSS"
546
+
547
+ #: wp-table-reloaded-admin.php:1042
548
+ msgid "Admin Options"
549
+ msgstr "Opsionet e adminit"
550
+
551
+ #: wp-table-reloaded-admin.php:1046
552
+ msgid "Uninstall Plugin upon Deactivation?"
553
+ msgstr "Ç'instalo pluginin mbas ç'aktivizimit?"
554
+
555
+ #: wp-table-reloaded-admin.php:1047
556
+ msgid "Yes, uninstall everything when plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page! (It does not influence the \"Manually Uninstall Plugin\" button below!)"
557
+ msgstr "Po, ç'instalo të gjitha mbasi plugini është deaktivuar. Kujdes: Ti duhet të aktivizosh këtë kutiz përpara ç'aktivizimit të pluginit nga Wordpress-Plugin-Menager! (Nuk ka asnjë ndikim mbi ç'instalimin manual që ndodhet më poshtë)"
558
+
559
+ #: wp-table-reloaded-admin.php:1057
560
+ msgid "Save Options"
561
+ msgstr "Ruaj opsionet"
562
+
563
+ #: wp-table-reloaded-admin.php:1067
564
+ msgid "Do you really want to activate this? You should only do that right before uninstallation!"
565
+ msgstr "Je i sigurtë që të aktivosh këtë? Ju duhet ta bëni këtë vetëm nëse do ç'instaloni pluginin!"
566
+
567
+ #: wp-table-reloaded-admin.php:1073
568
+ msgid "Manually Uninstall Plugin"
569
+ msgstr "Ç'instalim manual i pluginit"
570
+
571
+ #: wp-table-reloaded-admin.php:1075
572
+ msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported.<br/> Be very careful with this and only click the button if you know what you are doing!"
573
+ msgstr "Këtu mund të ç'instalosh Pluginin. Ky veprim <strong>fshin</strong> të gjtihë tabelat, datat dhe opsionet që i përkasin pluginit, duke përfshirë këtu edhe të gjithë tabelat e importuara. Kështu që ki kujdes edhe kliko butonin vetëm kur të jesh i sigurtë për atë që po bën!"
574
+
575
+ #: wp-table-reloaded-admin.php:1078
576
+ msgid "Do you really want to uninstall the plugin and delete ALL data?"
577
+ msgstr "Jeni i sigurtë që doni me fshi pluginin edhe të gjithë të dhënat që janë në të?"
578
+
579
+ #: wp-table-reloaded-admin.php:1078
580
+ msgid "Are you really sure?"
581
+ msgstr "Je me të vërtet i sigurtë?"
582
+
583
+ #: wp-table-reloaded-admin.php:1078
584
+ msgid "Uninstall Plugin WP-Table Reloaded"
585
+ msgstr "Ç'instalo Plugin WP-Table Reloaded"
586
+
587
+ #: wp-table-reloaded-admin.php:1088
588
+ msgid "Information about the plugin"
589
+ msgstr "Informacione mbi këtë plugin"
590
+
591
+ #: wp-table-reloaded-admin.php:1094
592
+ msgid "Plugin Purpose"
593
+ msgstr "Qëllimi i pluginit"
594
+
595
+ #: wp-table-reloaded-admin.php:1096
596
+ msgid "This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode."
597
+ msgstr "Ky plugin ju lejoj juve të krijoni edhe menaxhoni tabela nëpërmjet panelit të Administratorit të Wordpress. Tabelat mund të integrohen ne faqe, postime apo Text-Widget me ane të një Shortcode."
598
+
599
+ #: wp-table-reloaded-admin.php:1101
600
+ msgid "Usage"
601
+ msgstr "Përdorimi"
602
+
603
+ #: wp-table-reloaded-admin.php:1103
604
+ msgid "At first you should add or import a table. Then edit your data and select the options you want. To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them. You may then style your table via CSS. Every table has the CSS-class \"wp-table-reloaded\". A table also has the class \"wp-table-reloaded-&lt;table-id&gt;\". You can also use the classes \"column-&lt;number&gt;\" and \"row-&lt;number&gt;\" to style rows and columns individually. Use this to style columns width and text alignment."
605
+ msgstr "Si fillim duhet të shtosh ose importosh një tabelë. Pastaj mund të përpunosh dokumentin dhe të zgjedhësh opsionet që dëshiron. Që të fusësh tabelën në një postim apo faqen tënde, vendos aty Shortcode [table id=&lt;ID-e-tabeles&gt;] . Pastaj ke edhe mundësinë të ndryshosh paraqitjen e tabelës me anë të CSS. Secila nga tabelat ka klasën CSS \"wp-table-reloaded\". Gjithashtu secila tabelë ka edhe klasën \"wp-table-reloaded-&lt;table-id&gt;\". Gjithashtu mund të përdorësh dhe klasat \"column-&lt;Nummer&gt;\" dhe \"row-&lt;Nummer&gt;\" , në mënyrë që të stilosh rrjeshtat apo kolonat individualisht. Gjithashtu përdor këtë për të caktuar gjërësinë e kolonave edhe rënditjen e tekstit."
606
+
607
+ #: wp-table-reloaded-admin.php:1107
608
+ msgid "More Information and Documentation"
609
+ msgstr "Informacione dhe dokumentacione të tjera"
610
+
611
+ #: wp-table-reloaded-admin.php:1109
612
+ msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. A documentation and certain support and help request possibilities will be available soon."
613
+ msgstr "Më shumë informacione gjen tek <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">Faqja e Plugin</a> ose tek faqja e <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory.</a> Një dokumentacion edhe ndihma të ndryshme do të jenë shumë shpejt në dispozicion."
614
+
615
+ #: wp-table-reloaded-admin.php:1114
616
+ msgid "Author and Licence"
617
+ msgstr "Autori dhe liçenca"
618
+
619
+ #: wp-table-reloaded-admin.php:1116
620
+ msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. It is licenced as Free Software under GPL 2."
621
+ msgstr "Ky Plugin u shkrua nga <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a> . Plugini është Falas dhe nën liçencën GPL v2 ."
622
+
623
+ #: wp-table-reloaded-admin.php:1116
624
+ msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">donating</a> or rating it at the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. Thanks!"
625
+ msgstr "Nëse të pëlqen ky plugin atëher mund të<a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">dhurosh diçka</a> ose vlerëso pluginin në faqen e <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a> . Faleminderit!"
626
+
627
+ #: wp-table-reloaded-admin.php:1121
628
+ msgid "Credits and Thanks"
629
+ msgstr "Credite dhe falenderime"
630
+
631
+ #: wp-table-reloaded-admin.php:1124
632
+ msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
633
+ msgstr "Shumë faleminderit <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> për Pluginin WP-Table,"
634
+
635
+ #: wp-table-reloaded-admin.php:1125
636
+ msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
637
+ msgstr "Christian Bach për <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
638
+
639
+ #: wp-table-reloaded-admin.php:1126
640
+ msgid "the submitters of translations:"
641
+ msgstr "Personat që kanë përkthyer dokumentat"
642
+
643
+ #: wp-table-reloaded-admin.php:1127
644
+ msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
645
+ msgstr "Shqip (falenderimet shkojnë për <a href=\"http://www.romeolab.com/\">Romeo</a>)"
646
+
647
+ #: wp-table-reloaded-admin.php:1128
648
+ msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
649
+ msgstr "Frëngjisht (falenderimet shkojnë për <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
650
+
651
+ #: wp-table-reloaded-admin.php:1129
652
+ msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
653
+ msgstr "Rusisht (falenderimet shkojnë për <a href=\"http://wp-skins.info/\">Truper</a>)"
654
+
655
+ #: wp-table-reloaded-admin.php:1130
656
+ msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>)"
657
+ msgstr "Spanjisht (falenderimet shkojnë për <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>)"
658
+
659
+ #: wp-table-reloaded-admin.php:1131
660
+ msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
661
+ msgstr "Suedisht (falenderimet shkojnë për <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
662
+
663
+ #: wp-table-reloaded-admin.php:1132
664
+ msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
665
+ msgstr "Turqisht (falenderimet shkojnë për <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
666
+
667
+ #: wp-table-reloaded-admin.php:1133
668
+ msgid "and all contributors, supporters, reviewers and users of the plugin!"
669
+ msgstr "dhe të gjithë ndihmësit, Reviewer dhe përdoruesit e Pluginit!"
670
+
671
+ #: wp-table-reloaded-admin.php:1170
672
+ msgid "List Tables"
673
+ msgstr "Lista e tabelave"
674
+
675
+ #: wp-table-reloaded-admin.php:1175
676
+ msgid "Plugin Options"
677
+ msgstr "Opsionet e pluginit"
678
+
679
+ #: wp-table-reloaded-admin.php:1176
680
+ msgid "About the Plugin"
681
+ msgstr "Rreth Pluginit"
682
+
683
+ #: wp-table-reloaded-admin.php:1184
684
+ msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a>. A documentation and certain support and help request possibilities will be available soon."
685
+ msgstr "Më shumë informacione gjeni në faqen e <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">Pluginit</a> . Aty do të gjeni edhe dokumenta ndihmëse."
686
+
687
+ #. Plugin URI of an extension
688
+ msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
689
+ msgstr "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
690
+
691
+ #. Description of an extension
692
+ msgid "This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode. The plugin is a completely rewritten and extended version of Alex Rabe's \"wp-Table\" and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin."
693
+ msgstr "Ky plugin ju lejoj juve të krijoni edhe menaxhoni tabela nëpërmjet panelit të Administratorit të Wordpress. Tabelat mund të integrohen ne faqe, postime apo Text-Widget me ane të një Shortcode."
694
+
695
+ #. Author of an extension
696
+ msgid "Tobias B&auml;thge"
697
+ msgstr "Tobias B&auml;thge"
698
+
699
+ #. Author URI of an extension
700
+ msgid "http://tobias.baethge.com/"
701
+ msgstr "http://tobias.baethge.com/"
702
+
703
+ #~ msgid "Use global CSS-file?"
704
+ #~ msgstr "Përdor dokumentin global CSS-StyleSheet ?"
705
+ #~ msgid ""
706
+ #~ "Yes, load a CSS-file, which contains basic styles for the table. The CSS-"
707
+ #~ "files must be located in subfolder \"css\". To change styles, please copy "
708
+ #~ "the file \"example-style.css\", edit the copied file with your style "
709
+ #~ "changes and place it in the same folder. You may then select it below. "
710
+ #~ msgstr ""
711
+ #~ "Po, ngarko një dokument CSS, i cili përmban të dhënat e tabelës. "
712
+ #~ "Dokumenti CSS duket të ndodhet në Nëndosjen \"css\" . Për të ndërmarr një "
713
+ #~ "ndryshim koopjoni dokumentat \"example-style.css\" dhe \"example-style-wp-"
714
+ #~ "table.css\" në të njëjtën dosje, ndryshoi dokumentat e kopjuar sipas "
715
+ #~ "dëshirës tënde dhe në fund mund të zgjedhësh dokumentin e dëshiruar këtu "
716
+ #~ "poshtë"
717
+ #~ msgid "Select CSS file to use"
718
+ #~ msgstr "Zgjidh dokumentat CSS për të përdorur"
719
+ #~ msgid ""
720
+ #~ "(These files are located in the subfolder \"css\" of the plugin folder.)"
721
+ #~ msgstr ""
722
+ #~ "(Këto dokumenta ndodhen në Nëndosjen \"css\" të Dosjes së Pluginit.)"
723
+ #~ msgid ""
724
+ #~ "the submitters of translations: <br/>&middot; Turkish (thanks to <a href="
725
+ #~ "\"http://www.wpuzmani.com/\">Semih</a>)<br/>&middot; Swedish (thanks to "
726
+ #~ "<a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
727
+ #~ msgstr ""
728
+ #~ "përkthyesit: <br/> &middot; Turqisht (faleminderit <a href=\"http://www."
729
+ #~ "wpuzmani.com/\">Semih</a>)<br/> &middot; Suedisht (faleminderit <a href="
730
+ #~ "\"http://www.zuperzed.se/\">ZuperZed</a>)"
731
+
languages/wp-table-reloaded-sv_SE.mo CHANGED
Binary file
languages/wp-table-reloaded-sv_SE.po CHANGED
@@ -1,628 +1,727 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WP Table Reloaded (sv_SE)\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-04-20 15:01+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: ZuperZed <info@zuperzed.se>\n"
8
- "Language-Team: www.zuperzed.se <info@zuperzed.se>\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;__\n"
13
- "X-Poedit-Language: Swedish\n"
14
- "X-Poedit-Country: SWEDEN\n"
15
- "X-Poedit-Basepath: .\n"
16
- ": \n"
17
- "X-Poedit-SearchPath-0: C:\\Users\\ZuperZed\\Desktop\\wp-table-reloaded\\wp-table-reloaded\n"
18
-
19
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:137
20
- #, php-format
21
- msgid "Table \"%s\" added successfully."
22
- msgstr "Tabellen \"%s\" tillagd framgångsrikt."
23
-
24
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:160
25
- msgid "Table edited successfully."
26
- msgstr "Tabell redigerad framgångsrikt."
27
-
28
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:176
29
- msgid "Rows swapped successfully."
30
- msgstr "Rader bytte plats framgångsrikt."
31
-
32
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:195
33
- msgid "Columns swapped successfully."
34
- msgstr "Kolumner bytte plats framgångsrikt."
35
-
36
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:224
37
- msgid "Copy of"
38
- msgstr "Kopia av"
39
-
40
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:229
41
- #, php-format
42
- msgid "Table \"%s\" copied successfully."
43
- msgstr "Tabellen \"%s\" kopierades framgångsrikt."
44
-
45
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:248
46
- #, php-format
47
- msgid "Table \"%s\" deleted successfully."
48
- msgstr "Tabellen \"%s\" raderades framgångsrikt."
49
-
50
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:258
51
- msgid "Row deleted successfully."
52
- msgstr "Rad raderades framgångsrikt."
53
-
54
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:271
55
- msgid "Column deleted successfully."
56
- msgstr "Kolumn raderades framgångsrikt."
57
-
58
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:276
59
- msgid "Delete failed."
60
- msgstr "Radering misslyckades."
61
-
62
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:300
63
- msgid "Row inserted successfully."
64
- msgstr "Infoga rad lyckades."
65
-
66
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:309
67
- msgid "Column inserted successfully."
68
- msgstr "Infoga kolumn lyckades."
69
-
70
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:312
71
- msgid "Insert failed."
72
- msgstr "Infogning misslyckades."
73
-
74
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:340
75
- msgid "Imported Table"
76
- msgstr "Importerad Tabell"
77
-
78
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:341
79
- msgid "via form"
80
- msgstr "via formulär"
81
-
82
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:358
83
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:379
84
- msgid "Table imported successfully."
85
- msgstr "Tabellimport lyckades."
86
-
87
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:361
88
- msgid "Table could not be imported."
89
- msgstr "Tabellen kunde inte importeras."
90
-
91
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:405
92
- #, php-format
93
- msgid "Table \"%s\" exported successfully."
94
- msgstr "Tabellen \"%s\" exporterades framgångsrikt."
95
-
96
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:426
97
- msgid "Options saved successfully."
98
- msgstr "Inställningar sparades framgångsrikt."
99
-
100
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:444
101
- msgid "WP-Table Reloaded"
102
- msgstr "WP-Table Reloaded"
103
-
104
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:445
105
- msgid "Plugin deactivated successfully."
106
- msgstr "Tillägget inaktiverades framgångsrikt."
107
-
108
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:446
109
- msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
110
- msgstr "Alla tabeller, data och inställningar raderades. Du kan nu ta bort tilläggets undermapp från din Wordpress pluginmapp."
111
-
112
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:464
113
- msgid "List of Tables"
114
- msgstr "Tabellista"
115
-
116
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:467
117
- msgid "This is a list of all available tables. You may add, edit, copy or delete tables here."
118
- msgstr "Detta är en lista över alla tillgängliga tabeller. Du kan lägga till, redigera, kopiera eller radera tabeller här."
119
-
120
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:468
121
- msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode: <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
122
- msgstr "Om du vill visa en tabell på en sida, i ett inlägg eller i en textwidget, använd snabbkoden: <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
123
-
124
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:476
125
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:816
126
- msgid "ID"
127
- msgstr "ID"
128
-
129
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:477
130
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:537
131
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:587
132
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:817
133
- msgid "Table Name"
134
- msgstr "Tabellnamn"
135
-
136
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:478
137
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:541
138
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:591
139
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:818
140
- msgid "Description"
141
- msgstr "Beskrivning"
142
-
143
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:479
144
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:819
145
- msgid "Action"
146
- msgstr "Åtgärd"
147
-
148
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:504
149
- msgid "Edit"
150
- msgstr "Redigera"
151
-
152
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:505
153
- msgid "Do you want to copy this table?"
154
- msgstr "Vill du kopiera denna tabell?"
155
-
156
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:505
157
- msgid "Copy"
158
- msgstr "Kopiera"
159
-
160
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:506
161
- msgid "Export"
162
- msgstr "Exportera"
163
-
164
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:507
165
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:736
166
- msgid "The complete table and all content will be erased. Do you really want to delete it?"
167
- msgstr "Tabellen och dess inehåll kommer raderas. Vill du verkligen radera den?"
168
-
169
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:507
170
- msgid "Delete"
171
- msgstr "Radera"
172
-
173
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:517
174
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:930
175
- msgid "No tables found."
176
- msgstr "Inga tabeller hittades."
177
-
178
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:517
179
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:930
180
- #, php-format
181
- msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
182
- msgstr "Du kan <a href=\"%s\">lägga till</a> eller <a href=\"%s\">importera</a> en!"
183
-
184
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:525
185
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1095
186
- msgid "Add new Table"
187
- msgstr "Lägg till ny tabell"
188
-
189
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:529
190
- msgid "You can add a new table here. Just enter it's name, a description (optional) and the number of rows and columns.<br/>You may add, insert or delete rows and columns later."
191
- msgstr "Du kan lägga till en tabell här. Ange tabellens namn, en beskrivning (valfritt) och antal rader och kolumner.<br/>Du kan även lägga till, infoga eller radera rader och kolumner senare."
192
-
193
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:538
194
- msgid "Enter Table Name"
195
- msgstr "Ange tabellnamn"
196
-
197
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:542
198
- msgid "Enter Description"
199
- msgstr "Ange beskrivning"
200
-
201
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:545
202
- msgid "Number of Rows"
203
- msgstr "Antal rader"
204
-
205
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:549
206
- msgid "Number of Columns"
207
- msgstr "Antal kolumner"
208
-
209
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:556
210
- msgid "Add Table"
211
- msgstr "Lägg till tabell"
212
-
213
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:577
214
- msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
215
- msgstr "Du kan redigera tabellens innehåll här. Det är även möjligt att lägga till eller radera kolumner och rader."
216
-
217
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:583
218
- msgid "Table Information"
219
- msgstr "Tabellinformation"
220
-
221
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:600
222
- msgid "Table Contents"
223
- msgstr "Tabellinnehåll"
224
-
225
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:628
226
- msgid "Insert Row"
227
- msgstr "Infoga en rad"
228
-
229
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:630
230
- msgid "Do you really want to delete this row?"
231
- msgstr "Vill du verkligen radera denna rad?"
232
-
233
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:630
234
- msgid "Delete Row"
235
- msgstr "Radera rad"
236
-
237
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:640
238
- msgid "Insert Column"
239
- msgstr "Infoga en kolumn"
240
-
241
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:642
242
- msgid "Do you really want to delete this column?"
243
- msgstr "Vill du verkligen radera denna kolumn?"
244
-
245
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:642
246
- msgid "Delete Column"
247
- msgstr "Radera kolumn"
248
-
249
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:647
250
- msgid "Add Row"
251
- msgstr "Lägg till rad"
252
-
253
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:647
254
- msgid "Add Column"
255
- msgstr "Lägg till kolumn"
256
-
257
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:668
258
- #, php-format
259
- msgid "Swap rows %s and %s"
260
- msgstr "Byt plats på rader %s och %s"
261
-
262
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:671
263
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:691
264
- msgid "Swap"
265
- msgstr "Byt plats"
266
-
267
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:688
268
- #, php-format
269
- msgid "Swap columns %s and %s"
270
- msgstr "Byt plats på kolumner %s och %s"
271
-
272
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:696
273
- msgid "Table Settings"
274
- msgstr "Tabellinställningar"
275
-
276
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:698
277
- msgid "These settings will only be used for this table."
278
- msgstr "Dessa inställningar kommer endast användas för denna tabell."
279
-
280
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:701
281
- msgid "Alternating row colors"
282
- msgstr "Växlande radfärg"
283
-
284
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:702
285
- msgid "Every second row will have an alternating background color."
286
- msgstr "Varannan rad kommer att ha en alternativ bakgrundsfärg."
287
-
288
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:705
289
- msgid "Use Table Headline"
290
- msgstr "Använd tabellrubrik"
291
-
292
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:706
293
- msgid "The first row of your table will use the [th] tag."
294
- msgstr "Första raden i din tabell kommer använda etiketten [th]."
295
-
296
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:709
297
- msgid "Print Table Name"
298
- msgstr "Visa tabellnamn"
299
-
300
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:710
301
- msgid "The Table Name will be written above the table in a [h2] tag."
302
- msgstr "Tabellens namn kommer att visas ovanför tabellen med etiketten [h2]."
303
-
304
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:713
305
- msgid "Print Table Description"
306
- msgstr "Visa tabellbeskrivning"
307
-
308
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:714
309
- msgid "The Table Description will be written under the table."
310
- msgstr "Tabellens beskrivning kommer att visas under tabellen."
311
-
312
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:717
313
- msgid "Use Tablesorter"
314
- msgstr "Använd Tablesorter"
315
-
316
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:718
317
- msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. <small>Attention: You must have Tablesorter enabled on the \"Plugin Options\" page and the option \"Use Table Headline\" has to be enabled above for this to work!</small>"
318
- msgstr "Du kan använda tabellsortering med hjälp av <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-tillägget</a>. <small>OBS!: Tablesorter måste aktiveras \"Inställningssidan\" och \"Använd tabellrubrik\" ovan måste vara förbockat för att detta ska fungera!</small>"
319
-
320
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:727
321
- msgid "Update Changes"
322
- msgstr "Spara ändringar"
323
-
324
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:728
325
- msgid "Save and go back"
326
- msgstr "Spara och tillbaka"
327
-
328
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:731
329
- msgid "Cancel"
330
- msgstr "Ångra"
331
-
332
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:733
333
- msgid "Other actions"
334
- msgstr "Andra åtgärder"
335
-
336
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:736
337
- msgid "Delete Table"
338
- msgstr "Radera tabell"
339
-
340
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:737
341
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:919
342
- msgid "Export Table"
343
- msgstr "Exportera tabell"
344
-
345
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:748
346
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1096
347
- msgid "Import a Table"
348
- msgstr "Importera Tabell"
349
-
350
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:752
351
- msgid "You may import a table from existing data here.<br/>It may be a CSV, XML oder HTML file. It needs a certrain structure though. Please consult the documentation."
352
- msgstr "Du kan importera en tabell från existerande data här.<br/>Det kan vara en CSV-, XML- eller HTML-fil. De måste dock vara strukturerade på ett visst sätt. Var vänlig kolla dokumentationen."
353
-
354
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:759
355
- msgid "Select Import Format"
356
- msgstr "Välj importformat"
357
-
358
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:769
359
- msgid "Used Delimiter"
360
- msgstr "Välj avgränsare"
361
-
362
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:776
363
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:910
364
- msgid "<small>(Only needed for CSV export.)</small>"
365
- msgstr "<small>(Behövs endast för CSV export.)</small>"
366
-
367
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:779
368
- msgid "Select File with Table to Import"
369
- msgstr "Välj tabellfil som ska importeras"
370
-
371
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:783
372
- msgid "- or -"
373
- msgstr "- eller -"
374
-
375
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:784
376
- msgid "(upload will be preferred over pasting)"
377
- msgstr "(ladda upp föredras framför klistra in)"
378
-
379
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:787
380
- msgid "Paste data with Table to Import"
381
- msgstr "Klistra in data med tabell som ska importeras"
382
-
383
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:793
384
- msgid "Import Table"
385
- msgstr "Importera tabell"
386
-
387
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:806
388
- msgid "Import from original WP-Table plugin"
389
- msgstr "Importera från det gamla WP-Table tillägget"
390
-
391
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:839
392
- msgid "Do you really want to import this table from the WP-Table plugin?"
393
- msgstr "Vill du verkligen importera denna tabell från WP-Table-tillägget?"
394
-
395
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:839
396
- msgid "Import"
397
- msgstr "Importera"
398
-
399
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:847
400
- msgid "WP-Table by Alex Rabe seems to be installed, but no tables were found."
401
- msgstr "WP-Table av Alex Rabe verkar vara installerat men inga tabeller kunde hittas."
402
-
403
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:866
404
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1097
405
- msgid "Export a Table"
406
- msgstr "Exportera en tabell"
407
-
408
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:870
409
- msgid "You may export a table here. Just select the table, your desired export format and a delimiter (needed for CSV only).<br/>You may opt to download the export file. Otherwise it will be shown on this page."
410
- msgstr "Du kan exportera en tabell här. Välj en tabell, önskat exportformat och avgränsare (endast för CSV).<br/>Du kan välja att ladda ner exportfilen annars kommer den att visas på denna sida."
411
-
412
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:878
413
- msgid "Select Table to Export"
414
- msgstr "Välj tabell som ska exporteras"
415
-
416
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:893
417
- msgid "Select Export Format"
418
- msgstr "Välj exportformat"
419
-
420
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:903
421
- msgid "Select Delimiter to use"
422
- msgstr "Välj avgränsare"
423
-
424
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:913
425
- msgid "Download file"
426
- msgstr "Ladda ner"
427
-
428
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:914
429
- msgid "Yes, I want to download the export file."
430
- msgstr "Ja, jag vill ladda ner exportfilen."
431
-
432
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:939
433
- msgid "General Plugin Options"
434
- msgstr "Allmänna inställningar"
435
-
436
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:943
437
- msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
438
- msgstr "Detta är globala inställningar.<br/>De kommer påverka alla tabeller eller tilläggets generella beteende."
439
-
440
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:950
441
- msgid "Frontend Options"
442
- msgstr "Gränssnittsinställningar"
443
-
444
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:954
445
- msgid "Enable Tablesorter-JavaScript?"
446
- msgstr "Aktivera Tablesorter-JavaScript?"
447
-
448
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:955
449
- msgid "Yes, enable <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> to be used to make table sortable (can be changed for every table separatly)."
450
- msgstr "Ja, aktivera <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> för att möjliggöra tabellsortering (kan ställas in separat för varje tabell)."
451
-
452
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:958
453
- msgid "Use global CSS-file?"
454
- msgstr "Använd global CSS-fil?"
455
-
456
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:959
457
- msgid "Yes, load a CSS-file, which contains basic styles for the table. The CSS-files must be located in subfolder \"css\". To change styles, please copy the file \"example-style.css\", edit the copied file with your style changes and place it in the same folder. You may then select it below. "
458
- msgstr "Ja, ladda CSS-filen som innehåller grundläggande stil för tabellen. CSS-filer måste ligga i undermappen \"css\". För att byta stil var vänlig kopiera filen \"example-style.css\", ändra och spara den kopierade filen i samma mapp. Du kan sen välja den nedan."
459
-
460
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:963
461
- msgid "Select CSS file to use"
462
- msgstr "Välj CSS-fil som ska användas"
463
-
464
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:975
465
- msgid "(These files are located in the subfolder \"css\" of the plugin folder.)"
466
- msgstr "(Dessa filer finns i undermappen \"css\")"
467
-
468
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:982
469
- msgid "Admin Options"
470
- msgstr "Admininställningar"
471
-
472
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:986
473
- msgid "Uninstall Plugin upon Deactivation?"
474
- msgstr "Avinstallera tillägget vid inaktivering?"
475
-
476
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:987
477
- msgid "Yes, uninstall everything when plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page! (It does not influence the \"Manually Uninstall Plugin\" button below!)"
478
- msgstr "Ja, avinstallera allt när tillägget inaktiveras. OBS! Du bör endast markera denna ruta precis innan du inaktiverar tillägget via WordPress tilläggssida! (Detta påverkar inte \"Avinstallera manuellt\"-knappen nedan!)"
479
-
480
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:997
481
- msgid "Save Options"
482
- msgstr "Spara"
483
-
484
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1003
485
- msgid "Manually Uninstall Plugin"
486
- msgstr "Avinstallera tillägget manuellt"
487
-
488
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1005
489
- msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported.<br/> Be very careful with this and only click the button if you know what you are doing!"
490
- msgstr "Du kan avinstallera tillägget här. Detta <strong>kommer att radera</strong> alla tabeller, data, inställningar, etc. som hör till tillägget, inklusive alla tabeller som lagts till eller importerats.<br/>Var väldigt försiktig med detta och klicka på knappen bara om du vet vad du gör!"
491
-
492
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1008
493
- msgid "Do you really want to uninstall the plugin and delete ALL data?"
494
- msgstr "Vill du verkligen avinstallera tillägget och radera ALL data?"
495
-
496
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1008
497
- msgid "Are you really sure?"
498
- msgstr "Är du riktigt säker?"
499
-
500
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1008
501
- msgid "Uninstall Plugin WP-Table Reloaded"
502
- msgstr "Avinstallera WP-Table Reloaded"
503
-
504
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1018
505
- msgid "Information about the plugin"
506
- msgstr "Information om tillägget"
507
-
508
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1024
509
- msgid "Plugin Purpose"
510
- msgstr "Tilläggets ändamål"
511
-
512
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1026
513
- msgid "This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode."
514
- msgstr "Med detta tillägg kan du skapa och hantera tabeller i adminpanelen i WordPress. Du kan sedan visa dem i dina inlägg, på dina sidor eller i textwidgets genom att använda en snabbkod."
515
-
516
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1031
517
- msgid "Usage"
518
- msgstr "Användning"
519
-
520
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1033
521
- msgid "At first you should add or import a table. Then edit your data and select the options you want. To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them. You may then style your table via CSS. Every table has the CSS-class \"wp-table-reloaded\". A table also has the class \"wp-table-reloaded-&lt;table-id&gt;\". You can also use the classes \"column-&lt;number&gt;\" and \"row-&lt;number&gt;\" to style rows and columns individually. Use this to style columns width and text alignment."
522
- msgstr "Du bör först lägga till eller importera en tabell. Sedan kan du redigera data och välja inställningar som du vill. Använd snabbkoden [table id=&lt;table-id&gt;] för att inkludera tabellen på dina sidor, i dina inlägg eller i textwidgets. Du kan bestämma stil med hjälp av CSS. Varje tabell har CSS-class \"wp-table-reloaded\". En specifik tabell har även CSS-class \"wp-table-reloaded-&lt;table-id&gt;\". Du kan även använda CSS-class \"column-&lt;number&gt;\" och \"row-&lt;number&gt;\" för att ställa in stil för rader och kolumner individuellt. Använd detta för att ställa in kolumnernas bredd och textjustering."
523
-
524
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1037
525
- msgid "More Information and Documentation"
526
- msgstr "Mer Information och Dokumentation"
527
-
528
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1039
529
- msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. A documentation and certain support and help request possibilities will be available soon."
530
- msgstr "Mer information hittar du på <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">tilläggets hemsida</a> eller på denna sida i <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. Dokumentation, viss support och möjlighet att få hjälp kommer att finnas tillgängligt inom kort."
531
-
532
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1044
533
- msgid "Author and Licence"
534
- msgstr "Författare och Licens"
535
-
536
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1046
537
- msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. It is licenced as Free Software under GPL 2."
538
- msgstr "Detta tillägg är skrivet av <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. Det är licensierat som Gratis Programvara under GPL 2."
539
-
540
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1046
541
- msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">donating</a> or rating it at the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. Thanks!"
542
- msgstr "Om du gillar detta tillägg var vänlig <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">donera</a> eller betygsätt det på <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. Tack!"
543
-
544
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1051
545
- msgid "Credits and Thanks"
546
- msgstr "Medverkande och Tack"
547
-
548
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1054
549
- msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original WP-Table plugin,"
550
- msgstr "Tack till <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> skaparen av originaltillägget WP-Table, "
551
-
552
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1055
553
- msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
554
- msgstr "Christian Bach för <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-tillägget</a>,"
555
-
556
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1056
557
- msgid "the submitters of translations: <br/>&middot; Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)<br/>&middot; Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
558
- msgstr "inlämnade översättningar: <br/>&middot; Turkiska (tack till <a href=\"http://www.wpuzmani.com/\">Semih</a>)<br/>&middot; Svenska (tack till <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
559
-
560
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1057
561
- msgid "and all contributors, supporters, reviewers and users of the plugin!"
562
- msgstr "och alla bidragsgivare, anhängare, recensenter och användare av tillägget!"
563
-
564
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1094
565
- msgid "List Tables"
566
- msgstr "Visa tabeller"
567
-
568
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1099
569
- msgid "Plugin Options"
570
- msgstr "Inställningar"
571
-
572
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1100
573
- msgid "About the Plugin"
574
- msgstr "Om tillägget"
575
-
576
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/wp-table-reloaded-admin.php:1108
577
- msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a>. A documentation and certain support and help request possibilities will be available soon."
578
- msgstr "Mer information hittar du på <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">tilläggets hemsida</a>. Dokumentation och viss support och möjlighet att få hjälp finns tillgängligt inom kort."
579
-
580
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/php/wp-table-reloaded-export.class.php:30
581
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/php/wp-table-reloaded-import.class.php:41
582
- msgid "CSV - Character-Separated Values"
583
- msgstr "CSV - Character-Separated Values"
584
-
585
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/php/wp-table-reloaded-export.class.php:31
586
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/php/wp-table-reloaded-import.class.php:42
587
- msgid "HTML - Hypertext Markup Language"
588
- msgstr "HTML - Hypertext Markup Language"
589
-
590
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/php/wp-table-reloaded-export.class.php:32
591
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/php/wp-table-reloaded-import.class.php:43
592
- msgid "XML - eXtended Markup Language"
593
- msgstr "XML - eXtended Markup Language"
594
-
595
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/php/wp-table-reloaded-export.class.php:35
596
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/php/wp-table-reloaded-import.class.php:36
597
- msgid "; (semicolon)"
598
- msgstr "; (semikolon)"
599
-
600
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/php/wp-table-reloaded-export.class.php:36
601
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/php/wp-table-reloaded-import.class.php:37
602
- msgid ", (comma)"
603
- msgstr ", (komma)"
604
-
605
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/php/wp-table-reloaded-export.class.php:37
606
- #: C:\Users\ZuperZed\Desktop\wp-table-reloaded\wp-table-reloaded/php/wp-table-reloaded-import.class.php:38
607
- msgid ": (colon)"
608
- msgstr ": (kolon)"
609
-
610
- #~ msgid "and"
611
- #~ msgstr "och"
612
- #~ msgid "You may export a table here."
613
- #~ msgstr "Du kan exportera en tabell här."
614
- #~ msgid ""
615
- #~ "Yes, load the global CSS-file wp-table-reloaded.css, which contains basic "
616
- #~ "styles and graphics for the Tablesorter. (File \"global-frontend-style.css"
617
- #~ "\" in subfolder \"css\")"
618
- #~ msgstr ""
619
- #~ "Ja, ladda den globala CSS-filen wp-table-reloaded.css, som innehåller "
620
- #~ "grundläggande stil och grafik för Tablesorter. (Filen \"global-frontend-"
621
- #~ "style.css\" i undermappen \"css\")"
622
- #~ msgid "The Table could not be exported due to a wrong export format."
623
- #~ msgstr "Tabellen kunde inte exporteras på grund av fel exportformat."
624
- #~ msgid "Enter Table Name|Default Table Name"
625
- #~ msgstr "Tabellnamn|Default Table Name"
626
- #~ msgid "Enter Description|Default Table Description"
627
- #~ msgstr "Beskrivning|Default Table Description"
628
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP Table Reloaded (sv_SE)\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-04-27 19:27+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: ZuperZed <info@zuperzed.se>\n"
8
+ "Language-Team: www.zuperzed.se <info@zuperzed.se>\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;__\n"
13
+ "X-Poedit-Language: Swedish\n"
14
+ "X-Poedit-Country: SWEDEN\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ ": \n"
17
+ "X-Poedit-SearchPath-0: D:\\Hemsida\\ZuperZed.se\\wp-content\\plugins\\wp-table-reloaded\n"
18
+
19
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:137
20
+ #, php-format
21
+ msgid "Table \"%s\" added successfully."
22
+ msgstr "Tabellen \"%s\" tillagd framgångsrikt."
23
+
24
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:160
25
+ msgid "Table edited successfully."
26
+ msgstr "Tabell redigerad framgångsrikt."
27
+
28
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:176
29
+ msgid "Rows swapped successfully."
30
+ msgstr "Rader bytte plats framgångsrikt."
31
+
32
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:195
33
+ msgid "Columns swapped successfully."
34
+ msgstr "Kolumner bytte plats framgångsrikt."
35
+
36
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:224
37
+ msgid "Copy of"
38
+ msgstr "Kopia av"
39
+
40
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:229
41
+ #, php-format
42
+ msgid "Table \"%s\" copied successfully."
43
+ msgstr "Tabellen \"%s\" kopierades framgångsrikt."
44
+
45
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:248
46
+ #, php-format
47
+ msgid "Table \"%s\" deleted successfully."
48
+ msgstr "Tabellen \"%s\" raderades framgångsrikt."
49
+
50
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:258
51
+ msgid "Row deleted successfully."
52
+ msgstr "Rad raderades framgångsrikt."
53
+
54
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:271
55
+ msgid "Column deleted successfully."
56
+ msgstr "Kolumn raderades framgångsrikt."
57
+
58
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:276
59
+ msgid "Delete failed."
60
+ msgstr "Radering misslyckades."
61
+
62
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:300
63
+ msgid "Row inserted successfully."
64
+ msgstr "Infoga rad lyckades."
65
+
66
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:309
67
+ msgid "Column inserted successfully."
68
+ msgstr "Infoga kolumn lyckades."
69
+
70
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:312
71
+ msgid "Insert failed."
72
+ msgstr "Infogning misslyckades."
73
+
74
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:340
75
+ msgid "Imported Table"
76
+ msgstr "Importerad Tabell"
77
+
78
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:341
79
+ msgid "via form"
80
+ msgstr "via formulär"
81
+
82
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:358
83
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:379
84
+ msgid "Table imported successfully."
85
+ msgstr "Tabellimport lyckades."
86
+
87
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:361
88
+ msgid "Table could not be imported."
89
+ msgstr "Tabellen kunde inte importeras."
90
+
91
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:405
92
+ #, php-format
93
+ msgid "Table \"%s\" exported successfully."
94
+ msgstr "Tabellen \"%s\" exporterades framgångsrikt."
95
+
96
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:433
97
+ msgid "Options saved successfully."
98
+ msgstr "Inställningar sparades framgångsrikt."
99
+
100
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:451
101
+ msgid "WP-Table Reloaded"
102
+ msgstr "WP-Table Reloaded"
103
+
104
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:452
105
+ msgid "Plugin deactivated successfully."
106
+ msgstr "Tillägget inaktiverades framgångsrikt."
107
+
108
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:453
109
+ msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
110
+ msgstr "Alla tabeller, data och inställningar raderades. Du kan nu ta bort tilläggets undermapp från din Wordpress pluginmapp."
111
+
112
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:471
113
+ msgid "List of Tables"
114
+ msgstr "Tabellista"
115
+
116
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:474
117
+ msgid "This is a list of all available tables. You may add, edit, copy or delete tables here."
118
+ msgstr "Detta är en lista över alla tillgängliga tabeller. Du kan lägga till, redigera, kopiera eller radera tabeller här."
119
+
120
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:475
121
+ msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode: <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
122
+ msgstr "Om du vill visa en tabell på en sida, i ett inlägg eller i en textwidget, använd snabbkoden: <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
123
+
124
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:483
125
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:887
126
+ msgid "ID"
127
+ msgstr "ID"
128
+
129
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:484
130
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:544
131
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:594
132
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:888
133
+ msgid "Table Name"
134
+ msgstr "Tabellnamn"
135
+
136
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:485
137
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:548
138
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:598
139
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:889
140
+ msgid "Description"
141
+ msgstr "Beskrivning"
142
+
143
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:486
144
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:890
145
+ msgid "Action"
146
+ msgstr "Åtgärd"
147
+
148
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:511
149
+ msgid "Edit"
150
+ msgstr "Redigera"
151
+
152
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:512
153
+ msgid "Do you want to copy this table?"
154
+ msgstr "Vill du kopiera denna tabell?"
155
+
156
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:512
157
+ msgid "Copy"
158
+ msgstr "Kopiera"
159
+
160
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:513
161
+ msgid "Export"
162
+ msgstr "Exportera"
163
+
164
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:514
165
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:807
166
+ msgid "The complete table and all content will be erased. Do you really want to delete it?"
167
+ msgstr "Tabellen och dess inehåll kommer raderas. Vill du verkligen radera den?"
168
+
169
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:514
170
+ msgid "Delete"
171
+ msgstr "Radera"
172
+
173
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:524
174
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1001
175
+ msgid "No tables found."
176
+ msgstr "Inga tabeller hittades."
177
+
178
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:524
179
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1001
180
+ #, php-format
181
+ msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
182
+ msgstr "Du kan <a href=\"%s\">lägga till</a> eller <a href=\"%s\">importera</a> en!"
183
+
184
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:532
185
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1171
186
+ msgid "Add new Table"
187
+ msgstr "Lägg till tabell"
188
+
189
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:536
190
+ msgid "You can add a new table here. Just enter it's name, a description (optional) and the number of rows and columns.<br/>You may add, insert or delete rows and columns later."
191
+ msgstr "Du kan lägga till en tabell här. Ange tabellens namn, en beskrivning (valfritt) och antal rader och kolumner.<br/>Du kan även lägga till, infoga eller radera rader och kolumner senare."
192
+
193
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:545
194
+ msgid "Enter Table Name"
195
+ msgstr "Ange tabellnamn"
196
+
197
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:549
198
+ msgid "Enter Description"
199
+ msgstr "Ange beskrivning"
200
+
201
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:552
202
+ msgid "Number of Rows"
203
+ msgstr "Antal rader"
204
+
205
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:556
206
+ msgid "Number of Columns"
207
+ msgstr "Antal kolumner"
208
+
209
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:563
210
+ msgid "Add Table"
211
+ msgstr "Lägg till tabell"
212
+
213
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:580
214
+ #, php-format
215
+ msgid "Edit Table \"%s\""
216
+ msgstr "Redigera tabellen \"%s\""
217
+
218
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:584
219
+ msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
220
+ msgstr "Du kan redigera tabellens innehåll här. Det är även möjligt att lägga till eller radera kolumner och rader."
221
+
222
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:585
223
+ #, php-format
224
+ msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
225
+ msgstr "Om du vill visa en tabell på dina sidor, i inlägg eller i textwidgets, använd denna snabbkod: <strong>[table id=%s /]</strong>"
226
+
227
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:590
228
+ msgid "Table Information"
229
+ msgstr "Tabellinformation"
230
+
231
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:606
232
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:798
233
+ msgid "Update Changes"
234
+ msgstr "Spara ändringar"
235
+
236
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:607
237
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:799
238
+ msgid "Save and go back"
239
+ msgstr "Spara och gå tillbaka"
240
+
241
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:610
242
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:802
243
+ msgid "Cancel"
244
+ msgstr "Ångra"
245
+
246
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:616
247
+ msgid "Table Contents"
248
+ msgstr "Tabellinnehåll"
249
+
250
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:644
251
+ msgid "Insert Row"
252
+ msgstr "Infoga rad"
253
+
254
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:646
255
+ msgid "Do you really want to delete this row?"
256
+ msgstr "Vill du verkligen radera denna rad?"
257
+
258
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:646
259
+ msgid "Delete Row"
260
+ msgstr "Radera rad"
261
+
262
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:656
263
+ msgid "Insert Column"
264
+ msgstr "Infoga kolumn"
265
+
266
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:658
267
+ msgid "Do you really want to delete this column?"
268
+ msgstr "Vill du verkligen radera denna kolumn?"
269
+
270
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:658
271
+ msgid "Delete Column"
272
+ msgstr "Radera kolumn"
273
+
274
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:663
275
+ msgid "Add Row"
276
+ msgstr "Lägg till rad"
277
+
278
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:663
279
+ msgid "Add Column"
280
+ msgstr "Lägg till kolumn"
281
+
282
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:672
283
+ msgid "Data Manipulation"
284
+ msgstr "Datahantering"
285
+
286
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:687
287
+ #, php-format
288
+ msgid "Swap rows %s and %s"
289
+ msgstr "Byt plats på rader %s och %s"
290
+
291
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:690
292
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:710
293
+ msgid "Swap"
294
+ msgstr "Byt plats"
295
+
296
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:707
297
+ #, php-format
298
+ msgid "Swap columns %s and %s"
299
+ msgstr "Byt plats på kolumner %s och %s"
300
+
301
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:714
302
+ msgid "Insert Link"
303
+ msgstr "Infoga Länk"
304
+
305
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:714
306
+ msgid "Insert Image"
307
+ msgstr "Infoga Bild"
308
+
309
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:732
310
+ msgid "URL of link to insert"
311
+ msgstr "URL till länken som ska infogas"
312
+
313
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:734
314
+ msgid "Text of link"
315
+ msgstr "Länkens text"
316
+
317
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:737
318
+ msgid "To insert the following link into a cell, just click the cell after closing this dialog."
319
+ msgstr "För att infoga följande länk i en cell, klicka bara på cellen efter att denna ruta har stängts."
320
+
321
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:746
322
+ msgid "URL of image to insert"
323
+ msgstr "URL till bilden som ska infogas"
324
+
325
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:748
326
+ msgid "\"alt\" text of the image"
327
+ msgstr "\"alt\" bildens text"
328
+
329
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:751
330
+ msgid "To insert the following image into a cell, just click the cell after closing this dialog."
331
+ msgstr "För att infoga foljande bild i en cell, klicka bara på cellen efter att denna ruta har stängts."
332
+
333
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:767
334
+ msgid "Table Settings"
335
+ msgstr "Tabellinställningar"
336
+
337
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:769
338
+ msgid "These settings will only be used for this table."
339
+ msgstr "Dessa inställningar kommer endast användas för denna tabell."
340
+
341
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:772
342
+ msgid "Alternating row colors"
343
+ msgstr "Växlande radfärg"
344
+
345
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:773
346
+ msgid "Every second row will have an alternating background color."
347
+ msgstr "Varannan rad kommer att ha en alternativ bakgrundsfärg."
348
+
349
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:776
350
+ msgid "Use Table Headline"
351
+ msgstr "Använd tabellrubrik"
352
+
353
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:777
354
+ msgid "The first row of your table will use the [th] tag."
355
+ msgstr "Första raden i din tabell kommer använda etiketten [th]."
356
+
357
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:780
358
+ msgid "Print Table Name"
359
+ msgstr "Visa tabellnamn"
360
+
361
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:781
362
+ msgid "The Table Name will be written above the table in a [h2] tag."
363
+ msgstr "Tabellens namn kommer att visas ovanför tabellen med etiketten [h2]."
364
+
365
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:784
366
+ msgid "Print Table Description"
367
+ msgstr "Visa tabellbeskrivning"
368
+
369
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:785
370
+ msgid "The Table Description will be written under the table."
371
+ msgstr "Tabellens beskrivning kommer att visas under tabellen."
372
+
373
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:788
374
+ msgid "Use Tablesorter"
375
+ msgstr "Använd Tablesorter"
376
+
377
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:789
378
+ msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. <small>Attention: You must have Tablesorter enabled on the \"Plugin Options\" page and the option \"Use Table Headline\" has to be enabled above for this to work!</small>"
379
+ msgstr "Du kan använda tabellsortering med hjälp av <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-tillägget</a>. <small>OBS!: Tablesorter måste aktiveras på \"Inställningssidan\" och \"Använd tabellrubrik\" ovan måste vara förbockat för att detta ska fungera!</small>"
380
+
381
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:804
382
+ msgid "Other actions"
383
+ msgstr "Andra åtgärder"
384
+
385
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:807
386
+ msgid "Delete Table"
387
+ msgstr "Radera tabell"
388
+
389
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:808
390
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:990
391
+ msgid "Export Table"
392
+ msgstr "Exportera tabell"
393
+
394
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:819
395
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1172
396
+ msgid "Import a Table"
397
+ msgstr "Importera tabell"
398
+
399
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:823
400
+ msgid "You may import a table from existing data here.<br/>It may be a CSV, XML or HTML file. It needs a certain structure though. Please consult the documentation."
401
+ msgstr "Du kan importera en tabell från existerande data här.<br/>Det kan vara en CSV, XML eller HTML-fil. Den måste dock vara strukturerad på ett visst sätt. Var vänlig kolla dokumentationen."
402
+
403
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:830
404
+ msgid "Select Import Format"
405
+ msgstr "Välj importformat"
406
+
407
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:840
408
+ msgid "Used Delimiter"
409
+ msgstr "Välj avgränsare"
410
+
411
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:847
412
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:981
413
+ msgid "<small>(Only needed for CSV export.)</small>"
414
+ msgstr "<small>(Behövs endast för CSV export.)</small>"
415
+
416
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:850
417
+ msgid "Select File with Table to Import"
418
+ msgstr "Välj tabellfil som ska importeras"
419
+
420
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:854
421
+ msgid "- or -"
422
+ msgstr "- eller -"
423
+
424
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:855
425
+ msgid "(upload will be preferred over pasting)"
426
+ msgstr "(ladda upp föredras framför klistra in)"
427
+
428
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:858
429
+ msgid "Paste data with Table to Import"
430
+ msgstr "Klistra in data med tabell som ska importeras"
431
+
432
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:864
433
+ msgid "Import Table"
434
+ msgstr "Importera tabell"
435
+
436
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:877
437
+ msgid "Import from original wp-Table plugin"
438
+ msgstr "Importera från originalet wp-Table"
439
+
440
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:910
441
+ msgid "Do you really want to import this table from the wp-Table plugin?"
442
+ msgstr "Vill du verkligen importera denna tabell från wp-Table tillägget?"
443
+
444
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:910
445
+ msgid "Import"
446
+ msgstr "Importera"
447
+
448
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:918
449
+ msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
450
+ msgstr "wp-Table av Alex Rabe verkar vara installerat men inga tabeller kunde hittas."
451
+
452
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:937
453
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1173
454
+ msgid "Export a Table"
455
+ msgstr "Exportera tabell"
456
+
457
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:941
458
+ msgid "You may export a table here. Just select the table, your desired export format and a delimiter (needed for CSV only).<br/>You may opt to download the export file. Otherwise it will be shown on this page."
459
+ msgstr "Du kan exportera en tabell här. Välj en tabell, önskat exportformat och avgränsare (endast för CSV).<br/>Du kan välja att ladda ner exportfilen annars kommer den att visas på denna sida."
460
+
461
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:949
462
+ msgid "Select Table to Export"
463
+ msgstr "Välj tabell som ska exporteras"
464
+
465
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:964
466
+ msgid "Select Export Format"
467
+ msgstr "Välj exportformat"
468
+
469
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:974
470
+ msgid "Select Delimiter to use"
471
+ msgstr "Välj avgränsare"
472
+
473
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:984
474
+ msgid "Download file"
475
+ msgstr "Ladda ner"
476
+
477
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:985
478
+ msgid "Yes, I want to download the export file."
479
+ msgstr "Ja, jag vill ladda ner exportfilen."
480
+
481
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1010
482
+ msgid "General Plugin Options"
483
+ msgstr "Allmänna inställningar"
484
+
485
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1014
486
+ msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
487
+ msgstr "Detta är globala inställningar.<br/>De kommer påverka alla tabeller eller tilläggets generella beteende."
488
+
489
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1021
490
+ msgid "Frontend Options"
491
+ msgstr "Gränssnittsalternativ"
492
+
493
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1025
494
+ msgid "Enable Tablesorter-JavaScript?"
495
+ msgstr "Aktivera Tablesorter-JavaScript?"
496
+
497
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1026
498
+ msgid "Yes, enable <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> to be used to make table sortable (can be changed for every table separatly)."
499
+ msgstr "Ja, aktivera <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> för att möjliggöra tabellsortering (kan ställas in separat för varje tabell)."
500
+
501
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1029
502
+ msgid "Add custom CSS?"
503
+ msgstr "Lägg till anpassad CSS?"
504
+
505
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1030
506
+ #, php-format
507
+ msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag. (If you do not want this, just add your CSS styling to your theme's \"style.css\" <small>(located at %s)</small>.) (See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin website</a> for examples.)"
508
+ msgstr "Ja, inkludera och ladda följande CSS-sträng på min hemsida inuti [style]-HTML-tag. (Om du inte vill göra detta, lägg till din CSS-kod till temats \"style.css\" <small>(som finns i %s)</small>.) (Se <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">tilläggets hemsida</a> för exempel.)"
509
+
510
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1034
511
+ msgid "Enter custom CSS"
512
+ msgstr "Ange anpassad CSS"
513
+
514
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1042
515
+ msgid "Admin Options"
516
+ msgstr "Adminalternativ"
517
+
518
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1046
519
+ msgid "Uninstall Plugin upon Deactivation?"
520
+ msgstr "Avinstallera tillägget vid inaktivering?"
521
+
522
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1047
523
+ msgid "Yes, uninstall everything when plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page! (It does not influence the \"Manually Uninstall Plugin\" button below!)"
524
+ msgstr "Ja, avinstallera allt när tillägget inaktiveras. OBS! Du bör endast markera denna ruta precis innan du inaktiverar tillägget via WordPress tilläggssida! (Detta påverkar inte \"Avinstallera manuellt\"-knappen nedan!)"
525
+
526
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1057
527
+ msgid "Save Options"
528
+ msgstr "Spara"
529
+
530
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1067
531
+ msgid "Do you really want to activate this? You should only do that right before uninstallation!"
532
+ msgstr "Vill du verkligen aktivera det här? Du bör endast göra detta precis innan avinstallation!"
533
+
534
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1073
535
+ msgid "Manually Uninstall Plugin"
536
+ msgstr "Avinstallera tillägget manuellt"
537
+
538
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1075
539
+ msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported.<br/> Be very careful with this and only click the button if you know what you are doing!"
540
+ msgstr "Du kan avinstallera tillägget här. Detta <strong>kommer att radera</strong> alla tabeller, data, inställningar, etc. som hör till tillägget, inklusive alla tabeller som lagts till eller importerats.<br/>Var väldigt försiktig med detta och klicka på knappen bara om du vet vad du gör!"
541
+
542
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1078
543
+ msgid "Do you really want to uninstall the plugin and delete ALL data?"
544
+ msgstr "Vill du verkligen avinstallera tillägget och radera ALL data?"
545
+
546
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1078
547
+ msgid "Are you really sure?"
548
+ msgstr "Är du riktigt säker?"
549
+
550
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1078
551
+ msgid "Uninstall Plugin WP-Table Reloaded"
552
+ msgstr "Avinstallera WP-Table Reloaded"
553
+
554
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1088
555
+ msgid "Information about the plugin"
556
+ msgstr "Information om tillägget"
557
+
558
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1094
559
+ msgid "Plugin Purpose"
560
+ msgstr "Tilläggets ändamål"
561
+
562
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1096
563
+ msgid "This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode."
564
+ msgstr "Med detta tillägg kan du skapa och hantera tabeller i adminpanelen i WordPress. Du kan sedan visa dem i dina inlägg, på dina sidor eller i textwidgets genom att använda en snabbkod."
565
+
566
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1101
567
+ msgid "Usage"
568
+ msgstr "Användning"
569
+
570
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1103
571
+ msgid "At first you should add or import a table. Then edit your data and select the options you want. To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them. You may then style your table via CSS. Every table has the CSS-class \"wp-table-reloaded\". A table also has the class \"wp-table-reloaded-&lt;table-id&gt;\". You can also use the classes \"column-&lt;number&gt;\" and \"row-&lt;number&gt;\" to style rows and columns individually. Use this to style columns width and text alignment."
572
+ msgstr "Du bör först lägga till eller importera en tabell. Sedan kan du redigera data och välja inställningar som du vill. Använd snabbkoden [table id=&lt;table-id&gt;] för att inkludera tabellen på dina sidor, i dina inlägg eller i textwidgets. Du kan bestämma stil med hjälp av CSS. Varje tabell har CSS-class \"wp-table-reloaded\". En specifik tabell har även CSS-class \"wp-table-reloaded-&lt;table-id&gt;\". Du kan även använda CSS-class \"column-&lt;number&gt;\" och \"row-&lt;number&gt;\" för att ställa in stil för rader och kolumner individuellt. Använd detta för att ställa in kolumnernas bredd och textjustering."
573
+
574
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1107
575
+ msgid "More Information and Documentation"
576
+ msgstr "Mer Information och Dokumentation"
577
+
578
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1109
579
+ msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. A documentation and certain support and help request possibilities will be available soon."
580
+ msgstr "Mer information hittar du på <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">tilläggets hemsida</a> eller på denna sida i <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. Dokumentation, viss support och möjlighet att få hjälp kommer att finnas tillgängligt inom kort."
581
+
582
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1114
583
+ msgid "Author and Licence"
584
+ msgstr "Författare och Licens"
585
+
586
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1116
587
+ msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. It is licenced as Free Software under GPL 2."
588
+ msgstr "Detta tillägg är skrivet av <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. Det är licensierat som Gratis Programvara under GPL 2."
589
+
590
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1116
591
+ msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">donating</a> or rating it at the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. Thanks!"
592
+ msgstr "Om du gillar detta tillägg var vänlig <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">donera</a> eller betygsätt det på <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. Tack!"
593
+
594
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1121
595
+ msgid "Credits and Thanks"
596
+ msgstr "Medverkande och Tack"
597
+
598
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1124
599
+ msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
600
+ msgstr "Tack till <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> skaparen av originaltillägget wp-Table,"
601
+
602
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1125
603
+ msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
604
+ msgstr "Christian Bach för <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-tillägget</a>,"
605
+
606
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1126
607
+ msgid "the submitters of translations:"
608
+ msgstr "inskickade översättningar:"
609
+
610
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1127
611
+ msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
612
+ msgstr "Albanska (tack till <a href=\"http://www.romeolab.com/\">Romeo</a>)"
613
+
614
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1128
615
+ msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
616
+ msgstr "Franska (tack till <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
617
+
618
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1129
619
+ msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
620
+ msgstr "Ryska (tack till <a href=\"http://wp-skins.info/\">Truper</a>)"
621
+
622
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1130
623
+ msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>)"
624
+ msgstr "Spanska (tack till <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>)"
625
+
626
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1131
627
+ msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
628
+ msgstr "Svenska (tack till <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
629
+
630
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1132
631
+ msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
632
+ msgstr "Turkiska (tack till <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
633
+
634
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1133
635
+ msgid "and all contributors, supporters, reviewers and users of the plugin!"
636
+ msgstr "och alla bidragsgivare, anhängare, recensenter och användare av tillägget!"
637
+
638
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1170
639
+ msgid "List Tables"
640
+ msgstr "Visa tabeller"
641
+
642
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1175
643
+ msgid "Plugin Options"
644
+ msgstr "Inställningar"
645
+
646
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1176
647
+ msgid "About the Plugin"
648
+ msgstr "Om tillägget"
649
+
650
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1184
651
+ msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a>. A documentation and certain support and help request possibilities will be available soon."
652
+ msgstr "Mer information hittar du på <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">tilläggets hemsida</a>. Dokumentation och viss support och möjlighet att få hjälp finns tillgängligt inom kort."
653
+
654
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:30
655
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-import.class.php:41
656
+ msgid "CSV - Character-Separated Values"
657
+ msgstr "CSV - Character-Separated Values"
658
+
659
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:31
660
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-import.class.php:42
661
+ msgid "HTML - Hypertext Markup Language"
662
+ msgstr "HTML - Hypertext Markup Language"
663
+
664
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:32
665
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-import.class.php:43
666
+ msgid "XML - eXtended Markup Language"
667
+ msgstr "XML - eXtended Markup Language"
668
+
669
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:35
670
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-import.class.php:36
671
+ msgid "; (semicolon)"
672
+ msgstr "; (semikolon)"
673
+
674
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:36
675
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-import.class.php:37
676
+ msgid ", (comma)"
677
+ msgstr ", (komma)"
678
+
679
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:37
680
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-import.class.php:38
681
+ msgid ": (colon)"
682
+ msgstr ": (kolon)"
683
+
684
+ #~ msgid "Use global CSS-file?"
685
+ #~ msgstr "Använd global CSS-fil?"
686
+ #~ msgid ""
687
+ #~ "Yes, load a CSS-file, which contains basic styles for the table. The CSS-"
688
+ #~ "files must be located in subfolder \"css\". To change styles, please copy "
689
+ #~ "the file \"example-style.css\", edit the copied file with your style "
690
+ #~ "changes and place it in the same folder. You may then select it below. "
691
+ #~ msgstr ""
692
+ #~ "Ja, ladda CSS-filen som innehåller grundläggande stil för tabellen. CSS-"
693
+ #~ "filer måste ligga i undermappen \"css\". För att byta stil var vänlig "
694
+ #~ "kopiera filen \"example-style.css\", ändra och spara den kopierade filen "
695
+ #~ "i samma mapp. Du kan sen välja den nedan."
696
+ #~ msgid "Select CSS file to use"
697
+ #~ msgstr "Välj CSS-fil som ska användas"
698
+ #~ msgid ""
699
+ #~ "(These files are located in the subfolder \"css\" of the plugin folder.)"
700
+ #~ msgstr "(Dessa filer finns i undermappen \"css\")"
701
+ #~ msgid ""
702
+ #~ "the submitters of translations: <br/>&middot; Turkish (thanks to <a href="
703
+ #~ "\"http://www.wpuzmani.com/\">Semih</a>)<br/>&middot; Swedish (thanks to "
704
+ #~ "<a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
705
+ #~ msgstr ""
706
+ #~ "översättningar: <br/>&middot; Turkiska (tack till <a href=\"http://www."
707
+ #~ "wpuzmani.com/\">Semih</a>)<br/>&middot; Svenska (tack till <a href="
708
+ #~ "\"http://www.zuperzed.se/\">ZuperZed</a>)"
709
+ #~ msgid "and"
710
+ #~ msgstr "och"
711
+ #~ msgid "You may export a table here."
712
+ #~ msgstr "Du kan exportera en tabell här."
713
+ #~ msgid ""
714
+ #~ "Yes, load the global CSS-file wp-table-reloaded.css, which contains basic "
715
+ #~ "styles and graphics for the Tablesorter. (File \"global-frontend-style.css"
716
+ #~ "\" in subfolder \"css\")"
717
+ #~ msgstr ""
718
+ #~ "Ja, ladda den globala CSS-filen wp-table-reloaded.css, som innehåller "
719
+ #~ "grundläggande stil och grafik för Tablesorter. (Filen \"global-frontend-"
720
+ #~ "style.css\" i undermappen \"css\")"
721
+ #~ msgid "The Table could not be exported due to a wrong export format."
722
+ #~ msgstr "Tabellen kunde inte exporteras på grund av fel exportformat."
723
+ #~ msgid "Enter Table Name|Default Table Name"
724
+ #~ msgstr "Tabellnamn|Default Table Name"
725
+ #~ msgid "Enter Description|Default Table Description"
726
+ #~ msgstr "Beskrivning|Default Table Description"
727
+
languages/wp-table-reloaded.pot CHANGED
@@ -8,7 +8,7 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: PACKAGE VERSION\n"
10
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
11
- "POT-Creation-Date: 2009-04-21 21:24+0000\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"
@@ -122,231 +122,295 @@ msgstr ""
122
  msgid "Table \"%s\" exported successfully."
123
  msgstr ""
124
 
125
- #: wp-table-reloaded-admin.php:426
126
  msgid "Options saved successfully."
127
  msgstr ""
128
 
129
  #. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
130
  #. Plugin Name of an extension
131
- #: wp-table-reloaded-admin.php:444
132
  msgid "WP-Table Reloaded"
133
  msgstr ""
134
 
135
- #: wp-table-reloaded-admin.php:445
136
  msgid "Plugin deactivated successfully."
137
  msgstr ""
138
 
139
- #: wp-table-reloaded-admin.php:446
140
  msgid ""
141
  "All tables, data and options were deleted. You may now remove the plugin's "
142
  "subfolder from your WordPress plugin folder."
143
  msgstr ""
144
 
145
- #: wp-table-reloaded-admin.php:464
146
  msgid "List of Tables"
147
  msgstr ""
148
 
149
- #: wp-table-reloaded-admin.php:467
150
  msgid ""
151
  "This is a list of all available tables. You may add, edit, copy or delete "
152
  "tables here."
153
  msgstr ""
154
 
155
- #: wp-table-reloaded-admin.php:468
156
  msgid ""
157
  "If you want to show a table in your pages, posts or text-widgets, use the "
158
  "shortcode: <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
159
  msgstr ""
160
 
161
- #: wp-table-reloaded-admin.php:476 wp-table-reloaded-admin.php:816
162
  msgid "ID"
163
  msgstr ""
164
 
165
- #: wp-table-reloaded-admin.php:477 wp-table-reloaded-admin.php:537
166
- #: wp-table-reloaded-admin.php:587 wp-table-reloaded-admin.php:817
167
  msgid "Table Name"
168
  msgstr ""
169
 
170
- #: wp-table-reloaded-admin.php:478 wp-table-reloaded-admin.php:541
171
- #: wp-table-reloaded-admin.php:591 wp-table-reloaded-admin.php:818
172
  msgid "Description"
173
  msgstr ""
174
 
175
- #: wp-table-reloaded-admin.php:479 wp-table-reloaded-admin.php:819
176
  msgid "Action"
177
  msgstr ""
178
 
179
- #: wp-table-reloaded-admin.php:504
180
  msgid "Edit"
181
  msgstr ""
182
 
183
- #: wp-table-reloaded-admin.php:505
184
  msgid "Do you want to copy this table?"
185
  msgstr ""
186
 
187
- #: wp-table-reloaded-admin.php:505
188
  msgid "Copy"
189
  msgstr ""
190
 
191
- #: wp-table-reloaded-admin.php:506
192
  msgid "Export"
193
  msgstr ""
194
 
195
- #: wp-table-reloaded-admin.php:507 wp-table-reloaded-admin.php:736
196
  msgid ""
197
  "The complete table and all content will be erased. Do you really want to "
198
  "delete it?"
199
  msgstr ""
200
 
201
- #: wp-table-reloaded-admin.php:507
202
  msgid "Delete"
203
  msgstr ""
204
 
205
- #: wp-table-reloaded-admin.php:517 wp-table-reloaded-admin.php:930
206
  msgid "No tables found."
207
  msgstr ""
208
 
209
- #: wp-table-reloaded-admin.php:517 wp-table-reloaded-admin.php:930
210
  #, php-format
211
  msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
212
  msgstr ""
213
 
214
- #: wp-table-reloaded-admin.php:525 wp-table-reloaded-admin.php:1095
215
  msgid "Add new Table"
216
  msgstr ""
217
 
218
- #: wp-table-reloaded-admin.php:529
219
  msgid ""
220
  "You can add a new table here. Just enter it's name, a description (optional) "
221
  "and the number of rows and columns.<br/>You may add, insert or delete rows "
222
  "and columns later."
223
  msgstr ""
224
 
225
- #: wp-table-reloaded-admin.php:538
226
  msgid "Enter Table Name"
227
  msgstr ""
228
 
229
- #: wp-table-reloaded-admin.php:542
230
  msgid "Enter Description"
231
  msgstr ""
232
 
233
- #: wp-table-reloaded-admin.php:545
234
  msgid "Number of Rows"
235
  msgstr ""
236
 
237
- #: wp-table-reloaded-admin.php:549
238
  msgid "Number of Columns"
239
  msgstr ""
240
 
241
- #: wp-table-reloaded-admin.php:556
242
  msgid "Add Table"
243
  msgstr ""
244
 
245
- #: wp-table-reloaded-admin.php:577
 
 
 
 
 
246
  msgid ""
247
  "You may edit the content of the table here. It is also possible to add or "
248
  "delete columns and rows."
249
  msgstr ""
250
 
251
- #: wp-table-reloaded-admin.php:583
 
 
 
 
 
 
 
252
  msgid "Table Information"
253
  msgstr ""
254
 
255
- #: wp-table-reloaded-admin.php:600
 
 
 
 
 
 
 
 
 
 
 
 
256
  msgid "Table Contents"
257
  msgstr ""
258
 
259
- #: wp-table-reloaded-admin.php:628
260
  msgid "Insert Row"
261
  msgstr ""
262
 
263
- #: wp-table-reloaded-admin.php:630
264
  msgid "Do you really want to delete this row?"
265
  msgstr ""
266
 
267
- #: wp-table-reloaded-admin.php:630
268
  msgid "Delete Row"
269
  msgstr ""
270
 
271
- #: wp-table-reloaded-admin.php:640
272
  msgid "Insert Column"
273
  msgstr ""
274
 
275
- #: wp-table-reloaded-admin.php:642
276
  msgid "Do you really want to delete this column?"
277
  msgstr ""
278
 
279
- #: wp-table-reloaded-admin.php:642
280
  msgid "Delete Column"
281
  msgstr ""
282
 
283
- #: wp-table-reloaded-admin.php:647
284
  msgid "Add Row"
285
  msgstr ""
286
 
287
- #: wp-table-reloaded-admin.php:647
288
  msgid "Add Column"
289
  msgstr ""
290
 
291
- #: wp-table-reloaded-admin.php:668
 
 
 
 
292
  #, php-format
293
  msgid "Swap rows %s and %s"
294
  msgstr ""
295
 
296
- #: wp-table-reloaded-admin.php:671 wp-table-reloaded-admin.php:691
297
  msgid "Swap"
298
  msgstr ""
299
 
300
- #: wp-table-reloaded-admin.php:688
301
  #, php-format
302
  msgid "Swap columns %s and %s"
303
  msgstr ""
304
 
305
- #: wp-table-reloaded-admin.php:696
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
306
  msgid "Table Settings"
307
  msgstr ""
308
 
309
- #: wp-table-reloaded-admin.php:698
310
  msgid "These settings will only be used for this table."
311
  msgstr ""
312
 
313
- #: wp-table-reloaded-admin.php:701
314
  msgid "Alternating row colors"
315
  msgstr ""
316
 
317
- #: wp-table-reloaded-admin.php:702
318
  msgid "Every second row will have an alternating background color."
319
  msgstr ""
320
 
321
- #: wp-table-reloaded-admin.php:705
322
  msgid "Use Table Headline"
323
  msgstr ""
324
 
325
- #: wp-table-reloaded-admin.php:706
326
  msgid "The first row of your table will use the [th] tag."
327
  msgstr ""
328
 
329
- #: wp-table-reloaded-admin.php:709
330
  msgid "Print Table Name"
331
  msgstr ""
332
 
333
- #: wp-table-reloaded-admin.php:710
334
  msgid "The Table Name will be written above the table in a [h2] tag."
335
  msgstr ""
336
 
337
- #: wp-table-reloaded-admin.php:713
338
  msgid "Print Table Description"
339
  msgstr ""
340
 
341
- #: wp-table-reloaded-admin.php:714
342
  msgid "The Table Description will be written under the table."
343
  msgstr ""
344
 
345
- #: wp-table-reloaded-admin.php:717
346
  msgid "Use Tablesorter"
347
  msgstr ""
348
 
349
- #: wp-table-reloaded-admin.php:718
350
  msgid ""
351
  "You may sort a table using the <a href=\"http://www.tablesorter.com/"
352
  "\">Tablesorter-jQuery-Plugin</a>. <small>Attention: You must have "
@@ -354,175 +418,160 @@ msgid ""
354
  "Table Headline\" has to be enabled above for this to work!</small>"
355
  msgstr ""
356
 
357
- #: wp-table-reloaded-admin.php:727
358
- msgid "Update Changes"
359
- msgstr ""
360
-
361
- #: wp-table-reloaded-admin.php:728
362
- msgid "Save and go back"
363
- msgstr ""
364
-
365
- #: wp-table-reloaded-admin.php:731
366
- msgid "Cancel"
367
- msgstr ""
368
-
369
- #: wp-table-reloaded-admin.php:733
370
  msgid "Other actions"
371
  msgstr ""
372
 
373
- #: wp-table-reloaded-admin.php:736
374
  msgid "Delete Table"
375
  msgstr ""
376
 
377
- #: wp-table-reloaded-admin.php:737 wp-table-reloaded-admin.php:919
378
  msgid "Export Table"
379
  msgstr ""
380
 
381
- #: wp-table-reloaded-admin.php:748 wp-table-reloaded-admin.php:1096
382
  msgid "Import a Table"
383
  msgstr ""
384
 
385
- #: wp-table-reloaded-admin.php:752
386
  msgid ""
387
- "You may import a table from existing data here.<br/>It may be a CSV, XML "
388
- "oder HTML file. It needs a certrain structure though. Please consult the "
389
  "documentation."
390
  msgstr ""
391
 
392
- #: wp-table-reloaded-admin.php:759
393
  msgid "Select Import Format"
394
  msgstr ""
395
 
396
- #: wp-table-reloaded-admin.php:769
397
  msgid "Used Delimiter"
398
  msgstr ""
399
 
400
- #: wp-table-reloaded-admin.php:776 wp-table-reloaded-admin.php:910
401
  msgid "<small>(Only needed for CSV export.)</small>"
402
  msgstr ""
403
 
404
- #: wp-table-reloaded-admin.php:779
405
  msgid "Select File with Table to Import"
406
  msgstr ""
407
 
408
- #: wp-table-reloaded-admin.php:783
409
  msgid "- or -"
410
  msgstr ""
411
 
412
- #: wp-table-reloaded-admin.php:784
413
  msgid "(upload will be preferred over pasting)"
414
  msgstr ""
415
 
416
- #: wp-table-reloaded-admin.php:787
417
  msgid "Paste data with Table to Import"
418
  msgstr ""
419
 
420
- #: wp-table-reloaded-admin.php:793
421
  msgid "Import Table"
422
  msgstr ""
423
 
424
- #: wp-table-reloaded-admin.php:806
425
- msgid "Import from original WP-Table plugin"
426
  msgstr ""
427
 
428
- #: wp-table-reloaded-admin.php:839
429
- msgid "Do you really want to import this table from the WP-Table plugin?"
430
  msgstr ""
431
 
432
- #: wp-table-reloaded-admin.php:839
433
  msgid "Import"
434
  msgstr ""
435
 
436
- #: wp-table-reloaded-admin.php:847
437
- msgid "WP-Table by Alex Rabe seems to be installed, but no tables were found."
438
  msgstr ""
439
 
440
- #: wp-table-reloaded-admin.php:866 wp-table-reloaded-admin.php:1097
441
  msgid "Export a Table"
442
  msgstr ""
443
 
444
- #: wp-table-reloaded-admin.php:870
445
  msgid ""
446
  "You may export a table here. Just select the table, your desired export "
447
  "format and a delimiter (needed for CSV only).<br/>You may opt to download "
448
  "the export file. Otherwise it will be shown on this page."
449
  msgstr ""
450
 
451
- #: wp-table-reloaded-admin.php:878
452
  msgid "Select Table to Export"
453
  msgstr ""
454
 
455
- #: wp-table-reloaded-admin.php:893
456
  msgid "Select Export Format"
457
  msgstr ""
458
 
459
- #: wp-table-reloaded-admin.php:903
460
  msgid "Select Delimiter to use"
461
  msgstr ""
462
 
463
- #: wp-table-reloaded-admin.php:913
464
  msgid "Download file"
465
  msgstr ""
466
 
467
- #: wp-table-reloaded-admin.php:914
468
  msgid "Yes, I want to download the export file."
469
  msgstr ""
470
 
471
- #: wp-table-reloaded-admin.php:939
472
  msgid "General Plugin Options"
473
  msgstr ""
474
 
475
- #: wp-table-reloaded-admin.php:943
476
  msgid ""
477
  "You may change these global options.<br/>They will effect all tables or the "
478
  "general plugin behaviour."
479
  msgstr ""
480
 
481
- #: wp-table-reloaded-admin.php:950
482
  msgid "Frontend Options"
483
  msgstr ""
484
 
485
- #: wp-table-reloaded-admin.php:954
486
  msgid "Enable Tablesorter-JavaScript?"
487
  msgstr ""
488
 
489
- #: wp-table-reloaded-admin.php:955
490
  msgid ""
491
  "Yes, enable <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-"
492
  "Plugin</a> to be used to make table sortable (can be changed for every table "
493
  "separatly)."
494
  msgstr ""
495
 
496
- #: wp-table-reloaded-admin.php:958
497
- msgid "Use global CSS-file?"
498
  msgstr ""
499
 
500
- #: wp-table-reloaded-admin.php:959
 
501
  msgid ""
502
- "Yes, load a CSS-file, which contains basic styles for the table. The CSS-"
503
- "files must be located in subfolder \"css\". To change styles, please copy "
504
- "the file \"example-style.css\", edit the copied file with your style changes "
505
- "and place it in the same folder. You may then select it below. "
 
506
  msgstr ""
507
 
508
- #: wp-table-reloaded-admin.php:963
509
- msgid "Select CSS file to use"
510
  msgstr ""
511
 
512
- #: wp-table-reloaded-admin.php:975
513
- msgid ""
514
- "(These files are located in the subfolder \"css\" of the plugin folder.)"
515
- msgstr ""
516
-
517
- #: wp-table-reloaded-admin.php:982
518
  msgid "Admin Options"
519
  msgstr ""
520
 
521
- #: wp-table-reloaded-admin.php:986
522
  msgid "Uninstall Plugin upon Deactivation?"
523
  msgstr ""
524
 
525
- #: wp-table-reloaded-admin.php:987
526
  msgid ""
527
  "Yes, uninstall everything when plugin is deactivated. Attention: You should "
528
  "only enable this checkbox directly before deactivating the plugin from the "
@@ -530,15 +579,21 @@ msgid ""
530
  "Plugin\" button below!)"
531
  msgstr ""
532
 
533
- #: wp-table-reloaded-admin.php:997
534
  msgid "Save Options"
535
  msgstr ""
536
 
537
- #: wp-table-reloaded-admin.php:1003
 
 
 
 
 
 
538
  msgid "Manually Uninstall Plugin"
539
  msgstr ""
540
 
541
- #: wp-table-reloaded-admin.php:1005
542
  msgid ""
543
  "You may uninstall the plugin here. This <strong>will delete</strong> all "
544
  "tables, data, options, etc., that belong to the plugin, including all tables "
@@ -546,38 +601,38 @@ msgid ""
546
  "button if you know what you are doing!"
547
  msgstr ""
548
 
549
- #: wp-table-reloaded-admin.php:1008
550
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
551
  msgstr ""
552
 
553
- #: wp-table-reloaded-admin.php:1008
554
  msgid "Are you really sure?"
555
  msgstr ""
556
 
557
- #: wp-table-reloaded-admin.php:1008
558
  msgid "Uninstall Plugin WP-Table Reloaded"
559
  msgstr ""
560
 
561
- #: wp-table-reloaded-admin.php:1018
562
  msgid "Information about the plugin"
563
  msgstr ""
564
 
565
- #: wp-table-reloaded-admin.php:1024
566
  msgid "Plugin Purpose"
567
  msgstr ""
568
 
569
- #: wp-table-reloaded-admin.php:1026
570
  msgid ""
571
  "This plugin allows you to create and manage tables in the admin-area of "
572
  "WordPress. You can then show them in your posts, on your pages or in text "
573
  "widgets by using a shortcode."
574
  msgstr ""
575
 
576
- #: wp-table-reloaded-admin.php:1031
577
  msgid "Usage"
578
  msgstr ""
579
 
580
- #: wp-table-reloaded-admin.php:1033
581
  msgid ""
582
  "At first you should add or import a table. Then edit your data and select "
583
  "the options you want. To include the table into your posts, pages or text "
@@ -589,11 +644,11 @@ msgid ""
589
  "columns width and text alignment."
590
  msgstr ""
591
 
592
- #: wp-table-reloaded-admin.php:1037
593
  msgid "More Information and Documentation"
594
  msgstr ""
595
 
596
- #: wp-table-reloaded-admin.php:1039
597
  msgid ""
598
  "More information can be found on the <a href=\"http://tobias.baethge.com/"
599
  "wordpress-plugins/wp-table-reloaded/\">plugin's website</a> or on its page "
@@ -602,17 +657,17 @@ msgid ""
602
  "help request possibilities will be available soon."
603
  msgstr ""
604
 
605
- #: wp-table-reloaded-admin.php:1044
606
  msgid "Author and Licence"
607
  msgstr ""
608
 
609
- #: wp-table-reloaded-admin.php:1046
610
  msgid ""
611
  "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias "
612
  "B&auml;thge</a>. It is licenced as Free Software under GPL 2."
613
  msgstr ""
614
 
615
- #: wp-table-reloaded-admin.php:1046
616
  msgid ""
617
  "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/"
618
  "wordpress-plugins/donate/\">donating</a> or rating it at the <a href="
@@ -620,46 +675,69 @@ msgid ""
620
  "Directory</a>. Thanks!"
621
  msgstr ""
622
 
623
- #: wp-table-reloaded-admin.php:1051
624
  msgid "Credits and Thanks"
625
  msgstr ""
626
 
627
- #: wp-table-reloaded-admin.php:1054
628
  msgid ""
629
  "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for "
630
- "the original WP-Table plugin,"
631
  msgstr ""
632
 
633
- #: wp-table-reloaded-admin.php:1055
634
  msgid ""
635
  "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter-"
636
  "jQuery-Plugin</a>,"
637
  msgstr ""
638
 
639
- #: wp-table-reloaded-admin.php:1056
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
640
  msgid ""
641
- "the submitters of translations: <br/>&middot; Turkish (thanks to <a href="
642
- "\"http://www.wpuzmani.com/\">Semih</a>)<br/>&middot; Swedish (thanks to <a "
643
- "href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
644
  msgstr ""
645
 
646
- #: wp-table-reloaded-admin.php:1057
 
 
 
 
 
 
 
 
647
  msgid "and all contributors, supporters, reviewers and users of the plugin!"
648
  msgstr ""
649
 
650
- #: wp-table-reloaded-admin.php:1094
651
  msgid "List Tables"
652
  msgstr ""
653
 
654
- #: wp-table-reloaded-admin.php:1099
655
  msgid "Plugin Options"
656
  msgstr ""
657
 
658
- #: wp-table-reloaded-admin.php:1100
659
  msgid "About the Plugin"
660
  msgstr ""
661
 
662
- #: wp-table-reloaded-admin.php:1108
663
  msgid ""
664
  "More information can be found on the <a href=\"http://tobias.baethge.com/"
665
  "wordpress-plugins/wp-table-reloaded/\">plugin's website</a>. A documentation "
@@ -667,7 +745,7 @@ msgid ""
667
  msgstr ""
668
 
669
  #. Plugin URI of an extension
670
- msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/"
671
  msgstr ""
672
 
673
  #. Description of an extension
@@ -675,7 +753,7 @@ msgid ""
675
  "This plugin allows you to create and manage tables in the admin-area of "
676
  "WordPress. You can then show them in your posts, on your pages or in text "
677
  "widgets by using a shortcode. The plugin is a completely rewritten and "
678
- "extended version of Alex Rabe's \"WP-Table\" and uses the state-of-the-art "
679
  "WordPress techniques which makes it faster and lighter than the original "
680
  "plugin."
681
  msgstr ""
8
  msgstr ""
9
  "Project-Id-Version: PACKAGE VERSION\n"
10
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
11
+ "POT-Creation-Date: 2009-04-27 16:30+0000\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"
122
  msgid "Table \"%s\" exported successfully."
123
  msgstr ""
124
 
125
+ #: wp-table-reloaded-admin.php:433
126
  msgid "Options saved successfully."
127
  msgstr ""
128
 
129
  #. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
130
  #. Plugin Name of an extension
131
+ #: wp-table-reloaded-admin.php:451
132
  msgid "WP-Table Reloaded"
133
  msgstr ""
134
 
135
+ #: wp-table-reloaded-admin.php:452
136
  msgid "Plugin deactivated successfully."
137
  msgstr ""
138
 
139
+ #: wp-table-reloaded-admin.php:453
140
  msgid ""
141
  "All tables, data and options were deleted. You may now remove the plugin's "
142
  "subfolder from your WordPress plugin folder."
143
  msgstr ""
144
 
145
+ #: wp-table-reloaded-admin.php:471
146
  msgid "List of Tables"
147
  msgstr ""
148
 
149
+ #: wp-table-reloaded-admin.php:474
150
  msgid ""
151
  "This is a list of all available tables. You may add, edit, copy or delete "
152
  "tables here."
153
  msgstr ""
154
 
155
+ #: wp-table-reloaded-admin.php:475
156
  msgid ""
157
  "If you want to show a table in your pages, posts or text-widgets, use the "
158
  "shortcode: <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
159
  msgstr ""
160
 
161
+ #: wp-table-reloaded-admin.php:483 wp-table-reloaded-admin.php:887
162
  msgid "ID"
163
  msgstr ""
164
 
165
+ #: wp-table-reloaded-admin.php:484 wp-table-reloaded-admin.php:544
166
+ #: wp-table-reloaded-admin.php:594 wp-table-reloaded-admin.php:888
167
  msgid "Table Name"
168
  msgstr ""
169
 
170
+ #: wp-table-reloaded-admin.php:485 wp-table-reloaded-admin.php:548
171
+ #: wp-table-reloaded-admin.php:598 wp-table-reloaded-admin.php:889
172
  msgid "Description"
173
  msgstr ""
174
 
175
+ #: wp-table-reloaded-admin.php:486 wp-table-reloaded-admin.php:890
176
  msgid "Action"
177
  msgstr ""
178
 
179
+ #: wp-table-reloaded-admin.php:511
180
  msgid "Edit"
181
  msgstr ""
182
 
183
+ #: wp-table-reloaded-admin.php:512
184
  msgid "Do you want to copy this table?"
185
  msgstr ""
186
 
187
+ #: wp-table-reloaded-admin.php:512
188
  msgid "Copy"
189
  msgstr ""
190
 
191
+ #: wp-table-reloaded-admin.php:513
192
  msgid "Export"
193
  msgstr ""
194
 
195
+ #: wp-table-reloaded-admin.php:514 wp-table-reloaded-admin.php:807
196
  msgid ""
197
  "The complete table and all content will be erased. Do you really want to "
198
  "delete it?"
199
  msgstr ""
200
 
201
+ #: wp-table-reloaded-admin.php:514
202
  msgid "Delete"
203
  msgstr ""
204
 
205
+ #: wp-table-reloaded-admin.php:524 wp-table-reloaded-admin.php:1001
206
  msgid "No tables found."
207
  msgstr ""
208
 
209
+ #: wp-table-reloaded-admin.php:524 wp-table-reloaded-admin.php:1001
210
  #, php-format
211
  msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
212
  msgstr ""
213
 
214
+ #: wp-table-reloaded-admin.php:532 wp-table-reloaded-admin.php:1171
215
  msgid "Add new Table"
216
  msgstr ""
217
 
218
+ #: wp-table-reloaded-admin.php:536
219
  msgid ""
220
  "You can add a new table here. Just enter it's name, a description (optional) "
221
  "and the number of rows and columns.<br/>You may add, insert or delete rows "
222
  "and columns later."
223
  msgstr ""
224
 
225
+ #: wp-table-reloaded-admin.php:545
226
  msgid "Enter Table Name"
227
  msgstr ""
228
 
229
+ #: wp-table-reloaded-admin.php:549
230
  msgid "Enter Description"
231
  msgstr ""
232
 
233
+ #: wp-table-reloaded-admin.php:552
234
  msgid "Number of Rows"
235
  msgstr ""
236
 
237
+ #: wp-table-reloaded-admin.php:556
238
  msgid "Number of Columns"
239
  msgstr ""
240
 
241
+ #: wp-table-reloaded-admin.php:563
242
  msgid "Add Table"
243
  msgstr ""
244
 
245
+ #: wp-table-reloaded-admin.php:580
246
+ #, php-format
247
+ msgid "Edit Table \"%s\""
248
+ msgstr ""
249
+
250
+ #: wp-table-reloaded-admin.php:584
251
  msgid ""
252
  "You may edit the content of the table here. It is also possible to add or "
253
  "delete columns and rows."
254
  msgstr ""
255
 
256
+ #: wp-table-reloaded-admin.php:585
257
+ #, php-format
258
+ msgid ""
259
+ "If you want to show a table in your pages, posts or text-widgets, use this "
260
+ "shortcode: <strong>[table id=%s /]</strong>"
261
+ msgstr ""
262
+
263
+ #: wp-table-reloaded-admin.php:590
264
  msgid "Table Information"
265
  msgstr ""
266
 
267
+ #: wp-table-reloaded-admin.php:606 wp-table-reloaded-admin.php:798
268
+ msgid "Update Changes"
269
+ msgstr ""
270
+
271
+ #: wp-table-reloaded-admin.php:607 wp-table-reloaded-admin.php:799
272
+ msgid "Save and go back"
273
+ msgstr ""
274
+
275
+ #: wp-table-reloaded-admin.php:610 wp-table-reloaded-admin.php:802
276
+ msgid "Cancel"
277
+ msgstr ""
278
+
279
+ #: wp-table-reloaded-admin.php:616
280
  msgid "Table Contents"
281
  msgstr ""
282
 
283
+ #: wp-table-reloaded-admin.php:644
284
  msgid "Insert Row"
285
  msgstr ""
286
 
287
+ #: wp-table-reloaded-admin.php:646
288
  msgid "Do you really want to delete this row?"
289
  msgstr ""
290
 
291
+ #: wp-table-reloaded-admin.php:646
292
  msgid "Delete Row"
293
  msgstr ""
294
 
295
+ #: wp-table-reloaded-admin.php:656
296
  msgid "Insert Column"
297
  msgstr ""
298
 
299
+ #: wp-table-reloaded-admin.php:658
300
  msgid "Do you really want to delete this column?"
301
  msgstr ""
302
 
303
+ #: wp-table-reloaded-admin.php:658
304
  msgid "Delete Column"
305
  msgstr ""
306
 
307
+ #: wp-table-reloaded-admin.php:663
308
  msgid "Add Row"
309
  msgstr ""
310
 
311
+ #: wp-table-reloaded-admin.php:663
312
  msgid "Add Column"
313
  msgstr ""
314
 
315
+ #: wp-table-reloaded-admin.php:672
316
+ msgid "Data Manipulation"
317
+ msgstr ""
318
+
319
+ #: wp-table-reloaded-admin.php:687
320
  #, php-format
321
  msgid "Swap rows %s and %s"
322
  msgstr ""
323
 
324
+ #: wp-table-reloaded-admin.php:690 wp-table-reloaded-admin.php:710
325
  msgid "Swap"
326
  msgstr ""
327
 
328
+ #: wp-table-reloaded-admin.php:707
329
  #, php-format
330
  msgid "Swap columns %s and %s"
331
  msgstr ""
332
 
333
+ #: wp-table-reloaded-admin.php:714
334
+ msgid "Insert Link"
335
+ msgstr ""
336
+
337
+ #: wp-table-reloaded-admin.php:714
338
+ msgid "Insert Image"
339
+ msgstr ""
340
+
341
+ #: wp-table-reloaded-admin.php:732
342
+ msgid "URL of link to insert"
343
+ msgstr ""
344
+
345
+ #: wp-table-reloaded-admin.php:734
346
+ msgid "Text of link"
347
+ msgstr ""
348
+
349
+ #: wp-table-reloaded-admin.php:737
350
+ msgid ""
351
+ "To insert the following link into a cell, just click the cell after closing "
352
+ "this dialog."
353
+ msgstr ""
354
+
355
+ #: wp-table-reloaded-admin.php:746
356
+ msgid "URL of image to insert"
357
+ msgstr ""
358
+
359
+ #: wp-table-reloaded-admin.php:748
360
+ msgid "\"alt\" text of the image"
361
+ msgstr ""
362
+
363
+ #: wp-table-reloaded-admin.php:751
364
+ msgid ""
365
+ "To insert the following image into a cell, just click the cell after closing "
366
+ "this dialog."
367
+ msgstr ""
368
+
369
+ #: wp-table-reloaded-admin.php:767
370
  msgid "Table Settings"
371
  msgstr ""
372
 
373
+ #: wp-table-reloaded-admin.php:769
374
  msgid "These settings will only be used for this table."
375
  msgstr ""
376
 
377
+ #: wp-table-reloaded-admin.php:772
378
  msgid "Alternating row colors"
379
  msgstr ""
380
 
381
+ #: wp-table-reloaded-admin.php:773
382
  msgid "Every second row will have an alternating background color."
383
  msgstr ""
384
 
385
+ #: wp-table-reloaded-admin.php:776
386
  msgid "Use Table Headline"
387
  msgstr ""
388
 
389
+ #: wp-table-reloaded-admin.php:777
390
  msgid "The first row of your table will use the [th] tag."
391
  msgstr ""
392
 
393
+ #: wp-table-reloaded-admin.php:780
394
  msgid "Print Table Name"
395
  msgstr ""
396
 
397
+ #: wp-table-reloaded-admin.php:781
398
  msgid "The Table Name will be written above the table in a [h2] tag."
399
  msgstr ""
400
 
401
+ #: wp-table-reloaded-admin.php:784
402
  msgid "Print Table Description"
403
  msgstr ""
404
 
405
+ #: wp-table-reloaded-admin.php:785
406
  msgid "The Table Description will be written under the table."
407
  msgstr ""
408
 
409
+ #: wp-table-reloaded-admin.php:788
410
  msgid "Use Tablesorter"
411
  msgstr ""
412
 
413
+ #: wp-table-reloaded-admin.php:789
414
  msgid ""
415
  "You may sort a table using the <a href=\"http://www.tablesorter.com/"
416
  "\">Tablesorter-jQuery-Plugin</a>. <small>Attention: You must have "
418
  "Table Headline\" has to be enabled above for this to work!</small>"
419
  msgstr ""
420
 
421
+ #: wp-table-reloaded-admin.php:804
 
 
 
 
 
 
 
 
 
 
 
 
422
  msgid "Other actions"
423
  msgstr ""
424
 
425
+ #: wp-table-reloaded-admin.php:807
426
  msgid "Delete Table"
427
  msgstr ""
428
 
429
+ #: wp-table-reloaded-admin.php:808 wp-table-reloaded-admin.php:990
430
  msgid "Export Table"
431
  msgstr ""
432
 
433
+ #: wp-table-reloaded-admin.php:819 wp-table-reloaded-admin.php:1172
434
  msgid "Import a Table"
435
  msgstr ""
436
 
437
+ #: wp-table-reloaded-admin.php:823
438
  msgid ""
439
+ "You may import a table from existing data here.<br/>It may be a CSV, XML or "
440
+ "HTML file. It needs a certain structure though. Please consult the "
441
  "documentation."
442
  msgstr ""
443
 
444
+ #: wp-table-reloaded-admin.php:830
445
  msgid "Select Import Format"
446
  msgstr ""
447
 
448
+ #: wp-table-reloaded-admin.php:840
449
  msgid "Used Delimiter"
450
  msgstr ""
451
 
452
+ #: wp-table-reloaded-admin.php:847 wp-table-reloaded-admin.php:981
453
  msgid "<small>(Only needed for CSV export.)</small>"
454
  msgstr ""
455
 
456
+ #: wp-table-reloaded-admin.php:850
457
  msgid "Select File with Table to Import"
458
  msgstr ""
459
 
460
+ #: wp-table-reloaded-admin.php:854
461
  msgid "- or -"
462
  msgstr ""
463
 
464
+ #: wp-table-reloaded-admin.php:855
465
  msgid "(upload will be preferred over pasting)"
466
  msgstr ""
467
 
468
+ #: wp-table-reloaded-admin.php:858
469
  msgid "Paste data with Table to Import"
470
  msgstr ""
471
 
472
+ #: wp-table-reloaded-admin.php:864
473
  msgid "Import Table"
474
  msgstr ""
475
 
476
+ #: wp-table-reloaded-admin.php:877
477
+ msgid "Import from original wp-Table plugin"
478
  msgstr ""
479
 
480
+ #: wp-table-reloaded-admin.php:910
481
+ msgid "Do you really want to import this table from the wp-Table plugin?"
482
  msgstr ""
483
 
484
+ #: wp-table-reloaded-admin.php:910
485
  msgid "Import"
486
  msgstr ""
487
 
488
+ #: wp-table-reloaded-admin.php:918
489
+ msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
490
  msgstr ""
491
 
492
+ #: wp-table-reloaded-admin.php:937 wp-table-reloaded-admin.php:1173
493
  msgid "Export a Table"
494
  msgstr ""
495
 
496
+ #: wp-table-reloaded-admin.php:941
497
  msgid ""
498
  "You may export a table here. Just select the table, your desired export "
499
  "format and a delimiter (needed for CSV only).<br/>You may opt to download "
500
  "the export file. Otherwise it will be shown on this page."
501
  msgstr ""
502
 
503
+ #: wp-table-reloaded-admin.php:949
504
  msgid "Select Table to Export"
505
  msgstr ""
506
 
507
+ #: wp-table-reloaded-admin.php:964
508
  msgid "Select Export Format"
509
  msgstr ""
510
 
511
+ #: wp-table-reloaded-admin.php:974
512
  msgid "Select Delimiter to use"
513
  msgstr ""
514
 
515
+ #: wp-table-reloaded-admin.php:984
516
  msgid "Download file"
517
  msgstr ""
518
 
519
+ #: wp-table-reloaded-admin.php:985
520
  msgid "Yes, I want to download the export file."
521
  msgstr ""
522
 
523
+ #: wp-table-reloaded-admin.php:1010
524
  msgid "General Plugin Options"
525
  msgstr ""
526
 
527
+ #: wp-table-reloaded-admin.php:1014
528
  msgid ""
529
  "You may change these global options.<br/>They will effect all tables or the "
530
  "general plugin behaviour."
531
  msgstr ""
532
 
533
+ #: wp-table-reloaded-admin.php:1021
534
  msgid "Frontend Options"
535
  msgstr ""
536
 
537
+ #: wp-table-reloaded-admin.php:1025
538
  msgid "Enable Tablesorter-JavaScript?"
539
  msgstr ""
540
 
541
+ #: wp-table-reloaded-admin.php:1026
542
  msgid ""
543
  "Yes, enable <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-"
544
  "Plugin</a> to be used to make table sortable (can be changed for every table "
545
  "separatly)."
546
  msgstr ""
547
 
548
+ #: wp-table-reloaded-admin.php:1029
549
+ msgid "Add custom CSS?"
550
  msgstr ""
551
 
552
+ #: wp-table-reloaded-admin.php:1030
553
+ #, php-format
554
  msgid ""
555
+ "Yes, include and load the following CSS-snippet on my site inside a [style]-"
556
+ "HTML-tag. (If you do not want this, just add your CSS styling to your "
557
+ "theme's \"style.css\" <small>(located at %s)</small>.) (See the <a href="
558
+ "\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
559
+ "\">plugin website</a> for examples.)"
560
  msgstr ""
561
 
562
+ #: wp-table-reloaded-admin.php:1034
563
+ msgid "Enter custom CSS"
564
  msgstr ""
565
 
566
+ #: wp-table-reloaded-admin.php:1042
 
 
 
 
 
567
  msgid "Admin Options"
568
  msgstr ""
569
 
570
+ #: wp-table-reloaded-admin.php:1046
571
  msgid "Uninstall Plugin upon Deactivation?"
572
  msgstr ""
573
 
574
+ #: wp-table-reloaded-admin.php:1047
575
  msgid ""
576
  "Yes, uninstall everything when plugin is deactivated. Attention: You should "
577
  "only enable this checkbox directly before deactivating the plugin from the "
579
  "Plugin\" button below!)"
580
  msgstr ""
581
 
582
+ #: wp-table-reloaded-admin.php:1057
583
  msgid "Save Options"
584
  msgstr ""
585
 
586
+ #: wp-table-reloaded-admin.php:1067
587
+ msgid ""
588
+ "Do you really want to activate this? You should only do that right before "
589
+ "uninstallation!"
590
+ msgstr ""
591
+
592
+ #: wp-table-reloaded-admin.php:1073
593
  msgid "Manually Uninstall Plugin"
594
  msgstr ""
595
 
596
+ #: wp-table-reloaded-admin.php:1075
597
  msgid ""
598
  "You may uninstall the plugin here. This <strong>will delete</strong> all "
599
  "tables, data, options, etc., that belong to the plugin, including all tables "
601
  "button if you know what you are doing!"
602
  msgstr ""
603
 
604
+ #: wp-table-reloaded-admin.php:1078
605
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
606
  msgstr ""
607
 
608
+ #: wp-table-reloaded-admin.php:1078
609
  msgid "Are you really sure?"
610
  msgstr ""
611
 
612
+ #: wp-table-reloaded-admin.php:1078
613
  msgid "Uninstall Plugin WP-Table Reloaded"
614
  msgstr ""
615
 
616
+ #: wp-table-reloaded-admin.php:1088
617
  msgid "Information about the plugin"
618
  msgstr ""
619
 
620
+ #: wp-table-reloaded-admin.php:1094
621
  msgid "Plugin Purpose"
622
  msgstr ""
623
 
624
+ #: wp-table-reloaded-admin.php:1096
625
  msgid ""
626
  "This plugin allows you to create and manage tables in the admin-area of "
627
  "WordPress. You can then show them in your posts, on your pages or in text "
628
  "widgets by using a shortcode."
629
  msgstr ""
630
 
631
+ #: wp-table-reloaded-admin.php:1101
632
  msgid "Usage"
633
  msgstr ""
634
 
635
+ #: wp-table-reloaded-admin.php:1103
636
  msgid ""
637
  "At first you should add or import a table. Then edit your data and select "
638
  "the options you want. To include the table into your posts, pages or text "
644
  "columns width and text alignment."
645
  msgstr ""
646
 
647
+ #: wp-table-reloaded-admin.php:1107
648
  msgid "More Information and Documentation"
649
  msgstr ""
650
 
651
+ #: wp-table-reloaded-admin.php:1109
652
  msgid ""
653
  "More information can be found on the <a href=\"http://tobias.baethge.com/"
654
  "wordpress-plugins/wp-table-reloaded/\">plugin's website</a> or on its page "
657
  "help request possibilities will be available soon."
658
  msgstr ""
659
 
660
+ #: wp-table-reloaded-admin.php:1114
661
  msgid "Author and Licence"
662
  msgstr ""
663
 
664
+ #: wp-table-reloaded-admin.php:1116
665
  msgid ""
666
  "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias "
667
  "B&auml;thge</a>. It is licenced as Free Software under GPL 2."
668
  msgstr ""
669
 
670
+ #: wp-table-reloaded-admin.php:1116
671
  msgid ""
672
  "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/"
673
  "wordpress-plugins/donate/\">donating</a> or rating it at the <a href="
675
  "Directory</a>. Thanks!"
676
  msgstr ""
677
 
678
+ #: wp-table-reloaded-admin.php:1121
679
  msgid "Credits and Thanks"
680
  msgstr ""
681
 
682
+ #: wp-table-reloaded-admin.php:1124
683
  msgid ""
684
  "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for "
685
+ "the original wp-Table plugin,"
686
  msgstr ""
687
 
688
+ #: wp-table-reloaded-admin.php:1125
689
  msgid ""
690
  "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter-"
691
  "jQuery-Plugin</a>,"
692
  msgstr ""
693
 
694
+ #: wp-table-reloaded-admin.php:1126
695
+ msgid "the submitters of translations:"
696
+ msgstr ""
697
+
698
+ #: wp-table-reloaded-admin.php:1127
699
+ msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
700
+ msgstr ""
701
+
702
+ #: wp-table-reloaded-admin.php:1128
703
+ msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
704
+ msgstr ""
705
+
706
+ #: wp-table-reloaded-admin.php:1129
707
+ msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
708
+ msgstr ""
709
+
710
+ #: wp-table-reloaded-admin.php:1130
711
  msgid ""
712
+ "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro "
713
+ "Urrutia</a>)"
 
714
  msgstr ""
715
 
716
+ #: wp-table-reloaded-admin.php:1131
717
+ msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
718
+ msgstr ""
719
+
720
+ #: wp-table-reloaded-admin.php:1132
721
+ msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
722
+ msgstr ""
723
+
724
+ #: wp-table-reloaded-admin.php:1133
725
  msgid "and all contributors, supporters, reviewers and users of the plugin!"
726
  msgstr ""
727
 
728
+ #: wp-table-reloaded-admin.php:1170
729
  msgid "List Tables"
730
  msgstr ""
731
 
732
+ #: wp-table-reloaded-admin.php:1175
733
  msgid "Plugin Options"
734
  msgstr ""
735
 
736
+ #: wp-table-reloaded-admin.php:1176
737
  msgid "About the Plugin"
738
  msgstr ""
739
 
740
+ #: wp-table-reloaded-admin.php:1184
741
  msgid ""
742
  "More information can be found on the <a href=\"http://tobias.baethge.com/"
743
  "wordpress-plugins/wp-table-reloaded/\">plugin's website</a>. A documentation "
745
  msgstr ""
746
 
747
  #. Plugin URI of an extension
748
+ msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
749
  msgstr ""
750
 
751
  #. Description of an extension
753
  "This plugin allows you to create and manage tables in the admin-area of "
754
  "WordPress. You can then show them in your posts, on your pages or in text "
755
  "widgets by using a shortcode. The plugin is a completely rewritten and "
756
+ "extended version of Alex Rabe's \"wp-Table\" and uses the state-of-the-art "
757
  "WordPress techniques which makes it faster and lighter than the original "
758
  "plugin."
759
  msgstr ""
php/wp-table-reloaded-export.class.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /*
3
  File Name: WP-Table Reloaded - Export Class (see main file wp-table-reloaded.php)
4
- Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/
5
- Description: This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts or on your pages by using a shortcode. The plugin is greatly influenced by the plugin "WP-Table" by Alex Rabe, but was completely rewritten and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin.
6
  Version: 1.0
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
1
  <?php
2
  /*
3
  File Name: WP-Table Reloaded - Export Class (see main file wp-table-reloaded.php)
4
+ Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
5
+ Description: This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts or on your pages by using a shortcode. The plugin is greatly influenced by the plugin "wp-Table" by Alex Rabe, but was completely rewritten and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin.
6
  Version: 1.0
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
php/wp-table-reloaded-import.class.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /*
3
  File Name: WP-Table Reloaded - Import Class (see main file wp-table-reloaded.php)
4
- Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/
5
- Description: This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts or on your pages by using a shortcode. The plugin is greatly influenced by the plugin "WP-Table" by Alex Rabe, but was completely rewritten and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin.
6
  Version: 1.0
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
@@ -42,7 +42,7 @@ class WP_Table_Reloaded_Import {
42
  'html' => __( 'HTML - Hypertext Markup Language', WP_TABLE_RELOADED_TEXTDOMAIN ),
43
  'xml' => __( 'XML - eXtended Markup Language', WP_TABLE_RELOADED_TEXTDOMAIN )
44
  // don't have this show up in list, as handled in separate table
45
- //'wp_table' => _ _( 'WP-Table plugin database', WP_TABLE_RELOADED_TEXTDOMAIN )
46
  );
47
  }
48
 
@@ -181,7 +181,7 @@ class WP_Table_Reloaded_Import {
181
  $temp_data = array();
182
 
183
  if ( $wpdb->golftable == $wpdb->get_var( "show tables like '{$wpdb->golftable}'" ) && $wpdb->golfresult == $wpdb->get_var( "show tables like '{$wpdb->golfresult}'" ) ) {
184
- // WP-Table tables exist -> the plugin might be installed, so we might try an export
185
 
186
  // get information form database
187
  $current_table = $wpdb->get_row( "SELECT * FROM $wpdb->golftable WHERE table_aid = {$table_id}" );
@@ -192,7 +192,7 @@ class WP_Table_Reloaded_Import {
192
  $table['options']['first_row_th'] = ( 1 == $current_table->head_bold ) ? true : false;
193
  $table['options']['alternating_row_colors'] = ( 1 == $current_table->alternative ) ? true : false;
194
 
195
- // WP-Table's config, contains information about tablesort
196
  $wptable_config = get_option( 'wptable' );
197
  if ( false !== $wptable_config )
198
  $table['options']['use_tablesorter'] = ( 1 == $wptable_config['use_sorting'] ) ? true : false;
@@ -210,7 +210,7 @@ class WP_Table_Reloaded_Import {
210
  $table['data'] = $this->pad_array_to_max_cols( $temp_rows );
211
  $this->imported_table = $table;
212
  } else {
213
- // no tables from WP-Table found
214
  $this->imported_table = array();
215
  $this->error = true;
216
  }
1
  <?php
2
  /*
3
  File Name: WP-Table Reloaded - Import Class (see main file wp-table-reloaded.php)
4
+ Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
5
+ Description: This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts or on your pages by using a shortcode. The plugin is greatly influenced by the plugin "wp-Table" by Alex Rabe, but was completely rewritten and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin.
6
  Version: 1.0
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
42
  'html' => __( 'HTML - Hypertext Markup Language', WP_TABLE_RELOADED_TEXTDOMAIN ),
43
  'xml' => __( 'XML - eXtended Markup Language', WP_TABLE_RELOADED_TEXTDOMAIN )
44
  // don't have this show up in list, as handled in separate table
45
+ //'wp_table' => _ _( 'wp-Table plugin database', WP_TABLE_RELOADED_TEXTDOMAIN )
46
  );
47
  }
48
 
181
  $temp_data = array();
182
 
183
  if ( $wpdb->golftable == $wpdb->get_var( "show tables like '{$wpdb->golftable}'" ) && $wpdb->golfresult == $wpdb->get_var( "show tables like '{$wpdb->golfresult}'" ) ) {
184
+ // wp-Table tables exist -> the plugin might be installed, so we might try an export
185
 
186
  // get information form database
187
  $current_table = $wpdb->get_row( "SELECT * FROM $wpdb->golftable WHERE table_aid = {$table_id}" );
192
  $table['options']['first_row_th'] = ( 1 == $current_table->head_bold ) ? true : false;
193
  $table['options']['alternating_row_colors'] = ( 1 == $current_table->alternative ) ? true : false;
194
 
195
+ // wp-Table's config, contains information about tablesort
196
  $wptable_config = get_option( 'wptable' );
197
  if ( false !== $wptable_config )
198
  $table['options']['use_tablesorter'] = ( 1 == $wptable_config['use_sorting'] ) ? true : false;
210
  $table['data'] = $this->pad_array_to_max_cols( $temp_rows );
211
  $this->imported_table = $table;
212
  } else {
213
+ // no tables from wp-Table found
214
  $this->imported_table = array();
215
  $this->error = true;
216
  }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://tobias.baethge.com/donate/
4
  Tags: html,table,editor,csv,import,export,excel,widget,admin,sidebar
5
  Requires at least: 2.5
6
  Tested up to: 2.8
7
- Stable tag: 1.0.1
8
 
9
  This plugin allows you to create and manage tables in your WP's admin-area. You can then show them in your posts, on pages or in text widgets by using a shortcode.
10
 
@@ -12,12 +12,12 @@ This plugin allows you to create and manage tables in your WP's admin-area. You
12
 
13
  **IMPORTANT: PLEASE MAKE SURE TO HAVE A BACKUP OF YOUR CSS-STYLESHEET (IF YOU MADE ANY CHANGES TO IT) AS IT WILL BE OVERWRITTEN DURING THE AUTOMATIC UPDATE BY WORDPRESS!**
14
 
15
- This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode. The plugin is a completely rewritten and extended version of Alex Rabe's "WP-Table" and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin. You may also have both plugins installed at the same time and you can also import your tables from the WP-Table plugin!
16
 
17
  = More information =
18
  Please see the English plugin website http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/ .
19
 
20
- If you like this plugin, please rate it here in the WordPress Plugin Directory. Thank you!
21
 
22
  = Informationen auf Deutsch =
23
  Dieses Plugin erlaubt die Verwaltung von Tabellen in WordPress.
@@ -49,19 +49,24 @@ Manual Installation works just as for most other WordPress plugins:
49
 
50
  1. Include a table by adding the shortcode [table id=&lt;your-table's-id&gt; /] to your post, page or text widget.
51
 
52
- 1. You might want to add styling features via your blog's theme's CSS file (probably style.css) or via plugin css file. There are two demo file "example-style.css" and "example-style-wp-table.css" in the subfolder "css". Please copy them, edit the copy, and select the copy in the plugin options screen!
53
 
54
 
55
  == Frequently Asked Questions ==
56
 
57
- = Can I use WP-Table and WP-Table Reloaded together? =
58
 
59
- Yes! You can have both WP-Table and WP-Table Reloaded installed in your WordPress! They will not interfere (as they are not using anything together). They are completely independent from each other.
60
- If WP-Table Reloaded finds the WP-Table database tables, it can import the found tables into it's own format, so that you can completely upgrade from WP-Table to WP-Table Reloaded.
61
 
62
  = Support? =
63
 
64
- If you experience trouble in using the plugin or find a bug, please don't hesitate to tell me about it. Right now the preferred way is the comments section of the [plugin page](http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/) (that way other users with the same problem could get help, too). I might add a support forum later. Till then you might also consider opening a new topic in the [WordPress Support Forums](http://wordpress.org/support/) and send me the link to your thread. You may also make feature requests using this method! Don't be shy!
 
 
 
 
 
65
 
66
  = Requirements? =
67
 
@@ -70,7 +75,7 @@ In short: WordPress 2.5 or higher
70
  = Languages and Localization? =
71
 
72
  The plugin currently includes the following languages:
73
- English (by me, German (by me), Turkish (thanks to Semih) and Swedish (thanks to ZuperZed).
74
 
75
  I'd really appreciate it, if you would translate the plugin into your language! Using Heiko Rabe's WordPress plugin [Codestyling Localization](http://www.code-styling.de/english/development/wordpress-plugin-codestyling-localization-en) that really is as easy as pie. Just install the plugin, add your language, create the .po-file, translate the strings in the comfortable editor and create the .mo-file. It will automatically be saved in WP-Table Reloaded's plugin folder. If you send me the .mo- and .po-file, I will gladly include them into future plugin releases.
76
  There is also a .pot-file available to use in the "languages subfolder.
@@ -87,12 +92,12 @@ Die Webseite des Plugins ist auch [auf Deutsch](http://tobias.baethge.com/wordpr
87
  After installing the plugin, you can add, import, export, edit, copy, delete, ... tables via the "WP-Table Reloaded" screen which appears under the "Tools" section in your Admin menu.
88
  Everything should be self-explaining there.
89
  To show one of your tables in a post, on a page or in a text widget, just include the shortcode [table id=&lt;the-id&gt; /] to your post/page/text-widget, where &lt;the-id&gt is the ID of your table (can be found on the left side of the "List tables" screen.)
90
- After that you might want to change the style of the table: Just copy the CSS-file "example-style.css" in the subfolder "css" of the plugin folder, edit the copy to fit your layout needs. Be sure to activate the option "Use global css-file?" in the plugin options and select your copied file for this to work!
91
  You may also add certain features (like table-sorting, alternating row colors, print name and/or description, ...) by checking the appropriate options in the "Edit table" screen.
92
 
93
  == Acknowledgements ==
94
 
95
- Thanks go to [Alex Rabe](http://alexrabe.boelinger.com/) for the initial WP-Table plugin!
96
  Thanks go to [Christian Bach](http://tablesorter.com/docs/) for the TableSorter-jQuery-plugin.
97
  Thanks to all language file translators!
98
  Thanks to every supporter and bug reporter!
@@ -105,7 +110,8 @@ I kindly ask you for link somewhere on your website http://tobias.baethge.com/.
105
 
106
  == Changelog ==
107
 
108
- * 1.0: Language files, more import/export (including directly from WP-Table!), shortcode supported in text widgets
 
109
  * 0.9.2: fixed bug with plugin deactivation hook, added missing css-file
110
  * 0.9.1: first good release with all mentioned functions working well
111
  * 0.9 beta 1b: small bug which prevented showing of tables (but still not everything implemented)
4
  Tags: html,table,editor,csv,import,export,excel,widget,admin,sidebar
5
  Requires at least: 2.5
6
  Tested up to: 2.8
7
+ Stable tag: 1.1
8
 
9
  This plugin allows you to create and manage tables in your WP's admin-area. You can then show them in your posts, on pages or in text widgets by using a shortcode.
10
 
12
 
13
  **IMPORTANT: PLEASE MAKE SURE TO HAVE A BACKUP OF YOUR CSS-STYLESHEET (IF YOU MADE ANY CHANGES TO IT) AS IT WILL BE OVERWRITTEN DURING THE AUTOMATIC UPDATE BY WORDPRESS!**
14
 
15
+ This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode. The plugin is a completely rewritten and extended version of Alex Rabe's "wp-Table" and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin. You may also have both plugins installed at the same time and you can also import your tables from the wp-Table plugin!
16
 
17
  = More information =
18
  Please see the English plugin website http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/ .
19
 
20
+ If you like this plugin, please rate it here in the WordPress Plugin Directory or make a donation. Thank you!
21
 
22
  = Informationen auf Deutsch =
23
  Dieses Plugin erlaubt die Verwaltung von Tabellen in WordPress.
49
 
50
  1. Include a table by adding the shortcode [table id=&lt;your-table's-id&gt; /] to your post, page or text widget.
51
 
52
+ 1. You might want to add styling features via your blog's theme's CSS file (probably style.css) or via the option in the "Plugin Options" screen, where you can enter your CSS directly.
53
 
54
 
55
  == Frequently Asked Questions ==
56
 
57
+ = Can I use wp-Table and WP-Table Reloaded together? =
58
 
59
+ Yes! You can have both wp-Table and WP-Table Reloaded installed in your WordPress! They will not interfere (as they are not using anything together). They are completely independent from each other.
60
+ If WP-Table Reloaded finds the wp-Table database tables, it can import the found tables into it's own format, so that you can completely upgrade from wp-Table to WP-Table Reloaded.
61
 
62
  = Support? =
63
 
64
+ If you find a bug or have a feature request, please dont hesitate to tell me about it.
65
+ You would help a lot if you could add an issue ticket in the [issue tracker on Google Code](http://code.google.com/p/wp-table-reloaded/).
66
+ You may also post it in the comments on the plugin website.
67
+
68
+ For other help or support questions, please use the [WordPress Support Forums](http://wordpress.org/support/). Please [open a new topic](http://wordpress.org/tags/wp-table-reloaded?forum_id=10#postform) there (with the tag "wp-table-reloaded") and email me a link to the thread (or post it as a comment on the plugin website). Thank you!
69
+ You may also make feature requests using this method! Don't be shy!
70
 
71
  = Requirements? =
72
 
75
  = Languages and Localization? =
76
 
77
  The plugin currently includes the following languages:
78
+ Albanian, English, French, German, Russian, Spanish, Swedish and Turkish.
79
 
80
  I'd really appreciate it, if you would translate the plugin into your language! Using Heiko Rabe's WordPress plugin [Codestyling Localization](http://www.code-styling.de/english/development/wordpress-plugin-codestyling-localization-en) that really is as easy as pie. Just install the plugin, add your language, create the .po-file, translate the strings in the comfortable editor and create the .mo-file. It will automatically be saved in WP-Table Reloaded's plugin folder. If you send me the .mo- and .po-file, I will gladly include them into future plugin releases.
81
  There is also a .pot-file available to use in the "languages subfolder.
92
  After installing the plugin, you can add, import, export, edit, copy, delete, ... tables via the "WP-Table Reloaded" screen which appears under the "Tools" section in your Admin menu.
93
  Everything should be self-explaining there.
94
  To show one of your tables in a post, on a page or in a text widget, just include the shortcode [table id=&lt;the-id&gt; /] to your post/page/text-widget, where &lt;the-id&gt is the ID of your table (can be found on the left side of the "List tables" screen.)
95
+ After that you might want to change the style of the table. You can do this either by adding CSS to your theme's CSS stylesheet (probably style.css) or by entering it into the box on the "Plugin Options" screen.
96
  You may also add certain features (like table-sorting, alternating row colors, print name and/or description, ...) by checking the appropriate options in the "Edit table" screen.
97
 
98
  == Acknowledgements ==
99
 
100
+ Thanks go to [Alex Rabe](http://alexrabe.boelinger.com/) for the initial wp-Table plugin!
101
  Thanks go to [Christian Bach](http://tablesorter.com/docs/) for the TableSorter-jQuery-plugin.
102
  Thanks to all language file translators!
103
  Thanks to every supporter and bug reporter!
110
 
111
  == Changelog ==
112
 
113
+ * 1.1: changed way of CSS handling (database option instead of file), fixed bug for users with PHP4 (certain function doesn't exist there), added two additional shortcode parameters, added buttons to easily add links and images
114
+ * 1.0(.1): Language files, more import/export (including directly from wp-Table!), shortcode supported in text widgets
115
  * 0.9.2: fixed bug with plugin deactivation hook, added missing css-file
116
  * 0.9.1: first good release with all mentioned functions working well
117
  * 0.9 beta 1b: small bug which prevented showing of tables (but still not everything implemented)
screenshot-3.png CHANGED
Binary file
screenshot-6.png CHANGED
Binary file
wp-table-reloaded-admin.php CHANGED
@@ -1,9 +1,9 @@
1
  <?php
2
  /*
3
  File Name: WP-Table Reloaded - Admin Class (see main file wp-table-reloaded.php)
4
- Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/
5
- Description: This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode. The plugin is a completely rewritten and extended version of Alex Rabe's "WP-Table" and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin.
6
- Version: 1.0.1
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
@@ -11,7 +11,7 @@ Author URI: http://tobias.baethge.com/
11
  class WP_Table_Reloaded_Admin {
12
 
13
  // ###################################################################################################################
14
- var $plugin_version = '1.0.1';
15
  // nonce for security of links/forms, try to prevent "CSRF"
16
  var $nonce_base = 'wp-table-reloaded-nonce';
17
  // names for the options which are stored in the WP database
@@ -32,8 +32,8 @@ class WP_Table_Reloaded_Admin {
32
  'installed_version' => '0',
33
  'uninstall_upon_deactivation' => false,
34
  'enable_tablesorter' => true,
35
- 'use_global_css' => true,
36
- 'css_filename' => 'example-style.css',
37
  'last_id' => 0
38
  );
39
  var $default_tables = array();
@@ -416,11 +416,18 @@ class WP_Table_Reloaded_Admin {
416
  check_admin_referer( $this->get_nonce( 'options' ) );
417
 
418
  $new_options = $_POST['options'];
 
419
  // checkboxes: option value is defined by whether option isset (e.g. was checked) or not
420
  $this->options['uninstall_upon_deactivation'] = isset( $new_options['uninstall_upon_deactivation'] );
421
  $this->options['enable_tablesorter'] = isset( $new_options['enable_tablesorter'] );
422
- $this->options['use_global_css'] = isset( $new_options['use_global_css'] );
423
- $this->options['css_filename'] = isset( $new_options['css_filename'] ) ? $new_options['css_filename'] : $this->options['css_filename'];
 
 
 
 
 
 
424
  $this->update_options();
425
 
426
  $this->print_success_message( __( 'Options saved successfully.', WP_TABLE_RELOADED_TEXTDOMAIN ) );
@@ -570,12 +577,12 @@ class WP_Table_Reloaded_Admin {
570
  $rows = count( $table['data'] );
571
  $cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
572
 
573
- $this->print_page_header( __( sprintf( 'Edit Table "%s"', $this->safe_output( $table['name'] ) ), WP_TABLE_RELOADED_TEXTDOMAIN ) );
574
  $this->print_submenu_navigation( 'edit' );
575
 
576
  ?>
577
  <div style="clear:both;"><p><?php _e( 'You may edit the content of the table here. It is also possible to add or delete columns and rows.', WP_TABLE_RELOADED_TEXTDOMAIN ) ?><br />
578
- <?php _e( sprintf( 'If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>', $this->safe_output( $table_id ) ), WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p></div>
579
  <form method="post" action="<?php echo $this->get_action_url(); ?>">
580
  <?php wp_nonce_field( $this->get_nonce( 'edit' ) ); ?>
581
 
@@ -595,11 +602,20 @@ class WP_Table_Reloaded_Admin {
595
  </div>
596
  </div>
597
 
 
 
 
 
 
 
 
 
 
598
  <?php if ( 0 < $cols && 0 < $rows ) { ?>
599
  <div class="postbox">
600
  <h3 class="hndle"><span><?php _e( 'Table Contents', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span></h3>
601
  <div class="inside">
602
- <table class="widefat" style="width:auto;">
603
  <thead>
604
  <tr>
605
  <th>&nbsp;</th>
@@ -652,7 +668,10 @@ class WP_Table_Reloaded_Admin {
652
  </div>
653
  </div>
654
  <?php } //endif ?>
655
- <div style="clear:both;">
 
 
 
656
  <?php if ( 1 < $rows ) { // swap rows form
657
 
658
  $row1_select = '<select name="swap[row][1]">';
@@ -690,7 +709,59 @@ class WP_Table_Reloaded_Admin {
690
  ?>
691
  <input type="submit" name="submit[swap_cols]" class="button-primary" value="<?php _e( 'Swap', WP_TABLE_RELOADED_TEXTDOMAIN ) ?>" />
692
  <?php } // end if form swap cols ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
693
  </div>
 
694
  <br/>
695
  <div class="postbox">
696
  <h3 class="hndle"><span><?php _e( 'Table Settings', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span></h3>
@@ -749,7 +820,7 @@ class WP_Table_Reloaded_Admin {
749
  $this->print_submenu_navigation( 'import' );
750
  ?>
751
  <div style="clear:both;">
752
- <p><?php _e( 'You may import a table from existing data here.<br/>It may be a CSV, XML oder HTML file. It needs a certrain structure though. Please consult the documentation.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
753
  </div>
754
  <div style="clear:both;">
755
  <form method="post" enctype="multipart/form-data" action="<?php echo $this->get_action_url(); ?>">
@@ -800,10 +871,10 @@ class WP_Table_Reloaded_Admin {
800
  $wpdb->golfresult = $wpdb->prefix . 'golfresult';
801
 
802
  if ( $wpdb->golftable == $wpdb->get_var( "show tables like '{$wpdb->golftable}'" ) && $wpdb->golfresult == $wpdb->get_var( "show tables like '{$wpdb->golfresult}'" ) ) {
803
- // WP-Table tables exist -> the plugin might be installed, so we output all found tables
804
 
805
  ?>
806
- <h2><?php _e( 'Import from original WP-Table plugin', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></h2>
807
  <div style="clear:both;">
808
  <?php
809
  $tables = $wpdb->get_results("SELECT * FROM $wpdb->golftable ORDER BY 'table_aid' ASC ");
@@ -836,7 +907,7 @@ class WP_Table_Reloaded_Admin {
836
  echo "\t<th scope=\"row\">{$table_id}</th>";
837
  echo "<td>{$name}</td>";
838
  echo "<td>{$description}</td>";
839
- echo "<td><a href=\"{$import_url}\" onclick=\"javascript:return confirm( '".__( 'Do you really want to import this table from the WP-Table plugin?', WP_TABLE_RELOADED_TEXTDOMAIN )."' );\">" . __( 'Import', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a></td>\n";
840
  echo "</tr>\n";
841
 
842
  }
@@ -844,13 +915,13 @@ class WP_Table_Reloaded_Admin {
844
  echo "</table>\n";
845
 
846
  } else { // end if $tables
847
- echo "<div style=\"clear:both;\"><p>" . __( 'WP-Table by Alex Rabe seems to be installed, but no tables were found.', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</p></div>";
848
  }
849
  ?>
850
  </div>
851
  <?php
852
  } else {
853
- // one of the WP-Table tables was not found in database, so nothing to show here
854
  }
855
  $this->print_page_footer();
856
  }
@@ -954,25 +1025,14 @@ class WP_Table_Reloaded_Admin {
954
  <th scope="row"><?php _e( 'Enable Tablesorter-JavaScript?', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
955
  <td><input type="checkbox" name="options[enable_tablesorter]" id="options[enable_tablesorter]"<?php echo ( true == $this->options['enable_tablesorter'] ) ? ' checked="checked"': '' ;?> value="true" /> <label for="options[enable_tablesorter]"><?php _e( 'Yes, enable <a href="http://www.tablesorter.com/">Tablesorter-jQuery-Plugin</a> to be used to make table sortable (can be changed for every table separatly).', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label></td>
956
  </tr>
957
- <tr valign="top" id="options_use_global_css">
958
- <th scope="row"><?php _e( 'Use global CSS-file?', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
959
- <td><input type="checkbox" name="options[use_global_css]" id="options[use_global_css]"<?php echo ( true == $this->options['use_global_css'] ) ? ' checked="checked"': '' ;?> value="true" /> <label for="options[use_global_css]"><?php _e( 'Yes, load a CSS-file, which contains basic styles for the table. The CSS-files must be located in subfolder "css". To change styles, please copy the file "example-style.css", edit the copied file with your style changes and place it in the same folder. You may then select it below. ', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label></td>
960
  </tr>
961
- <tr valign="top" id="options_css_filename">
962
  <th scope="row">&nbsp;</th>
963
- <td><label for="options[css_filename]"><?php _e( 'Select CSS file to use', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label><select id="options[css_filename]"<?php echo ( false == $this->options['use_global_css'] ) ? ' disabled="disabled"': '' ;?> name="options[css_filename]">
964
- <?php
965
- // get all files the extension ".css" from the css-subfolder,
966
- // remove all folders and unwanted css-files and print them in a select-list
967
- $directory = scandir( WP_TABLE_RELOADED_ABSPATH . 'css/' );
968
- $directory = array_diff( $directory, array( '.', '..', 'admin-style.css' ) ); // remove ., .., and admin-style.css from the array
969
- foreach ($directory as $key => $filename ) {
970
- $extension = substr( $filename, strrpos( $filename, '.' ) + 1 );
971
- if( ( 'css' == $extension ) && !is_dir( WP_TABLE_RELOADED_ABSPATH . 'css/' . $filename ) )
972
- echo "<option" . ( ( $filename == $this->options['css_filename'] ) ? ' selected="selected"': '' ) . " value=\"{$filename}\">{$filename}</option>";
973
- }
974
- ?>
975
- </select> <?php _e( '(These files are located in the subfolder "css" of the plugin folder.)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></td>
976
  </tr>
977
  </table>
978
  </div
@@ -999,7 +1059,17 @@ class WP_Table_Reloaded_Admin {
999
 
1000
  </form>
1001
  </div>
1002
-
 
 
 
 
 
 
 
 
 
 
1003
  <h2><?php _e( 'Manually Uninstall Plugin', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></h2>
1004
  <div style="clear:both;">
1005
  <p><?php _e( 'You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported.<br/> Be very careful with this and only click the button if you know what you are doing!', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
@@ -1051,10 +1121,16 @@ class WP_Table_Reloaded_Admin {
1051
  <h3 class="hndle"><span><?php _e( 'Credits and Thanks', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span></h3>
1052
  <div class="inside">
1053
  <p>
1054
- <?php _e( 'Thanks go to <a href="http://alexrabe.boelinger.com/">Alex Rabe</a> for the original WP-Table plugin,', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/>
1055
  <?php _e( 'Christian Bach for the <a href="http://www.tablesorter.com/">Tablesorter-jQuery-Plugin</a>,', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/>
1056
- <?php _e( 'the submitters of translations: <br/>&middot; Turkish (thanks to <a href="http://www.wpuzmani.com/">Semih</a>)<br/>&middot; Swedish (thanks to <a href="http://www.zuperzed.se/">ZuperZed</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/>
1057
- <?php _e( 'and all contributors, supporters, reviewers and users of the plugin!', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
 
 
 
 
 
 
1058
  </p>
1059
  </div>
1060
  </div>
@@ -1269,14 +1345,12 @@ class WP_Table_Reloaded_Admin {
1269
  $this->options = get_option( $this->optionname['options'] );
1270
  $new_options = array_merge( $this->default_options, $this->options );
1271
  // 2. step: by removing options which are deprecated (and thus not in_array(default_options)
1272
- $new_options = array_intersect_key( $new_options, $this->default_options );
1273
  // 3. step: update installed version number
1274
  $new_options['installed_version'] = $this->plugin_version;
1275
 
1276
- // 3b., take care of css filename (added in version 1.0)
1277
- $old_global_css = 'global-frontend-style.css';
1278
- if ( file_exists( WP_TABLE_RELOADED_ABSPATH . 'css/' . $old_global_css ) && !isset( $this->options['css_filename'] ) )
1279
- $new_options['css_filename'] = $old_global_css;
1280
 
1281
  // 4. step: save the new options
1282
  $this->options = $new_options;
@@ -1287,9 +1361,9 @@ class WP_Table_Reloaded_Admin {
1287
  foreach ( $this->tables as $id => $tableoptionname ) {
1288
  $table = $this->load_table( $id );
1289
  $new_table = array_merge( $this->default_table, $table );
1290
- $new_table = array_intersect_key( $new_table, $this->default_table );
1291
  $new_table['options'] = array_merge( $this->default_table['options'], $new_table['options'] );
1292
- $new_table['options'] = array_intersect_key( $new_table['options'], $this->default_table['options'] );
1293
  $this->save_table( $new_table );
1294
  }
1295
  }
1
  <?php
2
  /*
3
  File Name: WP-Table Reloaded - Admin Class (see main file wp-table-reloaded.php)
4
+ Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
5
+ Description: This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode. The plugin is a completely rewritten and extended version of Alex Rabe's "wp-Table" and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin.
6
+ Version: 1.1
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
11
  class WP_Table_Reloaded_Admin {
12
 
13
  // ###################################################################################################################
14
+ var $plugin_version = '1.1';
15
  // nonce for security of links/forms, try to prevent "CSRF"
16
  var $nonce_base = 'wp-table-reloaded-nonce';
17
  // names for the options which are stored in the WP database
32
  'installed_version' => '0',
33
  'uninstall_upon_deactivation' => false,
34
  'enable_tablesorter' => true,
35
+ 'use_custom_css' => true,
36
+ 'custom_css' => '.wp-table-reloaded {width:100%;}',
37
  'last_id' => 0
38
  );
39
  var $default_tables = array();
416
  check_admin_referer( $this->get_nonce( 'options' ) );
417
 
418
  $new_options = $_POST['options'];
419
+
420
  // checkboxes: option value is defined by whether option isset (e.g. was checked) or not
421
  $this->options['uninstall_upon_deactivation'] = isset( $new_options['uninstall_upon_deactivation'] );
422
  $this->options['enable_tablesorter'] = isset( $new_options['enable_tablesorter'] );
423
+ $this->options['use_custom_css'] = isset( $new_options['use_custom_css'] );
424
+ // clean up CSS style input (if user enclosed it into <style...></style>
425
+ if ( isset( $new_options['custom_css'] ) ) {
426
+ if ( 1 == preg_match( '/<style.*?>(.*?)<\/style>/is', stripslashes( $new_options['custom_css'] ), $matches ) )
427
+ $new_options['custom_css'] = $matches[1]; // if found, take match as style to save
428
+ $this->options['custom_css'] = $new_options['custom_css'];
429
+ }
430
+
431
  $this->update_options();
432
 
433
  $this->print_success_message( __( 'Options saved successfully.', WP_TABLE_RELOADED_TEXTDOMAIN ) );
577
  $rows = count( $table['data'] );
578
  $cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
579
 
580
+ $this->print_page_header( sprintf( __( 'Edit Table "%s"', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->safe_output( $table['name'] ) ) );
581
  $this->print_submenu_navigation( 'edit' );
582
 
583
  ?>
584
  <div style="clear:both;"><p><?php _e( 'You may edit the content of the table here. It is also possible to add or delete columns and rows.', WP_TABLE_RELOADED_TEXTDOMAIN ) ?><br />
585
+ <?php echo sprintf( __( 'If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->safe_output( $table_id ) ); ?></p></div>
586
  <form method="post" action="<?php echo $this->get_action_url(); ?>">
587
  <?php wp_nonce_field( $this->get_nonce( 'edit' ) ); ?>
588
 
602
  </div>
603
  </div>
604
 
605
+ <p class="submit">
606
+ <input type="submit" name="submit[update]" class="button-primary" value="<?php _e( 'Update Changes', WP_TABLE_RELOADED_TEXTDOMAIN ) ?>" />
607
+ <input type="submit" name="submit[save_back]" class="button-primary" value="<?php _e( 'Save and go back', WP_TABLE_RELOADED_TEXTDOMAIN ) ?>" />
608
+ <?php
609
+ $list_url = $this->get_action_url( array( 'action' => 'list' ) );
610
+ echo " <a class=\"button-primary\" href=\"{$list_url}\">" . __( 'Cancel', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
611
+ ?>
612
+ </p>
613
+
614
  <?php if ( 0 < $cols && 0 < $rows ) { ?>
615
  <div class="postbox">
616
  <h3 class="hndle"><span><?php _e( 'Table Contents', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span></h3>
617
  <div class="inside">
618
+ <table class="widefat" style="width:auto;" id="table_contents">
619
  <thead>
620
  <tr>
621
  <th>&nbsp;</th>
668
  </div>
669
  </div>
670
  <?php } //endif ?>
671
+ <div class="postbox">
672
+ <h3 class="hndle"><span><?php _e( 'Data Manipulation', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span></h3>
673
+ <div class="inside">
674
+ <table><tr><td>
675
  <?php if ( 1 < $rows ) { // swap rows form
676
 
677
  $row1_select = '<select name="swap[row][1]">';
709
  ?>
710
  <input type="submit" name="submit[swap_cols]" class="button-primary" value="<?php _e( 'Swap', WP_TABLE_RELOADED_TEXTDOMAIN ) ?>" />
711
  <?php } // end if form swap cols ?>
712
+ </td><td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td><td>
713
+ <p class="submit">
714
+ <a id="a-insert-link" class="button-primary" href=""><?php _e( 'Insert Link', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a> <a id="a-insert-image" class="button-primary" href=""><?php _e( 'Insert Image', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a>
715
+ </p>
716
+ </td></tr>
717
+ </table>
718
+ <script type="text/javascript">
719
+ /* <![CDATA[ */
720
+ jQuery(document).ready(function($){
721
+
722
+ var insert_html = '';
723
+
724
+ function add_html() {
725
+ var old_value = $(this).val();
726
+ var new_value = old_value + insert_html;
727
+ $(this).val( new_value );
728
+ $("#table_contents input").unbind('click', add_html);
729
+ }
730
+
731
+ $("#a-insert-link").click(function () {
732
+ var link_url = prompt( '<?php _e( 'URL of link to insert', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>' + ':', 'http://' );
733
+ if ( link_url ) {
734
+ var link_text = prompt( '<?php _e( 'Text of link', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>' + ':', '<?php _e( 'Text of link', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>' );
735
+ if ( link_text ) {
736
+ insert_html = '<a href="' + link_url + '">' + link_text + '</a>';
737
+ if ( confirm( '<?php _e( 'To insert the following link into a cell, just click the cell after closing this dialog.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>' + '\n\n' + insert_html ) ) {
738
+ $("#table_contents input").bind('click', add_html);
739
+ }
740
+ }
741
+ }
742
+ return false;
743
+ });
744
+
745
+ $("#a-insert-image").click(function () {
746
+ var image_url = prompt( '<?php _e( 'URL of image to insert', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>' + ':', 'http://' );
747
+ if ( image_url ) {
748
+ var image_alt = prompt( '<?php _e( '"alt" text of the image', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>' + ':', '' );
749
+ // if ( image_alt ) { // won't check for alt, because there are cases where an empty one makes sense
750
+ insert_html = '<img src="' + image_url + '" alt="' + image_alt + '" />';
751
+ if ( true == confirm( '<?php _e( 'To insert the following image into a cell, just click the cell after closing this dialog.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>' + '\n\n' + insert_html ) ) {
752
+ $("#table_contents input").bind('click', add_html);
753
+ }
754
+ // }
755
+ }
756
+ return false;
757
+ });
758
+
759
+ });
760
+ /* ]]> */
761
+ </script>
762
+ </div>
763
  </div>
764
+
765
  <br/>
766
  <div class="postbox">
767
  <h3 class="hndle"><span><?php _e( 'Table Settings', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span></h3>
820
  $this->print_submenu_navigation( 'import' );
821
  ?>
822
  <div style="clear:both;">
823
+ <p><?php _e( 'You may import a table from existing data here.<br/>It may be a CSV, XML or HTML file. It needs a certain structure though. Please consult the documentation.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
824
  </div>
825
  <div style="clear:both;">
826
  <form method="post" enctype="multipart/form-data" action="<?php echo $this->get_action_url(); ?>">
871
  $wpdb->golfresult = $wpdb->prefix . 'golfresult';
872
 
873
  if ( $wpdb->golftable == $wpdb->get_var( "show tables like '{$wpdb->golftable}'" ) && $wpdb->golfresult == $wpdb->get_var( "show tables like '{$wpdb->golfresult}'" ) ) {
874
+ // wp-Table tables exist -> the plugin might be installed, so we output all found tables
875
 
876
  ?>
877
+ <h2><?php _e( 'Import from original wp-Table plugin', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></h2>
878
  <div style="clear:both;">
879
  <?php
880
  $tables = $wpdb->get_results("SELECT * FROM $wpdb->golftable ORDER BY 'table_aid' ASC ");
907
  echo "\t<th scope=\"row\">{$table_id}</th>";
908
  echo "<td>{$name}</td>";
909
  echo "<td>{$description}</td>";
910
+ echo "<td><a href=\"{$import_url}\" onclick=\"javascript:return confirm( '" . __( 'Do you really want to import this table from the wp-Table plugin?', WP_TABLE_RELOADED_TEXTDOMAIN ) . "' );\">" . __( 'Import', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a></td>\n";
911
  echo "</tr>\n";
912
 
913
  }
915
  echo "</table>\n";
916
 
917
  } else { // end if $tables
918
+ echo "<div style=\"clear:both;\"><p>" . __( 'wp-Table by Alex Rabe seems to be installed, but no tables were found.', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</p></div>";
919
  }
920
  ?>
921
  </div>
922
  <?php
923
  } else {
924
+ // one of the wp-Table tables was not found in database, so nothing to show here
925
  }
926
  $this->print_page_footer();
927
  }
1025
  <th scope="row"><?php _e( 'Enable Tablesorter-JavaScript?', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
1026
  <td><input type="checkbox" name="options[enable_tablesorter]" id="options[enable_tablesorter]"<?php echo ( true == $this->options['enable_tablesorter'] ) ? ' checked="checked"': '' ;?> value="true" /> <label for="options[enable_tablesorter]"><?php _e( 'Yes, enable <a href="http://www.tablesorter.com/">Tablesorter-jQuery-Plugin</a> to be used to make table sortable (can be changed for every table separatly).', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label></td>
1027
  </tr>
1028
+ <tr valign="top" id="options_use_custom_css">
1029
+ <th scope="row"><?php _e( 'Add custom CSS?', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
1030
+ <td><input type="checkbox" name="options[use_custom_css]" id="options[use_custom_css]"<?php echo ( true == $this->options['use_custom_css'] ) ? ' checked="checked"': '' ;?> value="true" /> <label for="options[use_custom_css]"><?php echo sprintf( __( 'Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag. (If you do not want this, just add your CSS styling to your theme\'s "style.css" <small>(located at %s)</small>.) (See the <a href="http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/">plugin website</a> for examples.)', WP_TABLE_RELOADED_TEXTDOMAIN ), get_stylesheet_uri() ); ?></label></td>
1031
  </tr>
1032
+ <tr valign="top" id="options_custom_css">
1033
  <th scope="row">&nbsp;</th>
1034
+ <td><label for="options[custom_css]"><?php _e( 'Enter custom CSS', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label><br/>
1035
+ <textarea name="options[custom_css]" id="options[use_custom_css]" rows="15" cols="40" style="width:600px;height:300px;"<?php echo ( false == $this->options['use_custom_css'] ) ? ' disabled="disabled"': '' ;?>><?php echo $this->safe_output( $this->options[custom_css] ); ?></textarea></td>
 
 
 
 
 
 
 
 
 
 
 
1036
  </tr>
1037
  </table>
1038
  </div
1059
 
1060
  </form>
1061
  </div>
1062
+ <script type="text/javascript">
1063
+ /* <![CDATA[ */
1064
+ jQuery(document).ready(function($){
1065
+ $("#options_uninstall input").click(function () {
1066
+ if( $('#options_uninstall input:checked').val() ) {
1067
+ return confirm( '<?php _e( 'Do you really want to activate this? You should only do that right before uninstallation!', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>' );
1068
+ }
1069
+ });
1070
+ });
1071
+ /* ]]> */
1072
+ </script>
1073
  <h2><?php _e( 'Manually Uninstall Plugin', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></h2>
1074
  <div style="clear:both;">
1075
  <p><?php _e( 'You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported.<br/> Be very careful with this and only click the button if you know what you are doing!', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
1121
  <h3 class="hndle"><span><?php _e( 'Credits and Thanks', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span></h3>
1122
  <div class="inside">
1123
  <p>
1124
+ <?php _e( 'Thanks go to <a href="http://alexrabe.boelinger.com/">Alex Rabe</a> for the original wp-Table plugin,', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/>
1125
  <?php _e( 'Christian Bach for the <a href="http://www.tablesorter.com/">Tablesorter-jQuery-Plugin</a>,', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/>
1126
+ <?php _e( 'the submitters of translations:', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1127
+ <br/>&middot; <?php _e( 'Albanian (thanks to <a href="http://www.romeolab.com/">Romeo</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1128
+ <br/>&middot; <?php _e( 'French (thanks to <a href="http://ultratrailer.net/">Yin-Yin</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1129
+ <br/>&middot; <?php _e( 'Russian (thanks to <a href="http://wp-skins.info/">Truper</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1130
+ <br/>&middot; <?php _e( 'Spanish (thanks to <a href="http://theindependentproject.com/">Alejandro Urrutia</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1131
+ <br/>&middot; <?php _e( 'Swedish (thanks to <a href="http://www.zuperzed.se/">ZuperZed</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1132
+ <br/>&middot; <?php _e( 'Turkish (thanks to <a href="http://www.wpuzmani.com/">Semih</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1133
+ <br/><?php _e( 'and all contributors, supporters, reviewers and users of the plugin!', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1134
  </p>
1135
  </div>
1136
  </div>
1345
  $this->options = get_option( $this->optionname['options'] );
1346
  $new_options = array_merge( $this->default_options, $this->options );
1347
  // 2. step: by removing options which are deprecated (and thus not in_array(default_options)
1348
+ //$new_options = array_intersect_key( $new_options, $this->default_options );
1349
  // 3. step: update installed version number
1350
  $new_options['installed_version'] = $this->plugin_version;
1351
 
1352
+ // 3b., take care of css
1353
+ $new_options['use_custom_css'] = ( true == isset( $this->options['use_global_css'] ) ) ? $this->options['use_global_css'] : true;
 
 
1354
 
1355
  // 4. step: save the new options
1356
  $this->options = $new_options;
1361
  foreach ( $this->tables as $id => $tableoptionname ) {
1362
  $table = $this->load_table( $id );
1363
  $new_table = array_merge( $this->default_table, $table );
1364
+ //$new_table = array_intersect_key( $new_table, $this->default_table );
1365
  $new_table['options'] = array_merge( $this->default_table['options'], $new_table['options'] );
1366
+ // $new_table['options'] = array_intersect_key( $new_table['options'], $this->default_table['options'] );
1367
  $this->save_table( $new_table );
1368
  }
1369
  }
wp-table-reloaded-frontend.php CHANGED
@@ -1,9 +1,9 @@
1
  <?php
2
  /*
3
  File Name: WP-Table Reloaded - Frontend Class (see main file wp-table-reloaded.php)
4
- Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/
5
- Description: This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode. The plugin is a completely rewritten and extended version of Alex Rabe's "WP-Table" and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin.
6
- Version: 1.0.1
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
@@ -40,21 +40,33 @@ class WP_Table_Reloaded_Frontend {
40
  $this->add_head_tablesorter_js();
41
 
42
  // if global css shall be used
43
- if ( true == $this->options['use_global_css'] )
44
- $this->add_head_global_css();
45
  }
46
 
47
  // ###################################################################################################################
48
  // handle [table id=<the_table_id> /] in the_content()
49
  function handle_content_shortcode( $attr ) {
 
 
 
 
 
 
 
 
 
 
50
  $table_id = $attr['id'];
 
 
51
 
52
- if ( !is_numeric( $table_id ) || 1 > $table_id || false == $this->is_table( $table_id ) )
53
  return "[table \"{$table_id}\" not found /]<br />\n";
54
 
55
  $table = $this->load_table( $table_id );
56
 
57
- $output = $this->render_table( $table );
58
 
59
  return $output;
60
  }
@@ -70,7 +82,7 @@ class WP_Table_Reloaded_Frontend {
70
 
71
  // ###################################################################################################################
72
  // check, if given table id really exists
73
- function is_table( $table_id ) {
74
  return isset( $this->tables[ $table_id ] );
75
  }
76
 
@@ -83,14 +95,19 @@ class WP_Table_Reloaded_Frontend {
83
 
84
  // ###################################################################################################################
85
  // echo content of array
86
- function render_table( $table ) {
87
  // classes that will be added to <table class=...>, can be used for css-styling
88
  $cssclasses = array( 'wp-table-reloaded', "wp-table-reloaded-id-{$table['id']}" );
89
  $cssclasses = implode( ' ', $cssclasses );
90
 
 
 
91
  $rows = count( $table['data'] );
92
  $cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
93
 
 
 
 
94
  $output = '';
95
 
96
  if ( 0 < $rows && 0 < $cols) {
@@ -98,7 +115,7 @@ class WP_Table_Reloaded_Frontend {
98
  if ( true == $table['options']['print_name'] )
99
  $output .= '<h2 class="wp-table-reloaded-table-name">' . $this->safe_output( $table['name'] ) . "</h2>\n";
100
 
101
- $output .= "<table class=\"{$cssclasses}\" cellspacing=\"1\" cellpadding=\"0\" border=\"0\">\n";
102
 
103
  foreach( $table['data'] as $row_idx => $row ) {
104
  if ( true == $table['options']['alternating_row_colors'] )
@@ -112,8 +129,9 @@ class WP_Table_Reloaded_Frontend {
112
  $output .= "\t<tr{$row_class}>\n\t\t";
113
  foreach( $row as $col_idx => $cell_content ) {
114
  $col_class = ' class="column-' . ( $col_idx + 1 ) . '"';
 
115
  $cell_content = $this->safe_output( $cell_content );
116
- $output .= "<th{$col_class}>" . "{$cell_content}" . "</th>";
117
  }
118
  $output .= "\n\t</tr>\n";
119
  $output .= "</thead>\n";
@@ -123,8 +141,9 @@ class WP_Table_Reloaded_Frontend {
123
  $output .= "\t<tr{$row_class}>\n\t\t";
124
  foreach( $row as $col_idx => $cell_content ) {
125
  $col_class = ' class="column-' . ( $col_idx + 1 ) . '"';
 
126
  $cell_content = $this->safe_output( $cell_content );
127
- $output .= "<td{$col_class}>" . "{$cell_content}" . "</td>";
128
  }
129
  $output .= "\n\t</tr>\n";
130
  }
@@ -149,9 +168,11 @@ class WP_Table_Reloaded_Frontend {
149
  if ( true == $table['options']['use_tablesorter'] && true == $table['options']['first_row_th'] && true == $this->options['enable_tablesorter'] ) {
150
  $output .= <<<JSSCRIPT
151
  <script type="text/javascript">
 
152
  jQuery(document).ready(function($){
153
  $(".wp-table-reloaded-id-{$table['id']}").tablesorter({$widgets});
154
  });
 
155
  </script>
156
  JSSCRIPT;
157
  }
@@ -173,37 +194,23 @@ JSSCRIPT;
173
  }
174
 
175
  // ###################################################################################################################
176
- // enqueue global-css-file, if it exists, may be modified by user
177
- function add_head_global_css() {
178
-
179
  // load css filename from options, if option doesnt exist, use default
180
- $cssfile = ( isset( $this->options['css_filename'] ) && !empty( $this->options['css_filename'] ) ) ? $this->options['css_filename'] : 'example-style.css';
181
 
182
- if ( file_exists( WP_TABLE_RELOADED_ABSPATH . 'css/' . $cssfile ) ) {
183
- if ( function_exists( 'wp_enqueue_style' ) ) {
184
- wp_enqueue_style( 'wp-table-reloaded-global-css', WP_TABLE_RELOADED_URL . 'css/' . $cssfile );
185
- // WP < 2.7 does not contain call to add_action( 'wp_head', 'wp_print_styles' ) in default-filters.php (Core Trac Ticket #7720)
186
- if ( false == has_action( 'wp_head', 'wp_print_styles' ) )
187
- add_action( 'wp_head', array( &$this, 'print_styles' ) );
188
- } else {
189
- add_action( 'wp_head', array( &$this, 'print_styles' ) );
190
- }
191
  }
192
  }
193
 
194
- // ###################################################################################################################
195
- // print our style in wp-head (only needed for WP < 2.7)
196
- function print_styles() {
197
-
198
- // load css filename from options, if option doesnt exist, use default
199
- $cssfile = ( isset( $this->options['css_filename'] ) && !empty( $this->options['css_filename'] ) ) ? $this->options['css_filename'] : 'example-style.css';
200
-
201
- if ( function_exists( 'wp_print_styles' ) )
202
- wp_print_styles( 'wp-table-reloaded-global-css' );
203
- else
204
- echo "<link rel='stylesheet' href='" . WP_TABLE_RELOADED_URL . 'css/' . $cssfile . "' type='text/css' media='' />\n";
205
- }
206
-
207
  } // class WP_Table_Reloaded_Frontend
208
 
209
  ?>
1
  <?php
2
  /*
3
  File Name: WP-Table Reloaded - Frontend Class (see main file wp-table-reloaded.php)
4
+ Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
5
+ Description: This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode. The plugin is a completely rewritten and extended version of Alex Rabe's "wp-Table" and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin.
6
+ Version: 1.1
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
40
  $this->add_head_tablesorter_js();
41
 
42
  // if global css shall be used
43
+ if ( true == $this->options['use_custom_css'] )
44
+ add_action( 'wp_head', array( &$this, 'add_custom_css' ) );
45
  }
46
 
47
  // ###################################################################################################################
48
  // handle [table id=<the_table_id> /] in the_content()
49
  function handle_content_shortcode( $attr ) {
50
+
51
+ // parse shortcode attributs, only allow those specified
52
+ $default_atts = array(
53
+ 'id' => 0,
54
+ 'output_id' => false,
55
+ 'column_widths' => ''
56
+ );
57
+ $atts = shortcode_atts( $default_atts, $atts );
58
+
59
+ // get atts from array to variables
60
  $table_id = $attr['id'];
61
+ $output_id = ( true == $attr['output_id'] ) ? true : false;
62
+ $column_widths = explode( '|', $attr['column_widths'] );
63
 
64
+ if ( !is_numeric( $table_id ) || 1 > $table_id || false == $this->table_exists( $table_id ) )
65
  return "[table \"{$table_id}\" not found /]<br />\n";
66
 
67
  $table = $this->load_table( $table_id );
68
 
69
+ $output = $this->render_table( $table, $column_widths, $output_id );
70
 
71
  return $output;
72
  }
82
 
83
  // ###################################################################################################################
84
  // check, if given table id really exists
85
+ function table_exists( $table_id ) {
86
  return isset( $this->tables[ $table_id ] );
87
  }
88
 
95
 
96
  // ###################################################################################################################
97
  // echo content of array
98
+ function render_table( $table, $column_widths, $output_id ) {
99
  // classes that will be added to <table class=...>, can be used for css-styling
100
  $cssclasses = array( 'wp-table-reloaded', "wp-table-reloaded-id-{$table['id']}" );
101
  $cssclasses = implode( ' ', $cssclasses );
102
 
103
+ $id_output = ( true == $output_id ) ? " id=\"wp-table-reloaded-id-{$table['id']}\"" : '';
104
+
105
  $rows = count( $table['data'] );
106
  $cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
107
 
108
+ // make array $column_widths have $cols entries
109
+ $column_widths = array_pad( $column_widths, $cols, '' );
110
+
111
  $output = '';
112
 
113
  if ( 0 < $rows && 0 < $cols) {
115
  if ( true == $table['options']['print_name'] )
116
  $output .= '<h2 class="wp-table-reloaded-table-name">' . $this->safe_output( $table['name'] ) . "</h2>\n";
117
 
118
+ $output .= "<table{$id_output} class=\"{$cssclasses}\" cellspacing=\"1\" cellpadding=\"0\" border=\"0\">\n";
119
 
120
  foreach( $table['data'] as $row_idx => $row ) {
121
  if ( true == $table['options']['alternating_row_colors'] )
129
  $output .= "\t<tr{$row_class}>\n\t\t";
130
  foreach( $row as $col_idx => $cell_content ) {
131
  $col_class = ' class="column-' . ( $col_idx + 1 ) . '"';
132
+ $width_style = ( !empty( $column_widths[$col_idx] ) ) ? " style=\"width:{$column_widths[$col_idx]};\"" : '';
133
  $cell_content = $this->safe_output( $cell_content );
134
+ $output .= "<th{$col_class}{$width_style}>" . "{$cell_content}" . "</th>";
135
  }
136
  $output .= "\n\t</tr>\n";
137
  $output .= "</thead>\n";
141
  $output .= "\t<tr{$row_class}>\n\t\t";
142
  foreach( $row as $col_idx => $cell_content ) {
143
  $col_class = ' class="column-' . ( $col_idx + 1 ) . '"';
144
+ $width_style = ( !empty( $column_widths[$col_idx] ) ) ? " style=\"width:{$column_widths[$col_idx]};\"" : '';
145
  $cell_content = $this->safe_output( $cell_content );
146
+ $output .= "<td{$col_class}{$width_style}>" . "{$cell_content}" . "</td>";
147
  }
148
  $output .= "\n\t</tr>\n";
149
  }
168
  if ( true == $table['options']['use_tablesorter'] && true == $table['options']['first_row_th'] && true == $this->options['enable_tablesorter'] ) {
169
  $output .= <<<JSSCRIPT
170
  <script type="text/javascript">
171
+ /* <![CDATA[ */
172
  jQuery(document).ready(function($){
173
  $(".wp-table-reloaded-id-{$table['id']}").tablesorter({$widgets});
174
  });
175
+ /* ]]> */
176
  </script>
177
  JSSCRIPT;
178
  }
194
  }
195
 
196
  // ###################################################################################################################
197
+ // load and print css-style, (only called if enabled, by wp_head-action)
198
+ function add_custom_css() {
 
199
  // load css filename from options, if option doesnt exist, use default
200
+ $css = ( isset( $this->options['custom_css'] ) ) ? $this->options['custom_css'] : '';
201
 
202
+ if ( !empty( $css ) ) {
203
+ $output .= <<<CSSSTYLE
204
+ <style type="text/css" media="all">
205
+ /* <![CDATA[ */
206
+ {$css}
207
+ /* ]]> */
208
+ </style>
209
+ CSSSTYLE;
210
+ echo $output;
211
  }
212
  }
213
 
 
 
 
 
 
 
 
 
 
 
 
 
 
214
  } // class WP_Table_Reloaded_Frontend
215
 
216
  ?>
wp-table-reloaded.php CHANGED
@@ -2,13 +2,13 @@
2
  /*
3
  Plugin Name: WP-Table Reloaded
4
  Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
5
- Description: This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode. The plugin is a completely rewritten and extended version of Alex Rabe's "WP-Table" and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin.
6
- Version: 1.0.1
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
10
 
11
- /* Copyright 2009 Tobias B&auml;thge (email: mail@tobias.baethge.com )
12
 
13
  This program is free software; you can redistribute it and/or modify
14
  it under the terms of the GNU General Public License as published by
2
  /*
3
  Plugin Name: WP-Table Reloaded
4
  Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
5
+ Description: This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode. The plugin is a completely rewritten and extended version of Alex Rabe's "wp-Table" and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin.
6
+ Version: 1.1
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
10
 
11
+ /* Copyright 2009 Tobias B&auml;thge (email: wordpress@tobias.baethge.com )
12
 
13
  This program is free software; you can redistribute it and/or modify
14
  it under the terms of the GNU General Public License as published by