WP-Table Reloaded - Version 1.3

Version Description

Download this release

Release Info

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

Code changes from version 1.2.1 to 1.3

admin/admin-editor-buttons-script.js CHANGED
@@ -17,6 +17,7 @@ jQuery(document).ready(function($){
17
 
18
  var title = 'WP-Table Reloaded';
19
  var url = WP_Table_Reloaded_Admin.str_EditorButtonAjaxURL.replace(/&/g, "&");
 
20
 
21
  tb_show( title, url, false);
22
 
17
 
18
  var title = 'WP-Table Reloaded';
19
  var url = WP_Table_Reloaded_Admin.str_EditorButtonAjaxURL.replace(/&/g, "&");
20
+ url = url.replace(/&/g, "&");
21
 
22
  tb_show( title, url, false);
23
 
admin/admin-script.js CHANGED
@@ -3,13 +3,50 @@ jQuery(document).ready(function($){
3
  // WP_Table_Reloaded_Admin object will contain all localized strings
4
 
5
  $("#export_format").change(function () {
6
- if ( 'csv' == $(this).val() )
7
- $(".tr-export-delimiter").css('display','table-row');
8
- else
9
- $(".tr-export-delimiter").css('display','none');
10
  })
11
  .change();
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  $("#options_use_custom_css input").click(function () {
14
  if( $('#options_use_custom_css input:checked').val() ) {
15
  $('#options_custom_css').removeAttr("disabled");
@@ -38,13 +75,23 @@ jQuery(document).ready(function($){
38
  }
39
  });
40
 
 
 
 
 
 
 
 
 
 
 
41
  var insert_html = '';
42
 
43
  function add_html() {
44
  var old_value = $(this).val();
45
  var new_value = old_value + insert_html;
46
  $(this).val( new_value );
47
- $("#table_contents input").unbind('click', add_html);
48
  }
49
 
50
  $("#a-insert-link").click(function () {
@@ -54,7 +101,7 @@ jQuery(document).ready(function($){
54
  if ( link_text ) {
55
  insert_html = '<a href="' + link_url + '">' + link_text + '</a>';
56
  if ( confirm( WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertExplain + '\n\n' + insert_html ) ) {
57
- $("#table_contents input").bind('click', add_html);
58
  }
59
  }
60
  }
@@ -68,7 +115,7 @@ jQuery(document).ready(function($){
68
  // if ( image_alt ) { // won't check for alt, because there are cases where an empty one makes sense
69
  insert_html = '<img src="' + image_url + '" alt="' + image_alt + '" />';
70
  if ( true == confirm( WP_Table_Reloaded_Admin.str_DataManipulationImageInsertExplain + '\n\n' + insert_html ) ) {
71
- $("#table_contents input").bind('click', add_html);
72
  }
73
  // }
74
  }
3
  // WP_Table_Reloaded_Admin object will contain all localized strings
4
 
5
  $("#export_format").change(function () {
6
+ if ( 'csv' == $(this).val() )
7
+ $(".tr-export-delimiter").css('display','table-row');
8
+ else
9
+ $(".tr-export-delimiter").css('display','none');
10
  })
11
  .change();
12
 
13
+ var table_id = $(".wp-table-reloaded-options #table_id").val();
14
+ $(".wp-table-reloaded-options #table_id").change(function () {
15
+ if ( table_id != $(this).val() ) {
16
+ if ( confirm( WP_Table_Reloaded_Admin.str_ChangeTableID ) )
17
+ table_id = $(this).val();
18
+ else
19
+ $(this).val( table_id );
20
+ }
21
+ });
22
+
23
+ $(".tr-import-addreplace input").click(function () {
24
+ $('.tr-import-addreplace-table').css('display','none');
25
+
26
+ if( 'replace' == $('.tr-import-addreplace input:checked').val() ) {
27
+ $('.tr-import-addreplace-table').css('display','table-row');
28
+ }
29
+ });
30
+ $('.tr-import-addreplace input:checked').click();
31
+
32
+ $(".tr-import-from input").click(function () {
33
+ $('.tr-import-file').css('display','none');
34
+ $('.tr-import-url').css('display','none');
35
+ $('.tr-import-field').css('display','none');
36
+ $('.tr-import-server').css('display','none');
37
+
38
+ if( 'file-upload' == $('.tr-import-from input:checked').val() ) {
39
+ $('.tr-import-file').css('display','table-row');
40
+ } else if( 'url' == $('.tr-import-from input:checked').val() ) {
41
+ $('.tr-import-url').css('display','table-row');
42
+ } else if( 'form-field' == $('.tr-import-from input:checked').val() ) {
43
+ $('.tr-import-field').css('display','table-row');
44
+ } else if( 'server' == $('.tr-import-from input:checked').val() ) {
45
+ $('.tr-import-server').css('display','table-row');
46
+ }
47
+ });
48
+ $('.tr-import-from input:checked').click();
49
+
50
  $("#options_use_custom_css input").click(function () {
51
  if( $('#options_use_custom_css input:checked').val() ) {
52
  $('#options_custom_css').removeAttr("disabled");
75
  }
76
  });
77
 
78
+ /*
79
+ $("#table_contents textarea").keypress(function () {
80
+ var currentTextsize = $(this).val().split('\n').length;
81
+
82
+ if ( 0 < currentTextsize ) {
83
+ $(this).attr('rows', currentTextsize);
84
+ }
85
+ }).keypress();
86
+ */
87
+
88
  var insert_html = '';
89
 
90
  function add_html() {
91
  var old_value = $(this).val();
92
  var new_value = old_value + insert_html;
93
  $(this).val( new_value );
94
+ $("#table_contents textarea").unbind('click', add_html);
95
  }
96
 
97
  $("#a-insert-link").click(function () {
101
  if ( link_text ) {
102
  insert_html = '<a href="' + link_url + '">' + link_text + '</a>';
103
  if ( confirm( WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertExplain + '\n\n' + insert_html ) ) {
104
+ $("#table_contents textarea").bind('click', add_html);
105
  }
106
  }
107
  }
115
  // if ( image_alt ) { // won't check for alt, because there are cases where an empty one makes sense
116
  insert_html = '<img src="' + image_url + '" alt="' + image_alt + '" />';
117
  if ( true == confirm( WP_Table_Reloaded_Admin.str_DataManipulationImageInsertExplain + '\n\n' + insert_html ) ) {
118
+ $("#table_contents textarea").bind('click', add_html);
119
  }
120
  // }
121
  }
admin/admin-style.css CHANGED
@@ -1,6 +1,6 @@
1
  /******************************************
2
  * This CSS file belongs to the Admin part *
3
- * of WP-Table Reloaded 1.2! PLEASE DO NOT *
4
  * make any changes here! Thank you! *
5
  ******************************************/
6
 
@@ -19,9 +19,14 @@ table.wp-table-reloaded-options th {
19
 
20
  table.wp-table-reloaded-data-manipulation { width:100%; }
21
 
22
- table#table_contents td, table#table_contents th {
23
  white-space:nowrap;
24
- vertical-align: middle;
 
 
 
 
 
25
  }
26
 
27
  table#table_contents input[type=text] {
1
  /******************************************
2
  * This CSS file belongs to the Admin part *
3
+ * of WP-Table Reloaded 1.3! PLEASE DO NOT *
4
  * make any changes here! Thank you! *
5
  ******************************************/
6
 
19
 
20
  table.wp-table-reloaded-data-manipulation { width:100%; }
21
 
22
+ .widefat td {
23
  white-space:nowrap;
24
+ vertical-align: baseline!important;
25
+ }
26
+
27
+ table#table_contents td, table#table_contents th{
28
+ white-space:nowrap;
29
+ vertical-align:middle!important;
30
  }
31
 
32
  table#table_contents input[type=text] {
languages/wp-table-reloaded-by_BY.mo ADDED
Binary file
languages/wp-table-reloaded-by_BY.po ADDED
@@ -0,0 +1,873 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-Table Reloaded\n"
4
+ "PO-Revision-Date: 2009-06-11 22:21+0300\n"
5
+ "Last-Translator: Fat Cow <zhr@tut.by>\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: Belarusian\n"
11
+ "X-Poedit-Country: BELARUS\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
+ "POT-Creation-Date: \n"
16
+ "Language-Team: Fat Cow <zhr@tut.by>\n"
17
+ """Content-Type: text/plain; charset=UTF-8\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:38
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:39
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:40
32
+ msgid "XML - eXtended Markup Language"
33
+ msgstr "XML - eXtended Markup Language"
34
+
35
+ #: php/wp-table-reloaded-export.class.php:35
36
+ msgid "; (semicolon)"
37
+ msgstr "; (кропка з коскі)"
38
+
39
+ #: php/wp-table-reloaded-export.class.php:36
40
+ msgid ", (comma)"
41
+ msgstr ", (коска)"
42
+
43
+ #: php/wp-table-reloaded-export.class.php:37
44
+ msgid ": (colon)"
45
+ msgstr ": (двукроп'е)"
46
+
47
+ #: wp-table-reloaded-admin.php:150
48
+ #, php-format
49
+ msgid "Table \"%s\" added successfully."
50
+ msgstr "Табліца \"%s\" паспяхова дададзеная."
51
+
52
+ #: wp-table-reloaded-admin.php:173
53
+ msgid "Table edited successfully."
54
+ msgstr "Табліца паспяхова адрэдагаваная."
55
+
56
+ #: wp-table-reloaded-admin.php:189
57
+ msgid "Rows swapped successfully."
58
+ msgstr "Радкі паспяхова змененыя месцамі."
59
+
60
+ #: wp-table-reloaded-admin.php:208
61
+ msgid "Columns swapped successfully."
62
+ msgstr "Слупкі паспяхова змененыя месцамі."
63
+
64
+ #: wp-table-reloaded-admin.php:261
65
+ #: wp-table-reloaded-admin.php:310
66
+ msgid "Copy of"
67
+ msgstr "Копія"
68
+
69
+ #: wp-table-reloaded-admin.php:315
70
+ #, php-format
71
+ msgid "Table \"%s\" copied successfully."
72
+ msgstr "Табліца \"%s\" паспяхова скапіяваная."
73
+
74
+ #: wp-table-reloaded-admin.php:334
75
+ #, php-format
76
+ msgid "Table \"%s\" deleted successfully."
77
+ msgstr "Табліца \"%s\" паспяхова выдаленая."
78
+
79
+ #: wp-table-reloaded-admin.php:344
80
+ msgid "Row deleted successfully."
81
+ msgstr "Радок паспяхова выдаленая."
82
+
83
+ #: wp-table-reloaded-admin.php:357
84
+ msgid "Column deleted successfully."
85
+ msgstr "Слупок паспяхова выдалены."
86
+
87
+ #: wp-table-reloaded-admin.php:362
88
+ msgid "Delete failed."
89
+ msgstr "Памылка пры выдаленні."
90
+
91
+ #: wp-table-reloaded-admin.php:386
92
+ msgid "Row inserted successfully."
93
+ msgstr "Радок устаўленая паспяхова."
94
+
95
+ #: wp-table-reloaded-admin.php:395
96
+ msgid "Column inserted successfully."
97
+ msgstr "Слупок устаўлены паспяхова."
98
+
99
+ #: wp-table-reloaded-admin.php:398
100
+ msgid "Insert failed."
101
+ msgstr "Памылка пры ўстаўцы."
102
+
103
+ #: wp-table-reloaded-admin.php:425
104
+ msgid "Imported Table"
105
+ msgstr "Імпартаваная табліца"
106
+
107
+ #: wp-table-reloaded-admin.php:426
108
+ msgid "via form"
109
+ msgstr "з формы"
110
+
111
+ #: wp-table-reloaded-admin.php:445
112
+ msgid "Table could not be imported."
113
+ msgstr "Табліца не можа быць імпартаваная."
114
+
115
+ #: wp-table-reloaded-admin.php:489
116
+ #, php-format
117
+ msgid "Table \"%s\" exported successfully."
118
+ msgstr "Табліца \"%s\" экспартаваная паспяхова."
119
+
120
+ #: wp-table-reloaded-admin.php:517
121
+ msgid "Options saved successfully."
122
+ msgstr "Налады паспяхова захаваныя."
123
+
124
+ #: wp-table-reloaded-admin.php:535
125
+ msgid "WP-Table Reloaded"
126
+ msgstr "Праца з табліцамі"
127
+
128
+ #: wp-table-reloaded-admin.php:536
129
+ msgid "Plugin deactivated successfully."
130
+ msgstr "Убудова паспяхова дэактываваны."
131
+
132
+ #: wp-table-reloaded-admin.php:537
133
+ msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
134
+ msgstr "Усе табліцы, дадзеныя і налады былі выдаленыя. Зараз можна выдаліць сам убудова з дырэкторыі ўбудоў WordPress (wp-content/plugins)."
135
+
136
+ #: wp-table-reloaded-admin.php:553
137
+ #: wp-table-reloaded-admin.php:613
138
+ msgid "List of Tables"
139
+ msgstr "Спіс табліц"
140
+
141
+ #: wp-table-reloaded-admin.php:564
142
+ #: wp-table-reloaded-admin.php:628
143
+ #: wp-table-reloaded-admin.php:1008
144
+ msgid "ID"
145
+ msgstr "ID"
146
+
147
+ #: wp-table-reloaded-admin.php:565
148
+ #: wp-table-reloaded-admin.php:629
149
+ #: wp-table-reloaded-admin.php:697
150
+ #: wp-table-reloaded-admin.php:746
151
+ #: wp-table-reloaded-admin.php:1009
152
+ msgid "Table Name"
153
+ msgstr "Імя табліцы"
154
+
155
+ #: wp-table-reloaded-admin.php:566
156
+ #: wp-table-reloaded-admin.php:630
157
+ #: wp-table-reloaded-admin.php:701
158
+ #: wp-table-reloaded-admin.php:750
159
+ #: wp-table-reloaded-admin.php:1010
160
+ msgid "Description"
161
+ msgstr "Апісанне"
162
+
163
+ #: wp-table-reloaded-admin.php:567
164
+ #: wp-table-reloaded-admin.php:631
165
+ #: wp-table-reloaded-admin.php:1011
166
+ msgid "Action"
167
+ msgstr "Дзеянне"
168
+
169
+ #: wp-table-reloaded-admin.php:657
170
+ msgid "Edit"
171
+ msgstr "Змяніць"
172
+
173
+ #: wp-table-reloaded-admin.php:1543
174
+ msgid "Do you want to copy this table?"
175
+ msgstr "Вы жадаеце скапіяваць гэтую табліцу?"
176
+
177
+ #: wp-table-reloaded-admin.php:658
178
+ msgid "Copy"
179
+ msgstr "Капіяваць"
180
+
181
+ #: wp-table-reloaded-admin.php:659
182
+ msgid "Export"
183
+ msgstr "Экспарт"
184
+
185
+ #: wp-table-reloaded-admin.php:1544
186
+ msgid "The complete table and all content will be erased. Do you really want to delete it?"
187
+ msgstr "Табліца і ўсё яе змесціва будзе сцёрта. Вы сапраўды жадаеце выдаліць яе?"
188
+
189
+ #: wp-table-reloaded-admin.php:660
190
+ msgid "Delete"
191
+ msgstr "Выдаліць"
192
+
193
+ #: wp-table-reloaded-admin.php:596
194
+ #: wp-table-reloaded-admin.php:677
195
+ #: wp-table-reloaded-admin.php:1129
196
+ msgid "No tables found."
197
+ msgstr "Табліцы не знойдзеныя."
198
+
199
+ #: wp-table-reloaded-admin.php:677
200
+ #: wp-table-reloaded-admin.php:1129
201
+ #, php-format
202
+ msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
203
+ msgstr "Вы можаце <a href=\"%s\">дадаць</a> або <a href=\"%s\">імпартаваць</a>!"
204
+
205
+ #: wp-table-reloaded-admin.php:685
206
+ #: wp-table-reloaded-admin.php:1312
207
+ msgid "Add new Table"
208
+ msgstr "Стварыць табліцу"
209
+
210
+ #: wp-table-reloaded-admin.php:689
211
+ 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."
212
+ msgstr "Тут Вы можаце стварыць новую табліцу. Проста ўвядзіце назоў, апісанне (не абавязкова) і колькасць радкоў і слупкоў.<br/>Дадаць, уставіць або выдаліць радкі і слупкі Вы зможаце пазней."
213
+
214
+ #: wp-table-reloaded-admin.php:698
215
+ msgid "Enter Table Name"
216
+ msgstr "Увядзіце імя табліцы"
217
+
218
+ #: wp-table-reloaded-admin.php:702
219
+ msgid "Enter Description"
220
+ msgstr "Увядзіце апісанне"
221
+
222
+ #: wp-table-reloaded-admin.php:705
223
+ msgid "Number of Rows"
224
+ msgstr "Колькасць радкоў"
225
+
226
+ #: wp-table-reloaded-admin.php:709
227
+ msgid "Number of Columns"
228
+ msgstr "Колькасць слупкоў"
229
+
230
+ #: wp-table-reloaded-admin.php:716
231
+ msgid "Add Table"
232
+ msgstr "Дадаць табліцу"
233
+
234
+ #: wp-table-reloaded-admin.php:736
235
+ msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
236
+ msgstr "Тут Вы можаце змяняць дадзеныя ў табліцы. Яшчэ Вы можаце дадаваць або выдаляць радкі і слупкі."
237
+
238
+ #: wp-table-reloaded-admin.php:742
239
+ msgid "Table Information"
240
+ msgstr "Інфармацыя аб табліцы"
241
+
242
+ #: wp-table-reloaded-admin.php:768
243
+ msgid "Table Contents"
244
+ msgstr "Утрыманне табліцы"
245
+
246
+ #: wp-table-reloaded-admin.php:796
247
+ msgid "Insert Row"
248
+ msgstr "Уставіць радок"
249
+
250
+ #: wp-table-reloaded-admin.php:1545
251
+ msgid "Do you really want to delete this row?"
252
+ msgstr "Вы насамрэч жадаеце выдаліць гэты радок?"
253
+
254
+ #: wp-table-reloaded-admin.php:798
255
+ msgid "Delete Row"
256
+ msgstr "Выдаліць радок"
257
+
258
+ #: wp-table-reloaded-admin.php:808
259
+ msgid "Insert Column"
260
+ msgstr "Уставіць слупок"
261
+
262
+ #: wp-table-reloaded-admin.php:1546
263
+ msgid "Do you really want to delete this column?"
264
+ msgstr "Вы насамрэч жадаеце выдаліць гэты слупок?"
265
+
266
+ #: wp-table-reloaded-admin.php:810
267
+ msgid "Delete Column"
268
+ msgstr "Выдаліць слупок"
269
+
270
+ #: wp-table-reloaded-admin.php:815
271
+ msgid "Add Row"
272
+ msgstr "Дадаць радок"
273
+
274
+ #: wp-table-reloaded-admin.php:815
275
+ msgid "Add Column"
276
+ msgstr "Дадаць слупок"
277
+
278
+ #: wp-table-reloaded-admin.php:839
279
+ #, php-format
280
+ msgid "Swap rows %s and %s"
281
+ msgstr "Памяняць месцамі радка %s і %s"
282
+
283
+ #: wp-table-reloaded-admin.php:842
284
+ #: wp-table-reloaded-admin.php:862
285
+ msgid "Swap"
286
+ msgstr "Памяняць"
287
+
288
+ #: wp-table-reloaded-admin.php:859
289
+ #, php-format
290
+ msgid "Swap columns %s and %s"
291
+ msgstr "Памяняць месцамі слупкі %s і %s"
292
+
293
+ #: wp-table-reloaded-admin.php:895
294
+ msgid "Table Settings"
295
+ msgstr "Налады табліцы"
296
+
297
+ #: wp-table-reloaded-admin.php:897
298
+ msgid "These settings will only be used for this table."
299
+ msgstr "Гэтыя налады выкарыстоўваюцца толькі для гэтай табліцы."
300
+
301
+ #: wp-table-reloaded-admin.php:900
302
+ msgid "Alternating row colors"
303
+ msgstr "Розныя колеры для радкоў"
304
+
305
+ #: wp-table-reloaded-admin.php:901
306
+ msgid "Every second row will have an alternating background color."
307
+ msgstr "Кожны другі радок будзе мець іншы колер фону."
308
+
309
+ #: wp-table-reloaded-admin.php:904
310
+ msgid "Use Table Headline"
311
+ msgstr "Выкарыстаць загаловак табліцы"
312
+
313
+ #: wp-table-reloaded-admin.php:905
314
+ msgid "The first row of your table will use the [th] tag."
315
+ msgstr "Першы радок Вашай табліцы будзе выкарыстаць тэг [th]."
316
+
317
+ #: wp-table-reloaded-admin.php:908
318
+ msgid "Print Table Name"
319
+ msgstr "Друкаваць назоў табліцы"
320
+
321
+ #: wp-table-reloaded-admin.php:909
322
+ msgid "The Table Name will be written above the table in a [h2] tag."
323
+ msgstr "Імя табліцы будзе напісана над табліцай у тэгу [h2]."
324
+
325
+ #: wp-table-reloaded-admin.php:912
326
+ msgid "Print Table Description"
327
+ msgstr "Друкаваць апісанне табліцы"
328
+
329
+ #: wp-table-reloaded-admin.php:913
330
+ msgid "The Table Description will be written under the table."
331
+ msgstr "Апісанне табліцы будзе напісана пасля табліцы."
332
+
333
+ #: wp-table-reloaded-admin.php:916
334
+ msgid "Use Tablesorter"
335
+ msgstr "Выкарыстаць сартаванне ў табліцы"
336
+
337
+ #: wp-table-reloaded-admin.php:917
338
+ 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>"
339
+ msgstr "Вы можаце сартаваць табліцу выкарыстаючы <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. <small>Увага: Вы павінны ўключыць сартаванне табліц у \"Наладах убудовы\" і опцыя \"Выкарыстаць загаловак табліцы\" павінна быць уключаная для таго каб гэта працавала!</small>"
340
+
341
+ #: wp-table-reloaded-admin.php:758
342
+ #: wp-table-reloaded-admin.php:926
343
+ msgid "Update Changes"
344
+ msgstr "Захаваць змены"
345
+
346
+ #: wp-table-reloaded-admin.php:759
347
+ #: wp-table-reloaded-admin.php:927
348
+ msgid "Save and go back"
349
+ msgstr "Захаваць і вярнуцца"
350
+
351
+ #: wp-table-reloaded-admin.php:762
352
+ #: wp-table-reloaded-admin.php:930
353
+ msgid "Cancel"
354
+ msgstr "Адмена"
355
+
356
+ #: wp-table-reloaded-admin.php:932
357
+ msgid "Other actions"
358
+ msgstr "Іншыя дзеянні"
359
+
360
+ #: wp-table-reloaded-admin.php:935
361
+ msgid "Delete Table"
362
+ msgstr "Выдаліць табліцу"
363
+
364
+ #: wp-table-reloaded-admin.php:936
365
+ #: wp-table-reloaded-admin.php:1118
366
+ msgid "Export Table"
367
+ msgstr "Экспарт табліцы"
368
+
369
+ #: wp-table-reloaded-admin.php:947
370
+ #: wp-table-reloaded-admin.php:1313
371
+ msgid "Import a Table"
372
+ msgstr "Імпарт табліцы"
373
+
374
+ #: wp-table-reloaded-admin.php:958
375
+ msgid "Select Import Format"
376
+ msgstr "Вылучыце фармат для імпарту"
377
+
378
+ #: wp-table-reloaded-admin.php:1109
379
+ msgid "<small>(Only needed for CSV export.)</small>"
380
+ msgstr "<small>(Неабходна толькі для CSV.)</small>"
381
+
382
+ #: wp-table-reloaded-admin.php:968
383
+ msgid "Select File with Table to Import"
384
+ msgstr "Вылучыце файл з табліцай для імпарту"
385
+
386
+ #: wp-table-reloaded-admin.php:972
387
+ msgid "- or -"
388
+ msgstr "- або -"
389
+
390
+ #: wp-table-reloaded-admin.php:973
391
+ msgid "(upload will be preferred over pasting)"
392
+ msgstr "(спачатку загрузіць, потым уставіць)"
393
+
394
+ #: wp-table-reloaded-admin.php:976
395
+ msgid "Paste data with Table to Import"
396
+ msgstr "Устаўце дадзеныя з табліцай для імпарту"
397
+
398
+ #: wp-table-reloaded-admin.php:982
399
+ msgid "Import Table"
400
+ msgstr "Імпарт табліцы"
401
+
402
+ #: wp-table-reloaded-admin.php:1032
403
+ msgid "Import"
404
+ msgstr "Імпарт"
405
+
406
+ #: wp-table-reloaded-admin.php:1065
407
+ #: wp-table-reloaded-admin.php:1314
408
+ msgid "Export a Table"
409
+ msgstr "Экспарт табліцы"
410
+
411
+ #: wp-table-reloaded-admin.php:1069
412
+ 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."
413
+ msgstr "Тут Вы можаце зрабіць экспарт табліцы. Проста вылучыце ў табліцы патрэбны фармат экспарту і падзельнік (неабходна толькі для CSV).<br/>Вы можаце вылучыць файл для загрузкі экспарту. У адваротным выпадку ён будзе паказаны на гэтай старонцы."
414
+
415
+ #: wp-table-reloaded-admin.php:1077
416
+ msgid "Select Table to Export"
417
+ msgstr "Вылучыце табліцу для экспарту"
418
+
419
+ #: wp-table-reloaded-admin.php:1092
420
+ msgid "Select Export Format"
421
+ msgstr "Вылучыце фармат экспарту"
422
+
423
+ #: wp-table-reloaded-admin.php:1102
424
+ msgid "Select Delimiter to use"
425
+ msgstr "Вылучыце падзельнік"
426
+
427
+ #: wp-table-reloaded-admin.php:1112
428
+ msgid "Download file"
429
+ msgstr "Запампаваць файл"
430
+
431
+ #: wp-table-reloaded-admin.php:1113
432
+ msgid "Yes, I want to download the export file."
433
+ msgstr "Так, я жадаю запампаваць файл экспарту."
434
+
435
+ #: wp-table-reloaded-admin.php:1138
436
+ msgid "General Plugin Options"
437
+ msgstr "Галоўныя налады ўбудовы"
438
+
439
+ #: wp-table-reloaded-admin.php:1142
440
+ msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
441
+ msgstr "Вы можаце змяніць галоўныя налады ўбудовы.<br/>Яны паўплываюць на ўсе табліцы або на агульныя паводзіны ўбудовы."
442
+
443
+ #: wp-table-reloaded-admin.php:1149
444
+ msgid "Frontend Options"
445
+ msgstr "Знешнія налады"
446
+
447
+ #: wp-table-reloaded-admin.php:1153
448
+ msgid "Enable Tablesorter-JavaScript?"
449
+ msgstr "Дазволіць сартаванне ў табліцах з дапамогай JavaScript?"
450
+
451
+ #: wp-table-reloaded-admin.php:1175
452
+ msgid "Admin Options"
453
+ msgstr "Адміністрацыйныя налады"
454
+
455
+ #: wp-table-reloaded-admin.php:1179
456
+ msgid "Uninstall Plugin upon Deactivation?"
457
+ msgstr "Выдаліць убудову пасля дэактывацыі?"
458
+
459
+ #: wp-table-reloaded-admin.php:1190
460
+ msgid "Save Options"
461
+ msgstr "Захаваць налады"
462
+
463
+ #: wp-table-reloaded-admin.php:1196
464
+ msgid "Manually Uninstall Plugin"
465
+ msgstr "Выдаліць убудову ўручную"
466
+
467
+ #: wp-table-reloaded-admin.php:1198
468
+ 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!"
469
+ msgstr "Тут Вы можаце выдаліць убудову. Гэта <strong>прывядзе да выдалення</strong> усіх табліц, дадзеных, налад і т.д., якія ставяцца да ўбудовы, у тым ліку ўсе табліцы, якія вы дадалі або імпартавалі.<br/> Будзьце вельмі асцярожныя і націскайце на кнопку, калі Вы ведаеце што робіце!"
470
+
471
+ #: wp-table-reloaded-admin.php:1548
472
+ msgid "Do you really want to uninstall the plugin and delete ALL data?"
473
+ msgstr "Вы насамрэч жадаеце выдаліць гэтую ўбудову са ўсімі дадзенымі?"
474
+
475
+ #: wp-table-reloaded-admin.php:1549
476
+ msgid "Are you really sure?"
477
+ msgstr "Вы сапраўды ўпэўненыя?"
478
+
479
+ #: wp-table-reloaded-admin.php:1201
480
+ msgid "Uninstall Plugin WP-Table Reloaded"
481
+ msgstr "Выдаліць убудову WP-Table Reloaded"
482
+
483
+ #: wp-table-reloaded-admin.php:1212
484
+ msgid "Information about the plugin"
485
+ msgstr "Інфармацыя аб убудове"
486
+
487
+ #: wp-table-reloaded-admin.php:1218
488
+ msgid "Plugin Purpose"
489
+ msgstr "Мэта ўбудовы"
490
+
491
+ #: wp-table-reloaded-admin.php:1225
492
+ msgid "Usage"
493
+ msgstr "Выкарыстанне"
494
+
495
+ #: wp-table-reloaded-admin.php:1232
496
+ msgid "More Information and Documentation"
497
+ msgstr "Дадатковая інфармацыя і дакументацыя"
498
+
499
+ #: wp-table-reloaded-admin.php:1239
500
+ msgid "Author and Licence"
501
+ msgstr "Аўтар і ліцэнзія"
502
+
503
+ #: wp-table-reloaded-admin.php:1241
504
+ 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."
505
+ msgstr "Гэтая ўбудова напісаў <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. Ён даступны па ліцэнзіі Free Software under GPL 2."
506
+
507
+ #: wp-table-reloaded-admin.php:1246
508
+ msgid "Credits and Thanks"
509
+ msgstr "Падзякі"
510
+
511
+ #: wp-table-reloaded-admin.php:1311
512
+ msgid "List Tables"
513
+ msgstr "Спіс табліц"
514
+
515
+ #: wp-table-reloaded-admin.php:1316
516
+ msgid "Plugin Options"
517
+ msgstr "Налады ўбудовы"
518
+
519
+ #: wp-table-reloaded-admin.php:1317
520
+ msgid "About the Plugin"
521
+ msgstr "Аб убудове"
522
+
523
+ #: wp-table-reloaded-admin.php:733
524
+ #, php-format
525
+ msgid "Edit Table \"%s\""
526
+ msgstr "Рэдагаваць табліцу \"%s\""
527
+
528
+ #: wp-table-reloaded-admin.php:737
529
+ #, php-format
530
+ msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
531
+ msgstr "Калі вы жадаеце адлюстраваць табліцу на Вашай старонцы, у навіны або тэкставым виджете, выкарыстайце гэты код: <strong>[table id=%s /]</strong>"
532
+
533
+ #: wp-table-reloaded-admin.php:824
534
+ msgid "Data Manipulation"
535
+ msgstr "Праца з дадзенымі"
536
+
537
+ #: wp-table-reloaded-admin.php:866
538
+ msgid "Insert Link"
539
+ msgstr "Спасылка"
540
+
541
+ #: wp-table-reloaded-admin.php:866
542
+ msgid "Insert Image"
543
+ msgstr "Малюначак"
544
+
545
+ #: wp-table-reloaded-admin.php:1534
546
+ msgid "URL of link to insert"
547
+ msgstr "УРЛ спасылкі для ўстаўкі"
548
+
549
+ #: wp-table-reloaded-admin.php:1535
550
+ msgid "Text of link"
551
+ msgstr "Тэкст спасылкі"
552
+
553
+ #: wp-table-reloaded-admin.php:1536
554
+ msgid "To insert the following link into a cell, just click the cell after closing this dialog."
555
+ msgstr "Каб дадаць спасылку ў вочка, проста націсніце на вочка пасля зачынення гэтага дыялогавага акна."
556
+
557
+ #: wp-table-reloaded-admin.php:1537
558
+ msgid "URL of image to insert"
559
+ msgstr "УРЛ малюначка для ўстаўкі"
560
+
561
+ #: wp-table-reloaded-admin.php:1539
562
+ msgid "To insert the following image into a cell, just click the cell after closing this dialog."
563
+ msgstr "Каб уставіць малюначак у вочка, проста націсніце на вочка пасля зачынення гэтага дыялогавага акна."
564
+
565
+ #: wp-table-reloaded-admin.php:951
566
+ 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."
567
+ msgstr "Тут Вы можаце імпартаваць табліцу з наяўнай.<br/>Гэта можа быць CSV, XML або HTML файл. Калі нешта незразумела, калі ласка, звернецеся да дакументацыі."
568
+
569
+ #: wp-table-reloaded-admin.php:995
570
+ msgid "Import from original wp-Table plugin"
571
+ msgstr "Імпарт з арыгінальнай убудовы wp-Table"
572
+
573
+ #: wp-table-reloaded-admin.php:1547
574
+ msgid "Do you really want to import this table from the wp-Table plugin?"
575
+ msgstr "Вы насамрэч жадаеце імпартаваць гэтую табліцу з убудовы wp-Table?"
576
+
577
+ #: wp-table-reloaded-admin.php:1046
578
+ msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
579
+ msgstr "Убудова wp-Table ад Alex Rabe усталяваны, але табліцы не знойдзеныя."
580
+
581
+ #: wp-table-reloaded-admin.php:1157
582
+ msgid "Add custom CSS?"
583
+ msgstr "Дадаць адвольны CSS?"
584
+
585
+ #: wp-table-reloaded-admin.php:1164
586
+ msgid "Enter custom CSS"
587
+ msgstr "Увядзіце адвольны CSS"
588
+
589
+ #: wp-table-reloaded-admin.php:1533
590
+ msgid "Do you really want to activate this? You should only do that right before uninstallation!"
591
+ msgstr "Вы сапраўды жадаеце актываваць гэта? Вы павінны зрабіць гэта да выдалення!"
592
+
593
+ #: wp-table-reloaded-admin.php:1249
594
+ msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
595
+ msgstr "Дзякуй <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> за арыгінальная ўбудова wp-Table,"
596
+
597
+ #: wp-table-reloaded-admin.php:1251
598
+ msgid "the submitters of translations:"
599
+ msgstr "тым хто зрабіў пераклад:"
600
+
601
+ #: wp-table-reloaded-admin.php:1252
602
+ msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
603
+ msgstr "Албанскі (дзякуй <a href=\"http://www.romeolab.com/\">Romeo</a>)"
604
+
605
+ #: wp-table-reloaded-admin.php:1254
606
+ msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
607
+ msgstr "Французская мова (дзякуй <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
608
+
609
+ #: wp-table-reloaded-admin.php:1255
610
+ msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
611
+ msgstr "Рускі (дзякуй <a href=\"http://wp-skins.info/\">Truper</a>)"
612
+
613
+ #: wp-table-reloaded-admin.php:1257
614
+ msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
615
+ msgstr "Швецкі (дзякуй <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
616
+
617
+ #: wp-table-reloaded-admin.php:1258
618
+ msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
619
+ msgstr "Турэцкі (дзякуй <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
620
+
621
+ #: php/wp-table-reloaded-export.class.php:38
622
+ msgid ". (dot)"
623
+ msgstr ". (кропка)"
624
+
625
+ #: php/wp-table-reloaded-export.class.php:39
626
+ msgid "| (pipe)"
627
+ msgstr "| (чорта)"
628
+
629
+ #: wp-table-reloaded-admin.php:226
630
+ msgid "Table sorted successfully."
631
+ msgstr "Табліца паспяхова адсартаваная."
632
+
633
+ #: wp-table-reloaded-admin.php:265
634
+ msgid "Table copied successfully."
635
+ msgid_plural "Tables copied successfully."
636
+ msgstr[0] "Табліца паспяхова скапіяваная."
637
+ msgstr[1] "Табліцы паспяхова скапіяваныя."
638
+ msgstr[2] ""
639
+
640
+ #: wp-table-reloaded-admin.php:274
641
+ msgid "Table deleted successfully."
642
+ msgid_plural "Tables deleted successfully."
643
+ msgstr[0] "Табліца паспяхова выдаленая."
644
+ msgstr[1] "Табліцы паспяхова выдаленыя."
645
+ msgstr[2] ""
646
+
647
+ #: wp-table-reloaded-admin.php:287
648
+ msgid "Table imported successfully."
649
+ msgid_plural "Tables imported successfully."
650
+ msgstr[0] "Табліца паспяхова імпартаваная."
651
+ msgstr[1] "Табліцы паспяхова імпартаваныя."
652
+ msgstr[2] ""
653
+
654
+ #: wp-table-reloaded-admin.php:293
655
+ msgid "You did not select any tables!"
656
+ msgstr "Вы не вылучылі ні адной табліцы!"
657
+
658
+ #: wp-table-reloaded-admin.php:555
659
+ #: wp-table-reloaded-admin.php:616
660
+ msgid "This is a list of all available tables."
661
+ msgstr "Гэта спіс усіх даступных табліц."
662
+
663
+ #: wp-table-reloaded-admin.php:555
664
+ msgid "You may insert a table into a post or page here."
665
+ msgstr "Тут Вы можаце ўставіць табліцу ў навіну або старонку."
666
+
667
+ #: wp-table-reloaded-admin.php:556
668
+ msgid "Click the \"Insert\" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=&lt;the_table_ID&gt; /]</strong>)."
669
+ msgstr "Націсніце \"Уставіць\" пасля жаданай табліцы і адпаведны код будзе ўстаўлены ў рэдактар (<strong>[table id=&lt;the_table_ID&gt; /]</strong>)."
670
+
671
+ #: wp-table-reloaded-admin.php:587
672
+ msgid "Insert"
673
+ msgstr "Уставіць"
674
+
675
+ #: wp-table-reloaded-admin.php:616
676
+ msgid "You may add, edit, copy or delete tables here."
677
+ msgstr "Тут Вы можаце дадаваць, рэдагаваць, капіяваць або выдаляць табліцы."
678
+
679
+ #: wp-table-reloaded-admin.php:617
680
+ 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> or click the button \"Table\" in the editor toolbar."
681
+ msgstr "Калі Вы жадаеце адлюстраваць табліцу на старонцы, у навіны або тэкставым віджэце, то выкарыстайце код <strong>[table id=&lt;the_table_ID&gt; /]</strong> або націсніце на кнопку \"Табліца\" у панэлі рэдактара."
682
+
683
+ #: wp-table-reloaded-admin.php:668
684
+ #: wp-table-reloaded-admin.php:1040
685
+ msgid "Bulk actions:"
686
+ msgstr "Масавыя дзеянні:"
687
+
688
+ #: wp-table-reloaded-admin.php:668
689
+ msgid "Copy Tables"
690
+ msgstr "Капіяваць табліцы"
691
+
692
+ #: wp-table-reloaded-admin.php:668
693
+ msgid "Delete Tables"
694
+ msgstr "Выдаліць табліцы"
695
+
696
+ #: wp-table-reloaded-admin.php:768
697
+ #: wp-table-reloaded-admin.php:824
698
+ #: wp-table-reloaded-admin.php:895
699
+ #: wp-table-reloaded-admin.php:1265
700
+ msgid "Hide"
701
+ msgstr "Схаваць"
702
+
703
+ #: wp-table-reloaded-admin.php:768
704
+ #: wp-table-reloaded-admin.php:824
705
+ #: wp-table-reloaded-admin.php:895
706
+ #: wp-table-reloaded-admin.php:1265
707
+ msgid "Expand"
708
+ msgstr "Разгарнуць"
709
+
710
+ #: wp-table-reloaded-admin.php:878
711
+ msgid "ascending"
712
+ msgstr "па ўзрастанні"
713
+
714
+ #: wp-table-reloaded-admin.php:879
715
+ msgid "descending"
716
+ msgstr "па змяншэнні"
717
+
718
+ #: wp-table-reloaded-admin.php:882
719
+ #, php-format
720
+ msgid "Sort table by column %s in %s order"
721
+ msgstr "Сартаванне табліцы па слупках %s і %s"
722
+
723
+ #: wp-table-reloaded-admin.php:885
724
+ msgid "Sort"
725
+ msgstr "Сартаванне"
726
+
727
+ #: wp-table-reloaded-admin.php:1040
728
+ msgid "Import Tables"
729
+ msgstr "Імпарт табліц"
730
+
731
+ #: wp-table-reloaded-admin.php:1154
732
+ msgid "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options)."
733
+ msgstr "Так, дазволіць <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. Гэта ўключае сартаванне ў Вашых табліцах (можа быць актываваная для кожнай табліцы асобна)."
734
+
735
+ #: wp-table-reloaded-admin.php:1159
736
+ msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag."
737
+ msgstr "Так, уключыць і загрузіць наступны CSS-фрагмент на свой сайт усярэдзіне [style]-HTML-tag."
738
+
739
+ #: wp-table-reloaded-admin.php:1166
740
+ #, php-format
741
+ msgid "(You might get a better website performance, if you add the CSS styling to your theme's \"style.css\" <small>(located at %s)</small>) instead."
742
+ msgstr "(Вы можаце дамагчыся лепшай прадукцыйнасці сайта, калі дадасце CSS стылі ў файл тэмы \"style.css\" <small>(знаходзіцца %s)</small>)."
743
+
744
+ #: wp-table-reloaded-admin.php:1167
745
+ #, php-format
746
+ msgid "See the <a href=\"%s\">plugin website</a> for styling examples or use one of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
747
+ msgstr "Глядзіце <a href=\"%s\">сайт убудовы</a> для прагляду прыкладаў або выкарыстаць адзін з наступных: <a href=\"%s\">Прыклад стылю 1</a> <a href=\"%s\">Прыклад стылю 2</a>"
748
+
749
+ #: wp-table-reloaded-admin.php:1167
750
+ msgid "Just copy the contents of a file into the textarea."
751
+ msgstr "Проста скапіюйце змесціва файла ў вобласць уводу."
752
+
753
+ #: wp-table-reloaded-admin.php:1180
754
+ msgid "Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!"
755
+ msgstr "Так, выдаліць усё, калі ўбудова будзе адключаны. Увага: Вы павінны паставіць гэты сцяжок, непасрэдна перад адключэннем убудовы са старонкі ўбудоў WordPress!"
756
+
757
+ #: wp-table-reloaded-admin.php:1180
758
+ msgid "<small>(This setting does not influence the \"Manually Uninstall Plugin\" button below!)</small>"
759
+ msgstr "<small>(Гэты параметр не ўплывае на кнопку ніжэй \"Ручное выдаленне ўбудовы\"!)</small>"
760
+
761
+ #: wp-table-reloaded-admin.php:1220
762
+ msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
763
+ msgstr "Гэтая ўбудова дазволіць вам ствараць і кіраваць табліцамі ў панэлі адміністратара WordPress."
764
+
765
+ #: wp-table-reloaded-admin.php:1220
766
+ msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
767
+ msgstr "Гэтыя табліцы могуць утрымоўваць радкі, лічбы і нават HTML (напрыклад малюнкі або спасылкі)."
768
+
769
+ #: wp-table-reloaded-admin.php:1220
770
+ msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
771
+ msgstr "Вы можаце адлюстроўваць табліцы ў вашых навінах, на старонках або ў тэкставых виджетах, выкарыстаючы код."
772
+
773
+ #: wp-table-reloaded-admin.php:1220
774
+ msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
775
+ msgstr "Калі вы жадаеце адлюстроўваць свае табліцы ў вашай тэме, вы можаце выкарыстаць функцыі тэгаў шаблону."
776
+
777
+ #: wp-table-reloaded-admin.php:1227
778
+ msgid "At first you should add or import a table."
779
+ msgstr "Спачатку Вы павінны дадаць або імпартаваць табліцы."
780
+
781
+ #: wp-table-reloaded-admin.php:1227
782
+ msgid "This means that you either let the plugin create an empty table for you or that you load an existing table from either a CSV, XML or HTML file."
783
+ msgstr "Гэта азначае, што вы альбо ствараеце пустую табліцу, альбо Вы загружаеце наяўную табліцу з CSV, XML або HTML файла."
784
+
785
+ #: wp-table-reloaded-admin.php:1227
786
+ msgid "Then you can edit your data or change the structure of your table (e.g. by inserting or deleting rows or columns, swaping rows or columns or sorting them) and select specific table options like alternating row colors or whether to print the name or description, if you want."
787
+ msgstr "Затым вы можаце змяніць дадзеныя або структуру табліцы (напрыклад, шляхам уключэння або выдаленні радкоў і слупкоў, заменай радкоў і слупкоў або іх сартаваннем), і вылучыць налады для кожнай табліцы, такія як чаргаванне колеру ў радкоў, друкаваць назоў або апісанне."
788
+
789
+ #: wp-table-reloaded-admin.php:1227
790
+ msgid "To easily add a link or an image to a cell, use the provided buttons. Those will ask you for the URL and a title. Then you can click into a cell and the corresponding HTML will be added to it for you."
791
+ msgstr "Каб лёгка дадаваць спасылкі або малюнкі ў вочка, выкарыстайце кнопкі. Дзе Вы ўвядзеце адрас і назоў. Затым вы можаце націснуць на вочка і адпаведны HTML код будзе дададзены."
792
+
793
+ #: wp-table-reloaded-admin.php:1227
794
+ msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them."
795
+ msgstr "Каб уставіць табліцу ў вашы навіны, старонкі або тэкставыя виджеты, выкарыстайце код [table id=&lt;table-id&gt;]."
796
+
797
+ #: wp-table-reloaded-admin.php:1227
798
+ msgid "You can also select the desired table from a list (after clicking the button \"Table\" in the editor toolbar) and the corresponding shortcode will be added for you."
799
+ msgstr "Гэтак жа Вы можаце вылучыць патрабаваную табліцу з спісу (пасля націску на кнопку \"Табліцы\" у панэлі рэдактара) і адпаведны код будзе дададзены аўтаматычна."
800
+
801
+ #: wp-table-reloaded-admin.php:1227
802
+ msgid "You may also style your table via CSS. Example files are provided on the plugin website. Every table has the CSS class \"wp-table-reloaded\". Each table also has the class \"wp-table-reloaded-&lt;table-id&gt;\"."
803
+ msgstr "Вы таксама можаце змяняць стыль вашай табліцы з дапамогай CSS. Прыклады можна паглядзець на вэб-сайце ўбудовы. Кожная табліца мае CSS клас \"wp-table-reloaded\". Кожная табліца мае таксама клас \"wp-table-reloaded-&lt;table-id&gt;\"."
804
+
805
+ #: wp-table-reloaded-admin.php:1227
806
+ msgid "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 for example."
807
+ msgstr "Вы таксама можаце выкарыстаць класы \"column-&lt;number&gt;\" і \"row-&lt;number&gt;\" для змены стылю радкоў і слупкоў. Выкарыстайце гэты стыль, напрыклад, для змены шырыні калонак і выраўнаванне тэксту."
808
+
809
+ #: wp-table-reloaded-admin.php:1234
810
+ msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
811
+ msgstr "Больш інфармацыі Вы знойдзеце на a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">сайце ўбудовы</a> або на старонцы ўбудовы ў <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
812
+
813
+ #: wp-table-reloaded-admin.php:1234
814
+ #: wp-table-reloaded-admin.php:1325
815
+ msgid "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentation</a> or find out how to get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
816
+ msgstr "Глядзіце <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">дакументацыю</a> або пазнайце, як атрымаць <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">падтрымку</a>."
817
+
818
+ #: wp-table-reloaded-admin.php:1241
819
+ msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>a donation</strong></a> and rate the plugin in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
820
+ msgstr "Калі Вам спадабаўся ўбудова, калі ласка разгледзіце <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>ахвяраванне</strong></a> і ацэніце ўбудову ў <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
821
+
822
+ #: wp-table-reloaded-admin.php:1241
823
+ msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
824
+ msgstr "Ахвяраванні і добрыя адзнакі ў рэйтынгу падштурхнуць мяне да далейшай распрацоўкі ўбудовы і магчымасці падаць больш гадзін падтрымкі карыстачоў убудовы. Дзякуй за любую суму!"
825
+
826
+ #: wp-table-reloaded-admin.php:1250
827
+ msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
828
+ msgstr "Christian Bach за <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
829
+
830
+ #: wp-table-reloaded-admin.php:1253
831
+ msgid "Czech (thanks to <a href=\"http://separatista.net/\">Pavel</a>)"
832
+ msgstr "Чэшскі (thanks to <a href=\"http://separatista.net/\">Pavel</a>)"
833
+
834
+ #: wp-table-reloaded-admin.php:1256
835
+ msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Mat?as Halles</a>)"
836
+ msgstr "Гішпанская (дзякуй <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Mat?as Halles</a>)"
837
+
838
+ #: wp-table-reloaded-admin.php:1259
839
+ msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
840
+ msgstr "і ўсім ахвяраваўшым, прыхільнікам, аглядальнікам і карыстачам убудовы!"
841
+
842
+ #: wp-table-reloaded-admin.php:1265
843
+ msgid "Debug and Version Information"
844
+ msgstr "Адладка і інфармацыя аб версіі"
845
+
846
+ #: wp-table-reloaded-admin.php:1268
847
+ msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
848
+ msgstr "Вы выкарыстаеце наступную версію праграмнага забеспячэння. <strong>Просьба падаць гэтую інфармацыю ў паведамленнях аб памылках.</strong>"
849
+
850
+ #: wp-table-reloaded-admin.php:1325
851
+ msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
852
+ msgstr "Больш падрабязную інфармацыю можна знайсці на <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">сайце ўбудовы</a>."
853
+
854
+ #: wp-table-reloaded-admin.php:1538
855
+ msgid "''alt'' text of the image"
856
+ msgstr "''alt'' тэкст для малюначка"
857
+
858
+ #: wp-table-reloaded-admin.php:1540
859
+ msgid "Do you want to copy the selected tables?"
860
+ msgstr "Вы жадаеце скапіяваць вылучаныя табліцы?"
861
+
862
+ #: wp-table-reloaded-admin.php:1541
863
+ msgid "The selected tables and all content will be erased. Do you really want to delete them?"
864
+ msgstr "Вылучаныя табліцы і ўсё змесціва будзе сцёрта. Вы сапраўды жадаеце выдаліць іх?"
865
+
866
+ #: wp-table-reloaded-admin.php:1542
867
+ msgid "Do you really want to import the selected tables from the wp-Table plugin?"
868
+ msgstr "Вы сапраўды жадаеце імпартаваць вылучаныя табліцы з убудовы wp-Table?"
869
+
870
+ #: wp-table-reloaded-admin.php:1597
871
+ msgid "Table"
872
+ msgstr "Табліца"
873
+
languages/wp-table-reloaded-cs_CZ.mo CHANGED
Binary file
languages/wp-table-reloaded-cs_CZ.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: WP-Table Reloaded CZ (1.2)\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
5
- "POT-Creation-Date: 2009-05-06 08:33+0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Separatista <pavelevap@separatista.net>\n"
8
  "Language-Team: Separatista <pavelevap@separatista.net>\n"
@@ -50,826 +50,923 @@ msgstr ". (tečka)"
50
  msgid "| (pipe)"
51
  msgstr "| (svislá čára)"
52
 
53
- #: wp-table-reloaded-admin.php:150
54
  #, php-format
55
  msgid "Table \"%s\" added successfully."
56
  msgstr "Tabulka \"%s\" byla úspěšně vytvořena."
57
 
58
- #: wp-table-reloaded-admin.php:173
 
 
 
 
 
 
 
 
 
 
59
  msgid "Table edited successfully."
60
  msgstr "Tabulka byla úspěšně aktualizována."
61
 
62
- #: wp-table-reloaded-admin.php:189
63
  msgid "Rows swapped successfully."
64
  msgstr "Řádky byly úspěšně prohozeny."
65
 
66
- #: wp-table-reloaded-admin.php:208
67
  msgid "Columns swapped successfully."
68
  msgstr "Sloupce byly úspěšně prohozeny."
69
 
70
- #: wp-table-reloaded-admin.php:226
71
  msgid "Table sorted successfully."
72
  msgstr "Hodnoty v tabulce byly úspěšně seřazeny."
73
 
74
- #: wp-table-reloaded-admin.php:261
75
- #: wp-table-reloaded-admin.php:310
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
  msgid "Copy of"
77
  msgstr "Kopie -"
78
 
79
- #: wp-table-reloaded-admin.php:265
80
  msgid "Table copied successfully."
81
  msgid_plural "Tables copied successfully."
82
  msgstr[0] "Tabulka byla úspěšně zkopírována."
83
  msgstr[1] "Tabulky byly úspěšně zkopírovány."
84
  msgstr[2] "Tabulky byly úspěšně zkopírovány."
85
 
86
- #: wp-table-reloaded-admin.php:274
87
  msgid "Table deleted successfully."
88
  msgid_plural "Tables deleted successfully."
89
  msgstr[0] "Tabulka byla úspěšně smazána."
90
  msgstr[1] "Tabulky byly úspěšně smazány."
91
  msgstr[2] "Tabulky byly úspěšně smazány."
92
 
93
- #: wp-table-reloaded-admin.php:287
94
- #: wp-table-reloaded-admin.php:442
95
- #: wp-table-reloaded-admin.php:463
96
  msgid "Table imported successfully."
97
  msgid_plural "Tables imported successfully."
98
  msgstr[0] "Tabulka byla úspěšně importována."
99
  msgstr[1] "Tabulky byly úspěšně importovány."
100
  msgstr[2] "Tabulky byly úspěšně importovány."
101
 
102
- #: wp-table-reloaded-admin.php:293
103
  msgid "You did not select any tables!"
104
  msgstr "Nevybrali jste žádnou tabulku!"
105
 
106
- #: wp-table-reloaded-admin.php:315
107
  #, php-format
108
  msgid "Table \"%s\" copied successfully."
109
  msgstr "Tabulka \"%s\" byla úspěšně zkopírována."
110
 
111
- #: wp-table-reloaded-admin.php:334
112
  #, php-format
113
  msgid "Table \"%s\" deleted successfully."
114
  msgstr "Tabulka \"%s\" byla úspěšně smazána."
115
 
116
- #: wp-table-reloaded-admin.php:344
117
  msgid "Row deleted successfully."
118
  msgstr "Řádek byl úspěšně smazán."
119
 
120
- #: wp-table-reloaded-admin.php:357
121
  msgid "Column deleted successfully."
122
  msgstr "Sloupec byl úspěšně smazán."
123
 
124
- #: wp-table-reloaded-admin.php:362
125
  msgid "Delete failed."
126
  msgstr "Při mazání došlo k chybě."
127
 
128
- #: wp-table-reloaded-admin.php:386
129
  msgid "Row inserted successfully."
130
  msgstr "Řádek byl úspěšně vložen."
131
 
132
- #: wp-table-reloaded-admin.php:395
133
  msgid "Column inserted successfully."
134
  msgstr "Sloupec byl úspěšně vložen."
135
 
136
- #: wp-table-reloaded-admin.php:398
137
  msgid "Insert failed."
138
  msgstr "Při vkládání došlo k chybě."
139
 
140
- #: wp-table-reloaded-admin.php:425
 
 
141
  msgid "Imported Table"
142
  msgstr "Importovaná tabulka"
143
 
144
- #: wp-table-reloaded-admin.php:426
 
 
 
 
 
 
145
  msgid "via form"
146
  msgstr "pomocí formuláře"
147
 
148
- #: wp-table-reloaded-admin.php:445
 
149
  msgid "Table could not be imported."
150
  msgstr "Tabulka nemohla být importována."
151
 
152
- #: wp-table-reloaded-admin.php:489
 
 
 
 
 
153
  #, php-format
154
  msgid "Table \"%s\" exported successfully."
155
  msgstr "Tabulka \"%s\" byla úspěšně exportována."
156
 
157
- #: wp-table-reloaded-admin.php:517
158
  msgid "Options saved successfully."
159
  msgstr "Nastavení bylo úspěšně uloženo."
160
 
161
  #. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
162
  #. Plugin Name of an extension
163
- #: wp-table-reloaded-admin.php:535
164
  msgid "WP-Table Reloaded"
165
  msgstr "WP-Table Reloaded"
166
 
167
- #: wp-table-reloaded-admin.php:536
168
  msgid "Plugin deactivated successfully."
169
  msgstr "Plugin byl úspěšně deaktivován."
170
 
171
- #: wp-table-reloaded-admin.php:537
172
  msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
173
  msgstr "Všechny tabulky, jejich data a nastavení byly smazány. Nyní můžete smazat i samotnou složku pluginu, která se nachází ve Vašem adresáři s pluginy Wordpressu."
174
 
175
- #: wp-table-reloaded-admin.php:553
176
- #: wp-table-reloaded-admin.php:613
177
  msgid "List of Tables"
178
  msgstr "Správa tabulek"
179
 
180
- #: wp-table-reloaded-admin.php:555
181
- #: wp-table-reloaded-admin.php:616
182
  msgid "This is a list of all available tables."
183
  msgstr "Zde vidíte přehled všech dosud vytvořených tabulek."
184
 
185
- #: wp-table-reloaded-admin.php:555
186
  msgid "You may insert a table into a post or page here."
187
  msgstr "Můžete vybranou tabulku vložit přímo do příspěvku nebo stránky."
188
 
189
- #: wp-table-reloaded-admin.php:556
190
  msgid "Click the \"Insert\" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=&lt;the_table_ID&gt; /]</strong>)."
191
  msgstr "Vyberte si tabulku a klikněte na odkaz \"Vložit\", čímž bude odpovídající zkrácený zápis (<strong>[table id=&lt;the_table_ID&gt; /]</strong>) automaticky vložen."
192
 
193
- #: wp-table-reloaded-admin.php:564
194
- #: wp-table-reloaded-admin.php:628
195
- #: wp-table-reloaded-admin.php:1008
196
  msgid "ID"
197
  msgstr "ID"
198
 
199
- #: wp-table-reloaded-admin.php:565
200
- #: wp-table-reloaded-admin.php:629
201
- #: wp-table-reloaded-admin.php:697
202
- #: wp-table-reloaded-admin.php:746
203
- #: wp-table-reloaded-admin.php:1009
204
  msgid "Table Name"
205
  msgstr "Název tabulky"
206
 
207
- #: wp-table-reloaded-admin.php:566
208
- #: wp-table-reloaded-admin.php:630
209
- #: wp-table-reloaded-admin.php:701
210
- #: wp-table-reloaded-admin.php:750
211
- #: wp-table-reloaded-admin.php:1010
212
  msgid "Description"
213
  msgstr "Stručný popis"
214
 
215
- #: wp-table-reloaded-admin.php:567
216
- #: wp-table-reloaded-admin.php:631
217
- #: wp-table-reloaded-admin.php:1011
218
  msgid "Action"
219
  msgstr "Akce"
220
 
221
- #: wp-table-reloaded-admin.php:587
222
  msgid "Insert"
223
  msgstr "Vložit"
224
 
225
- #: wp-table-reloaded-admin.php:596
226
- #: wp-table-reloaded-admin.php:677
227
- #: wp-table-reloaded-admin.php:1129
228
  msgid "No tables found."
229
  msgstr "Nebyly nalezeny žádné vytvořené tabulky."
230
 
231
- #: wp-table-reloaded-admin.php:616
232
  msgid "You may add, edit, copy or delete tables here."
233
  msgstr "Můžete zde vytvářet, upravovat, kopírovat nebo mazat tabulky."
234
 
235
- #: wp-table-reloaded-admin.php:617
236
  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> or click the button \"Table\" in the editor toolbar."
237
  msgstr "Pokud chcete některou tabulku vložit do příspěvku, stránky nebo textového widgetu, použijte buď zkrácený zápis <strong>[table id=&lt;the_table_ID&gt; /]</strong> nebo přímo tlačítko \"tabulky\" v HTML editoru."
238
 
239
- #: wp-table-reloaded-admin.php:657
240
  msgid "Edit"
241
  msgstr "Upravit"
242
 
243
- #: wp-table-reloaded-admin.php:658
244
  msgid "Copy"
245
  msgstr "Kopírovat"
246
 
247
- #: wp-table-reloaded-admin.php:659
248
  msgid "Export"
249
  msgstr "Export"
250
 
251
- #: wp-table-reloaded-admin.php:660
252
  msgid "Delete"
253
  msgstr "Smazat"
254
 
255
- #: wp-table-reloaded-admin.php:668
256
- #: wp-table-reloaded-admin.php:1040
257
  msgid "Bulk actions:"
258
  msgstr "Hromadné úpravy:"
259
 
260
- #: wp-table-reloaded-admin.php:668
261
  msgid "Copy Tables"
262
  msgstr "Kopírovat tabulky"
263
 
264
- #: wp-table-reloaded-admin.php:668
265
  msgid "Delete Tables"
266
  msgstr "Smazat tabulky"
267
 
268
- #: wp-table-reloaded-admin.php:677
269
- #: wp-table-reloaded-admin.php:1129
270
  #, php-format
271
  msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
272
  msgstr "Můžete si nějakou <a href=\"%s\">vytvořit</a> nebo <a href=\"%s\">naimportovat</a>!"
273
 
274
- #: wp-table-reloaded-admin.php:685
275
- #: wp-table-reloaded-admin.php:1312
276
  msgid "Add new Table"
277
  msgstr "Vytvořit tabulku"
278
 
279
- #: wp-table-reloaded-admin.php:689
280
  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."
281
  msgstr "Zde můžete vytvořit novou tabulku. Stačí pouze zadat její název, stručný popis (volitelné) a počet řádků a sloupců.<br/>Později také můžete přidávat nové řádky a sloupce, vkládat je na libovolné místo v tabulce a mazat je."
282
 
283
- #: wp-table-reloaded-admin.php:698
284
  msgid "Enter Table Name"
285
  msgstr "Zadejte název tabulky"
286
 
287
- #: wp-table-reloaded-admin.php:702
288
  msgid "Enter Description"
289
  msgstr "Zadejte stručný popis"
290
 
291
- #: wp-table-reloaded-admin.php:705
292
  msgid "Number of Rows"
293
  msgstr "Počet řádků"
294
 
295
- #: wp-table-reloaded-admin.php:709
296
  msgid "Number of Columns"
297
  msgstr "Počet sloupců"
298
 
299
- #: wp-table-reloaded-admin.php:716
300
  msgid "Add Table"
301
  msgstr "Vytvořit tabulku"
302
 
303
- #: wp-table-reloaded-admin.php:733
304
  #, php-format
305
  msgid "Edit Table \"%s\""
306
  msgstr "Upravit tabulku \"%s\""
307
 
308
- #: wp-table-reloaded-admin.php:736
309
  msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
310
  msgstr "Zde můžete upravovat samotný obsah tabulky, stejně jako přidávat nebo mazat sloupce a řádky."
311
 
312
- #: wp-table-reloaded-admin.php:737
313
  #, php-format
314
  msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
315
  msgstr "Pokud chcete některou tabulku zobrazit přímo v příspěvku, stránce nebo textovém widgetu, použijte následující zkrácený zápis: <strong>[table id=%s /]</strong>"
316
 
317
- #: wp-table-reloaded-admin.php:742
318
  msgid "Table Information"
319
  msgstr "Informace o tabulce"
320
 
321
- #: wp-table-reloaded-admin.php:758
322
- #: wp-table-reloaded-admin.php:926
 
 
 
 
323
  msgid "Update Changes"
324
  msgstr "Aktualizovat změny"
325
 
326
- #: wp-table-reloaded-admin.php:759
327
- #: wp-table-reloaded-admin.php:927
328
  msgid "Save and go back"
329
  msgstr "Aktualizovat a vrátit se zpět"
330
 
331
- #: wp-table-reloaded-admin.php:762
332
- #: wp-table-reloaded-admin.php:930
333
  msgid "Cancel"
334
  msgstr "Zrušit"
335
 
336
- #: wp-table-reloaded-admin.php:768
337
  msgid "Table Contents"
338
  msgstr "Obsah tabulky"
339
 
340
- #: wp-table-reloaded-admin.php:768
341
- #: wp-table-reloaded-admin.php:824
342
- #: wp-table-reloaded-admin.php:895
343
- #: wp-table-reloaded-admin.php:1265
344
  msgid "Hide"
345
  msgstr "Skrýt"
346
 
347
- #: wp-table-reloaded-admin.php:768
348
- #: wp-table-reloaded-admin.php:824
349
- #: wp-table-reloaded-admin.php:895
350
- #: wp-table-reloaded-admin.php:1265
351
  msgid "Expand"
352
  msgstr "Zobrazit"
353
 
354
- #: wp-table-reloaded-admin.php:796
355
  msgid "Insert Row"
356
  msgstr "Vložit řádek"
357
 
358
- #: wp-table-reloaded-admin.php:798
359
  msgid "Delete Row"
360
  msgstr "Smazat řádek"
361
 
362
- #: wp-table-reloaded-admin.php:808
363
  msgid "Insert Column"
364
  msgstr "Vložit sloupec"
365
 
366
- #: wp-table-reloaded-admin.php:810
367
  msgid "Delete Column"
368
  msgstr "Smazat sloupec"
369
 
370
- #: wp-table-reloaded-admin.php:815
371
- msgid "Add Row"
372
- msgstr "Přidat řádek"
 
 
 
 
 
 
373
 
374
- #: wp-table-reloaded-admin.php:815
375
- msgid "Add Column"
376
- msgstr "Přidat sloupec"
 
377
 
378
- #: wp-table-reloaded-admin.php:824
379
  msgid "Data Manipulation"
380
  msgstr "Operace s obsahem tabulky"
381
 
382
- #: wp-table-reloaded-admin.php:839
383
  #, php-format
384
  msgid "Swap rows %s and %s"
385
  msgstr "Prohodit řádky %s a %s"
386
 
387
- #: wp-table-reloaded-admin.php:842
388
- #: wp-table-reloaded-admin.php:862
389
  msgid "Swap"
390
  msgstr "Prohodit"
391
 
392
- #: wp-table-reloaded-admin.php:859
393
  #, php-format
394
  msgid "Swap columns %s and %s"
395
  msgstr "Prohodit sloupce %s a %s"
396
 
397
- #: wp-table-reloaded-admin.php:866
398
  msgid "Insert Link"
399
  msgstr "Vložit odkaz"
400
 
401
- #: wp-table-reloaded-admin.php:866
402
  msgid "Insert Image"
403
  msgstr "Vložit obrázek"
404
 
405
- #: wp-table-reloaded-admin.php:878
406
  msgid "ascending"
407
  msgstr "vzestupně"
408
 
409
- #: wp-table-reloaded-admin.php:879
410
  msgid "descending"
411
  msgstr "sestupně"
412
 
413
- #: wp-table-reloaded-admin.php:882
414
  #, php-format
415
  msgid "Sort table by column %s in %s order"
416
  msgstr "Seřadit data v tabulce podle sloupce %s %s"
417
 
418
- #: wp-table-reloaded-admin.php:885
419
  msgid "Sort"
420
  msgstr "Seřadit"
421
 
422
- #: wp-table-reloaded-admin.php:895
423
  msgid "Table Settings"
424
  msgstr "Nastavení tabulky"
425
 
426
- #: wp-table-reloaded-admin.php:897
427
  msgid "These settings will only be used for this table."
428
  msgstr "Toto nastavení bude použito pouze pro tuto tabulku."
429
 
430
- #: wp-table-reloaded-admin.php:900
431
  msgid "Alternating row colors"
432
  msgstr "Střídaní barev řádků tabulky"
433
 
434
- #: wp-table-reloaded-admin.php:901
435
  msgid "Every second row will have an alternating background color."
436
  msgstr "Každý druhý řádek bude mít odlišné barevné pozadí."
437
 
438
- #: wp-table-reloaded-admin.php:904
439
  msgid "Use Table Headline"
440
  msgstr "Použít záhlaví tabulky"
441
 
442
- #: wp-table-reloaded-admin.php:905
443
  msgid "The first row of your table will use the [th] tag."
444
  msgstr "První řádek Vaší tabulky bude použit jako záhlaví a bude mu přiřazena HTML značka [th]."
445
 
446
- #: wp-table-reloaded-admin.php:908
447
  msgid "Print Table Name"
448
  msgstr "Zobrazit název tabulky"
449
 
450
- #: wp-table-reloaded-admin.php:909
451
  msgid "The Table Name will be written above the table in a [h2] tag."
452
  msgstr "Název tabulky bude zobrazen nad tabulkou a bude mu přiřazena HTML značka [h2]."
453
 
454
- #: wp-table-reloaded-admin.php:912
455
  msgid "Print Table Description"
456
  msgstr "Zobrazit stručný popis"
457
 
458
- #: wp-table-reloaded-admin.php:913
459
  msgid "The Table Description will be written under the table."
460
  msgstr "Stručný popis bude zobrazen pod tabulkou."
461
 
462
- #: wp-table-reloaded-admin.php:916
463
  msgid "Use Tablesorter"
464
  msgstr "Použít Tablesorter"
465
 
466
- #: wp-table-reloaded-admin.php:917
467
  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>"
468
  msgstr "Můžete čtenářům povolit vlastní interaktivní řazení dat v tabulce pomocí jQuery pluginu <a href=\"http://www.tablesorter.com/\">Tablesorter</a>. <small>Upozornění: Musíte Tablesorter nejdříve globálně povolit v nabídce \"Nastavení pluginu\" a zároveň musí být u konkrétní tabulky povolena možnost \"Použít záhlaví tabulky\", aby vše správně fungovalo!</small>"
469
 
470
- #: wp-table-reloaded-admin.php:932
471
  msgid "Other actions"
472
  msgstr "Další možnosti"
473
 
474
- #: wp-table-reloaded-admin.php:935
475
  msgid "Delete Table"
476
  msgstr "Smazat tabulku"
477
 
478
- #: wp-table-reloaded-admin.php:936
479
- #: wp-table-reloaded-admin.php:1118
480
  msgid "Export Table"
481
  msgstr "Exportovat tabulku"
482
 
483
- #: wp-table-reloaded-admin.php:947
484
- #: wp-table-reloaded-admin.php:1313
485
  msgid "Import a Table"
486
  msgstr "Importovat tabulku"
487
 
488
- #: wp-table-reloaded-admin.php:951
489
  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."
490
  msgstr "Zde můžete vytvořit tabulku pomocí importu z Vašich již existujících dat.<br/>Podporovány jsou formáty souborů CSV, XML nebo HTML. Musíte však dodržet požadovanou strukturu dat, kterou naleznete s dalšími podrobnostmi v manuálu."
491
 
492
- #: wp-table-reloaded-admin.php:958
493
  msgid "Select Import Format"
494
  msgstr "Vyberte formát importovaného souboru"
495
 
496
- #: wp-table-reloaded-admin.php:968
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
497
  msgid "Select File with Table to Import"
498
  msgstr "Vyberte konkrétní soubor s tabulkovými daty, která budou naimportována"
499
 
500
- #: wp-table-reloaded-admin.php:972
501
- msgid "- or -"
502
- msgstr "- nebo -"
503
 
504
- #: wp-table-reloaded-admin.php:973
505
- msgid "(upload will be preferred over pasting)"
506
- msgstr "(při zpracování dat bude upřednostněn vybraný souboru před přímo vloženými daty)"
507
 
508
- #: wp-table-reloaded-admin.php:976
509
  msgid "Paste data with Table to Import"
510
  msgstr "Vložte tabulková data, která budou naimportována"
511
 
512
- #: wp-table-reloaded-admin.php:982
513
  msgid "Import Table"
514
  msgstr "Importovat tabulku"
515
 
516
- #: wp-table-reloaded-admin.php:995
517
  msgid "Import from original wp-Table plugin"
518
  msgstr "Importovat tabulky z původního pluginu wp-Table"
519
 
520
- #: wp-table-reloaded-admin.php:1032
521
  msgid "Import"
522
  msgstr "Importovat"
523
 
524
- #: wp-table-reloaded-admin.php:1040
525
  msgid "Import Tables"
526
  msgstr "Importovat tabulky"
527
 
528
- #: wp-table-reloaded-admin.php:1046
529
  msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
530
  msgstr "Vypadá to, že máte sice nainstalovaný také původní plugin wp-Table (jehož autorem je Alex Rabe), ale nebyly v něm nalezeny žádné tabulky."
531
 
532
- #: wp-table-reloaded-admin.php:1065
533
- #: wp-table-reloaded-admin.php:1314
534
  msgid "Export a Table"
535
  msgstr "Exportovat tabulku"
536
 
537
- #: wp-table-reloaded-admin.php:1069
538
  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."
539
  msgstr "Zde můžete exportovat tabulku. Stačí si ji vybrat a zvolit příslušný exportní formát a oddělovač dat (potřebné pouze pro formát CSV).<br/> Můžete si také zvolit, zda si chcete exportovaný soubor stáhnout, jinak bude zobrazen na této stránce."
540
 
541
- #: wp-table-reloaded-admin.php:1077
542
  msgid "Select Table to Export"
543
  msgstr "Zvolte tabulku, kterou chcete exportovat"
544
 
545
- #: wp-table-reloaded-admin.php:1092
546
  msgid "Select Export Format"
547
  msgstr "Zvolte exportní formát"
548
 
549
- #: wp-table-reloaded-admin.php:1102
550
  msgid "Select Delimiter to use"
551
  msgstr "Zvolte oddělovač dat"
552
 
553
- #: wp-table-reloaded-admin.php:1109
554
  msgid "<small>(Only needed for CSV export.)</small>"
555
  msgstr "<small>(Potřebné pouze pro exportní formát CSV.)</small>"
556
 
557
- #: wp-table-reloaded-admin.php:1112
558
  msgid "Download file"
559
  msgstr "Stáhnout soubor"
560
 
561
- #: wp-table-reloaded-admin.php:1113
562
  msgid "Yes, I want to download the export file."
563
  msgstr "Ano, exportovaný soubor s tabulkou si chci rovnou stáhnout."
564
 
565
- #: wp-table-reloaded-admin.php:1138
566
  msgid "General Plugin Options"
567
  msgstr "Obecné nastavení pluginu"
568
 
569
- #: wp-table-reloaded-admin.php:1142
570
  msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
571
  msgstr "Zde můžete měnit následující globální nastavení pluginu.<br/>Toto nastavení ovlivní všechny tabulky nebo obecné vlastnosti pluginu."
572
 
573
- #: wp-table-reloaded-admin.php:1149
574
  msgid "Frontend Options"
575
  msgstr "Nastavení zobrazení tabulek pro čtenáře"
576
 
577
- #: wp-table-reloaded-admin.php:1153
578
  msgid "Enable Tablesorter-JavaScript?"
579
  msgstr "Povolit Tablesorter?"
580
 
581
- #: wp-table-reloaded-admin.php:1154
582
  msgid "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options)."
583
  msgstr "Ano, povolit jQuery plugin <a href=\"http://www.tablesorter.com/\">Tablesorter</a>. Tato volba umožňuje, aby si mohli čtenáři sami interaktivně a libovolně řadit data v tabulce tak, jak potřebují (může být aktivováno také selektivně pro každou tabulku zvlášť v konkrétních vlastnostech tabulky)."
584
 
585
- #: wp-table-reloaded-admin.php:1157
586
  msgid "Add custom CSS?"
587
  msgstr "Použít vlastní CSS?"
588
 
589
- #: wp-table-reloaded-admin.php:1159
590
  msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag."
591
  msgstr "Ano, chci použít na svém webu následující CSS styly (objeví se v rámci HTML značky [style])."
592
 
593
- #: wp-table-reloaded-admin.php:1164
594
  msgid "Enter custom CSS"
595
  msgstr "Vložit vlastní CSS"
596
 
597
- #: wp-table-reloaded-admin.php:1166
598
  #, php-format
599
  msgid "(You might get a better website performance, if you add the CSS styling to your theme's \"style.css\" <small>(located at %s)</small>) instead."
600
  msgstr "(Můžete zvýšit výkon svého webu také tím, že vlastní tabulkové CSS styly místo tohoto pole přidáte přímo do souboru \"style.css\" ve Vaší šabloně <small>(soubor je umístěn zde: %s)</small>)."
601
 
602
- #: wp-table-reloaded-admin.php:1167
603
  #, php-format
604
  msgid "See the <a href=\"%s\">plugin website</a> for styling examples or use one of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
605
  msgstr "Pro další informace o CSS stylování tabulek navštivte přímo <a href=\"%s\">web pluginu</a>, nebo použijte některý z následujících vzorů: <a href=\"%s\">Příklad 1</a>, <a href=\"%s\">Příklad 2</a>."
606
 
607
- #: wp-table-reloaded-admin.php:1167
608
  msgid "Just copy the contents of a file into the textarea."
609
  msgstr "Stačí pouze nakopírovat CSS získané z konkrétního příkladu do pole pro vložení vlastního CSS."
610
 
611
- #: wp-table-reloaded-admin.php:1175
612
  msgid "Admin Options"
613
  msgstr "Nastavení pro administraci"
614
 
615
- #: wp-table-reloaded-admin.php:1179
616
  msgid "Uninstall Plugin upon Deactivation?"
617
  msgstr "Odinstalovat plugin při jeho deaktivaci?"
618
 
619
- #: wp-table-reloaded-admin.php:1180
620
  msgid "Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!"
621
  msgstr "Ano, chci všechno odinstalovat, pokud bude plugin deaktivován. Upozornění: Tuto možnost byste měli povolit pouze těsně před samotnou deaktivací tohoto pluginu z Přehledu pluginů!"
622
 
623
- #: wp-table-reloaded-admin.php:1180
624
  msgid "<small>(This setting does not influence the \"Manually Uninstall Plugin\" button below!)</small>"
625
  msgstr "<small>(Toto nastavení nijak neovlivňuje možnost \"Ruční odinstalace pluginu\", kterou můžete provést níže!)</small>"
626
 
627
- #: wp-table-reloaded-admin.php:1190
628
  msgid "Save Options"
629
  msgstr "Uložit nastavení"
630
 
631
- #: wp-table-reloaded-admin.php:1196
632
  msgid "Manually Uninstall Plugin"
633
  msgstr "Ručně odinstalovat plugin"
634
 
635
- #: wp-table-reloaded-admin.php:1198
636
  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!"
637
  msgstr "Zde můžete plugin kompletně odinstalovat. Touto akcí <strong>smažete</strong> všechny tabulky, data a nastavení, která s tímto pluginem souvisí, a to včetně všech vytvořených nebo naimportovaných tabulek.<br/> Odinstalace je nevratný proces, takže buďte velmi opatrní a ujistěte se, že chcete plugin opravdu kompletně smazat!"
638
 
639
- #: wp-table-reloaded-admin.php:1201
640
  msgid "Uninstall Plugin WP-Table Reloaded"
641
  msgstr "Odinstalovat plugin WP-Table Reloaded"
642
 
643
- #: wp-table-reloaded-admin.php:1212
644
  msgid "Information about the plugin"
645
  msgstr "Informace o pluginu"
646
 
647
- #: wp-table-reloaded-admin.php:1218
648
  msgid "Plugin Purpose"
649
  msgstr "K čemu je možné plugin použít?"
650
 
651
- #: wp-table-reloaded-admin.php:1220
652
  msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
653
  msgstr "Pomocí pluginu můžete jednoduše vytvářet a spravovat tabulky přímo v administraci Wordpressu."
654
 
655
- #: wp-table-reloaded-admin.php:1220
656
  msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
657
  msgstr "Tabulky mohou kromě písmen a čísel obsahovat také HTML značky (tzn. že můžete do tabulky vkládat odkazy nebo obrázky)."
658
 
659
- #: wp-table-reloaded-admin.php:1220
660
  msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
661
  msgstr "Poté můžete tabulky vkládat do příspěvků, stránek nebo textových widgetů pomocí jednoduchého zkráceného zápisu."
662
 
663
- #: wp-table-reloaded-admin.php:1220
664
  msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
665
  msgstr "Pokud chcete zobrazit Vaše tabulky kdekoliv jinde v šabloně, můžete použít příslušné funkce."
666
 
667
- #: wp-table-reloaded-admin.php:1225
668
  msgid "Usage"
669
  msgstr "Použití"
670
 
671
- #: wp-table-reloaded-admin.php:1227
672
  msgid "At first you should add or import a table."
673
  msgstr "Nejdříve byste měli vytvořit, nebo naimportovat nějakou tabulku."
674
 
675
- #: wp-table-reloaded-admin.php:1227
676
  msgid "This means that you either let the plugin create an empty table for you or that you load an existing table from either a CSV, XML or HTML file."
677
  msgstr "To znamená, že si můžete nechat pluginem vytvořit novou prázdnou tabulku, nebo můžete naimportovat nějakou Vaši tabulku ze souboru ve formátu CSV, XML nebo HTML."
678
 
679
- #: wp-table-reloaded-admin.php:1227
680
  msgid "Then you can edit your data or change the structure of your table (e.g. by inserting or deleting rows or columns, swaping rows or columns or sorting them) and select specific table options like alternating row colors or whether to print the name or description, if you want."
681
  msgstr "Poté můžete libovolně upravovat data v tabulce, měnit její strukturu (tj. přidávat či mazat řádky a sloupce, přesunovat je a také řadit data podle jednotlivých sloupců) a používat další specifická nastavení jako střídaní barev řádků v tabulce nebo zobrazování názvu a stručného popisu."
682
 
683
- #: wp-table-reloaded-admin.php:1227
684
  msgid "To easily add a link or an image to a cell, use the provided buttons. Those will ask you for the URL and a title. Then you can click into a cell and the corresponding HTML will be added to it for you."
685
  msgstr "Pro přidání odkazu nebo obrázku do tabulky jsou připravena příslušná tlačítka, pomocí kterých jednoduše zadáte URL a text odkazu a potom pouze kliknete tam, kam má být odpovídající vygenerovaný HTML kód automaticky přidán."
686
 
687
- #: wp-table-reloaded-admin.php:1227
688
  msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them."
689
  msgstr "Pro vložení tabulky do příspěvku, stránky nebo textového widgetu pak stačí napsat pouze zkrácený zápis [table id=&lt;table-id&gt;]."
690
 
691
- #: wp-table-reloaded-admin.php:1227
692
  msgid "You can also select the desired table from a list (after clicking the button \"Table\" in the editor toolbar) and the corresponding shortcode will be added for you."
693
  msgstr "Můžete si tabulku také přímo vybrat z jejich seznamu (dostanete se k němu kliknutím na tlačítko \"tabulky\" v HTML editoru) a odpovídající zkrácený zápis bude už vložen automaticky."
694
 
695
- #: wp-table-reloaded-admin.php:1227
696
  msgid "You may also style your table via CSS. Example files are provided on the plugin website. Every table has the CSS class \"wp-table-reloaded\". Each table also has the class \"wp-table-reloaded-&lt;table-id&gt;\"."
697
  msgstr "Můžete také upravovat zobrazování tabulek pomocí CSS stylů, konkrétní příklady naleznete na stránkách pluginu. Každá tabulka má proto v HTML přiřazeny CSS třídy \"wp-table-reloaded\" a \"wp-table-reloaded-&lt;table-id&gt;\"."
698
 
699
- #: wp-table-reloaded-admin.php:1227
700
  msgid "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 for example."
701
  msgstr "Můžete také používat CSS třídy \"column-&lt;number&gt;\" a \"row-&lt;number&gt;\" pro nastavení specifického zobrazení pro konkrétní řádky a sloupce. Pomocí těchto tříd také můžete nastavit např. šířku sloupců a zarovnání textu v tabulce."
702
 
703
- #: wp-table-reloaded-admin.php:1232
704
  msgid "More Information and Documentation"
705
  msgstr "Další informace a manuál"
706
 
707
- #: wp-table-reloaded-admin.php:1234
708
  msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
709
  msgstr "Podrobnější informace můžete nalézt na <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">stránkách pluginu</a> nebo také v <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">oficiálním adresáři pluginů Wordpressu</a>."
710
 
711
- #: wp-table-reloaded-admin.php:1234
712
- #: wp-table-reloaded-admin.php:1325
713
  msgid "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentation</a> or find out how to get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
714
  msgstr "V případě problémů nahlédněte do <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">manuálu</a>, nebo se obraťte na autora s žádostí o <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">podporu</a>."
715
 
716
- #: wp-table-reloaded-admin.php:1239
717
  msgid "Author and Licence"
718
  msgstr "Autor a licence"
719
 
720
- #: wp-table-reloaded-admin.php:1241
721
  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."
722
  msgstr "Tento plugin vytvořil <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a> a dostupný zdarma s licenčními podmínkami GPL 2."
723
 
724
- #: wp-table-reloaded-admin.php:1241
725
  msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>a donation</strong></a> and rate the plugin in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
726
  msgstr "Pokud se Vám plugin líbil a hojně ho využíváte, zvažte prosím možnost <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>peněžního daru</strong></a> a ohodnoťte plugin na stránce <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">oficiálního adresáře pluginů Wordpressu</a>."
727
 
728
- #: wp-table-reloaded-admin.php:1241
729
  msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
730
  msgstr "Peněžní dary a dobré hodnocení mě motivují k dalšímu vývoji tohoto pluginu a poskytování dlouhodobé podpory. Každý (i sebemenší) finanční obnos je vítán! Děkuji!"
731
 
732
- #: wp-table-reloaded-admin.php:1246
733
  msgid "Credits and Thanks"
734
  msgstr "Poděkování"
735
 
736
- #: wp-table-reloaded-admin.php:1249
737
  msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
738
  msgstr "Moje poděkování patří zejména autorovi původního pluginu pro tvorbu tabulek ve Wordpressu - wp-Table (<a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a>),"
739
 
740
- #: wp-table-reloaded-admin.php:1250
741
  msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
742
  msgstr "Christianu Bachovi za jeho <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
743
 
744
- #: wp-table-reloaded-admin.php:1251
745
  msgid "the submitters of translations:"
746
  msgstr "překladatelům do následujících jazykových verzí:"
747
 
748
- #: wp-table-reloaded-admin.php:1252
749
  msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
750
  msgstr "albánština (<a href=\"http://www.romeolab.com/\">Romeo</a>)"
751
 
752
- #: wp-table-reloaded-admin.php:1253
753
- msgid "Czech (thanks to <a href=\"http://separatista.net/\">Pavel</a>)"
 
 
 
 
754
  msgstr "čeština (<a href=\"http://www.separatista.net/\">Separatista</a>)"
755
 
756
- #: wp-table-reloaded-admin.php:1254
757
  msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
758
  msgstr "francouzština (<a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
759
 
760
- #: wp-table-reloaded-admin.php:1255
 
 
 
 
761
  msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
762
  msgstr "ruština (<a href=\"http://wp-skins.info/\">Truper</a>)"
763
 
764
- #: wp-table-reloaded-admin.php:1256
765
  msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
766
  msgstr "španělština (<a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> a <a href=\"http://halles.cl/\">Matias Halles</a>)"
767
 
768
- #: wp-table-reloaded-admin.php:1257
769
  msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
770
  msgstr "švédština (<a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
771
 
772
- #: wp-table-reloaded-admin.php:1258
773
  msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
774
  msgstr "turečtina (<a href=\"http://www.wpuzmani.com/\">Semih</a>)"
775
 
776
- #: wp-table-reloaded-admin.php:1259
777
  msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
778
  msgstr "a také všem dárcům, přispěvatelům, testerům, recenzentům a uživatelům tohoto pluginu!"
779
 
780
- #: wp-table-reloaded-admin.php:1265
781
  msgid "Debug and Version Information"
782
  msgstr "Verze pluginu a technické informace pro podporu"
783
 
784
- #: wp-table-reloaded-admin.php:1268
785
  msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
786
  msgstr "Používáte následující verze programů. <strong>Použijte prosím tyto informace při kontaktování podpory pluginu.</strong>"
787
 
788
- #: wp-table-reloaded-admin.php:1311
789
  msgid "List Tables"
790
  msgstr "Zobrazit tabulky"
791
 
792
- #: wp-table-reloaded-admin.php:1316
793
  msgid "Plugin Options"
794
  msgstr "Nastavení pluginu"
795
 
796
- #: wp-table-reloaded-admin.php:1317
797
  msgid "About the Plugin"
798
  msgstr "O pluginu"
799
 
800
- #: wp-table-reloaded-admin.php:1325
801
  msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
802
  msgstr "Podrobnější informace můžete nalézt na <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">stránkách pluginu</a>."
803
 
804
- #: wp-table-reloaded-admin.php:1533
805
  msgid "Do you really want to activate this? You should only do that right before uninstallation!"
806
  msgstr "Opravdu chcete tuto možnost povolit? Měli byste tak učinit pouze před definitivní deaktivací tohoto pluginu!"
807
 
808
- #: wp-table-reloaded-admin.php:1534
809
  msgid "URL of link to insert"
810
  msgstr "Vložte URL adresu"
811
 
812
- #: wp-table-reloaded-admin.php:1535
813
  msgid "Text of link"
814
  msgstr "Vložte text odkazu"
815
 
816
- #: wp-table-reloaded-admin.php:1536
817
  msgid "To insert the following link into a cell, just click the cell after closing this dialog."
818
  msgstr "Abyste vložili tento odkaz do tabulky, tak si po uzavření tohoto okna pomocí tlačítka OK vyberte konkrétní místo v tabulce a klikněte tam."
819
 
820
- #: wp-table-reloaded-admin.php:1537
821
  msgid "URL of image to insert"
822
  msgstr "Vložte URL adresu obrázku"
823
 
824
- #: wp-table-reloaded-admin.php:1538
825
  msgid "''alt'' text of the image"
826
  msgstr "Vložte ''alt'' text obrázku"
827
 
828
- #: wp-table-reloaded-admin.php:1539
829
  msgid "To insert the following image into a cell, just click the cell after closing this dialog."
830
  msgstr "Abyste vložili tento obrázek do tabulky, tak si po uzavření tohoto okna pomocí tlačítka OK vyberte konkrétní místo v tabulce a klikněte tam."
831
 
832
- #: wp-table-reloaded-admin.php:1540
833
  msgid "Do you want to copy the selected tables?"
834
  msgstr "Opravdu chcete zvolené tabulky zkopírovat?"
835
 
836
- #: wp-table-reloaded-admin.php:1541
837
  msgid "The selected tables and all content will be erased. Do you really want to delete them?"
838
  msgstr "Vybrané tabulky (včetně jejich obsahu) budou kompletně smazány. Opravdu je chcete smazat?"
839
 
840
- #: wp-table-reloaded-admin.php:1542
841
  msgid "Do you really want to import the selected tables from the wp-Table plugin?"
842
  msgstr "Opravdu chcete importovat vybrané tabulky z původního pluginu wp-Table?"
843
 
844
- #: wp-table-reloaded-admin.php:1543
845
  msgid "Do you want to copy this table?"
846
  msgstr "Opravdu chcete tuto tabulku zkopírovat?"
847
 
848
- #: wp-table-reloaded-admin.php:1544
849
  msgid "The complete table and all content will be erased. Do you really want to delete it?"
850
  msgstr "Celá tabulka (včetně jejího obsahu) bude kompletně smazána. Opravdu ji chcete smazat?"
851
 
852
- #: wp-table-reloaded-admin.php:1545
853
  msgid "Do you really want to delete this row?"
854
  msgstr "Opravdu chcete smazat tento řádek?"
855
 
856
- #: wp-table-reloaded-admin.php:1546
857
  msgid "Do you really want to delete this column?"
858
  msgstr "Opravdu chcete smazat tento sloupec?"
859
 
860
- #: wp-table-reloaded-admin.php:1547
861
  msgid "Do you really want to import this table from the wp-Table plugin?"
862
  msgstr "Opravdu chcete importovat tuto tabulku z původního pluginu wp-Table?"
863
 
864
- #: wp-table-reloaded-admin.php:1548
865
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
866
  msgstr "Opravdu chcete plugin odinstalovat smazat tak všechna příslušná data?"
867
 
868
- #: wp-table-reloaded-admin.php:1549
869
  msgid "Are you really sure?"
870
  msgstr "Jste si opravdu jisti?"
871
 
872
- #: wp-table-reloaded-admin.php:1597
 
 
 
 
873
  msgid "Table"
874
  msgstr "tabulky"
875
 
@@ -889,3 +986,10 @@ msgstr "Tobias B&auml;thge"
889
  msgid "http://tobias.baethge.com/"
890
  msgstr "http://tobias.baethge.com/"
891
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WP-Table Reloaded CZ (1.3)\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
5
+ "POT-Creation-Date: 2009-06-09 09:55+0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Separatista <pavelevap@separatista.net>\n"
8
  "Language-Team: Separatista <pavelevap@separatista.net>\n"
50
  msgid "| (pipe)"
51
  msgstr "| (svislá čára)"
52
 
53
+ #: wp-table-reloaded-admin.php:152
54
  #, php-format
55
  msgid "Table \"%s\" added successfully."
56
  msgstr "Tabulka \"%s\" byla úspěšně vytvořena."
57
 
58
+ #: wp-table-reloaded-admin.php:180
59
+ #, php-format
60
+ msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
61
+ msgstr "Tabulka byla úspěšně aktualizována. Tato tabulka má nyní ID %s. Budete si podle toho muset upravit již existující zkrácené zápisy v příspěvcích."
62
+
63
+ #: wp-table-reloaded-admin.php:182
64
+ #, php-format
65
+ msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
66
+ msgstr "ID tabulky nemohlo být změněno z %s na %s, protože tabulka s tímto ID již existuje."
67
+
68
+ #: wp-table-reloaded-admin.php:185
69
  msgid "Table edited successfully."
70
  msgstr "Tabulka byla úspěšně aktualizována."
71
 
72
+ #: wp-table-reloaded-admin.php:208
73
  msgid "Rows swapped successfully."
74
  msgstr "Řádky byly úspěšně prohozeny."
75
 
76
+ #: wp-table-reloaded-admin.php:227
77
  msgid "Columns swapped successfully."
78
  msgstr "Sloupce byly úspěšně prohozeny."
79
 
80
+ #: wp-table-reloaded-admin.php:245
81
  msgid "Table sorted successfully."
82
  msgstr "Hodnoty v tabulce byly úspěšně seřazeny."
83
 
84
+ #: wp-table-reloaded-admin.php:258
85
+ msgid "Row added successfully."
86
+ msgid_plural "Rows added successfully."
87
+ msgstr[0] "Řádek byl úspěšně přidán."
88
+ msgstr[1] "Řádky byly úspěšně přidány."
89
+ msgstr[2] "Řádky byly úspěšně přidány."
90
+
91
+ #: wp-table-reloaded-admin.php:270
92
+ msgid "Column added successfully."
93
+ msgid_plural "Columns added successfully."
94
+ msgstr[0] "Sloupec byl úspěšně smazán."
95
+ msgstr[1] "Sloupce byly úspěšně přidány."
96
+ msgstr[2] "Sloupce byly úspěšně přidány."
97
+
98
+ #: wp-table-reloaded-admin.php:305
99
+ #: wp-table-reloaded-admin.php:352
100
  msgid "Copy of"
101
  msgstr "Kopie -"
102
 
103
+ #: wp-table-reloaded-admin.php:309
104
  msgid "Table copied successfully."
105
  msgid_plural "Tables copied successfully."
106
  msgstr[0] "Tabulka byla úspěšně zkopírována."
107
  msgstr[1] "Tabulky byly úspěšně zkopírovány."
108
  msgstr[2] "Tabulky byly úspěšně zkopírovány."
109
 
110
+ #: wp-table-reloaded-admin.php:315
111
  msgid "Table deleted successfully."
112
  msgid_plural "Tables deleted successfully."
113
  msgstr[0] "Tabulka byla úspěšně smazána."
114
  msgstr[1] "Tabulky byly úspěšně smazány."
115
  msgstr[2] "Tabulky byly úspěšně smazány."
116
 
117
+ #: wp-table-reloaded-admin.php:328
118
+ #: wp-table-reloaded-admin.php:511
119
+ #: wp-table-reloaded-admin.php:538
120
  msgid "Table imported successfully."
121
  msgid_plural "Tables imported successfully."
122
  msgstr[0] "Tabulka byla úspěšně importována."
123
  msgstr[1] "Tabulky byly úspěšně importovány."
124
  msgstr[2] "Tabulky byly úspěšně importovány."
125
 
126
+ #: wp-table-reloaded-admin.php:335
127
  msgid "You did not select any tables!"
128
  msgstr "Nevybrali jste žádnou tabulku!"
129
 
130
+ #: wp-table-reloaded-admin.php:357
131
  #, php-format
132
  msgid "Table \"%s\" copied successfully."
133
  msgstr "Tabulka \"%s\" byla úspěšně zkopírována."
134
 
135
+ #: wp-table-reloaded-admin.php:373
136
  #, php-format
137
  msgid "Table \"%s\" deleted successfully."
138
  msgstr "Tabulka \"%s\" byla úspěšně smazána."
139
 
140
+ #: wp-table-reloaded-admin.php:383
141
  msgid "Row deleted successfully."
142
  msgstr "Řádek byl úspěšně smazán."
143
 
144
+ #: wp-table-reloaded-admin.php:396
145
  msgid "Column deleted successfully."
146
  msgstr "Sloupec byl úspěšně smazán."
147
 
148
+ #: wp-table-reloaded-admin.php:401
149
  msgid "Delete failed."
150
  msgstr "Při mazání došlo k chybě."
151
 
152
+ #: wp-table-reloaded-admin.php:426
153
  msgid "Row inserted successfully."
154
  msgstr "Řádek byl úspěšně vložen."
155
 
156
+ #: wp-table-reloaded-admin.php:435
157
  msgid "Column inserted successfully."
158
  msgstr "Sloupec byl úspěšně vložen."
159
 
160
+ #: wp-table-reloaded-admin.php:438
161
  msgid "Insert failed."
162
  msgstr "Při vkládání došlo k chybě."
163
 
164
+ #: wp-table-reloaded-admin.php:466
165
+ #: wp-table-reloaded-admin.php:475
166
+ #: wp-table-reloaded-admin.php:485
167
  msgid "Imported Table"
168
  msgstr "Importovaná tabulka"
169
 
170
+ #: wp-table-reloaded-admin.php:467
171
+ #: wp-table-reloaded-admin.php:486
172
+ #, php-format
173
+ msgid "from %s"
174
+ msgstr "z %s"
175
+
176
+ #: wp-table-reloaded-admin.php:476
177
  msgid "via form"
178
  msgstr "pomocí formuláře"
179
 
180
+ #: wp-table-reloaded-admin.php:495
181
+ #: wp-table-reloaded-admin.php:520
182
  msgid "Table could not be imported."
183
  msgstr "Tabulka nemohla být importována."
184
 
185
+ #: wp-table-reloaded-admin.php:507
186
+ #, php-format
187
+ msgid "Table %s (%s) replaced successfully."
188
+ msgstr "Tabulka %s (%s) byla úspěšně nahrazena."
189
+
190
+ #: wp-table-reloaded-admin.php:565
191
  #, php-format
192
  msgid "Table \"%s\" exported successfully."
193
  msgstr "Tabulka \"%s\" byla úspěšně exportována."
194
 
195
+ #: wp-table-reloaded-admin.php:593
196
  msgid "Options saved successfully."
197
  msgstr "Nastavení bylo úspěšně uloženo."
198
 
199
  #. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
200
  #. Plugin Name of an extension
201
+ #: wp-table-reloaded-admin.php:611
202
  msgid "WP-Table Reloaded"
203
  msgstr "WP-Table Reloaded"
204
 
205
+ #: wp-table-reloaded-admin.php:612
206
  msgid "Plugin deactivated successfully."
207
  msgstr "Plugin byl úspěšně deaktivován."
208
 
209
+ #: wp-table-reloaded-admin.php:613
210
  msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
211
  msgstr "Všechny tabulky, jejich data a nastavení byly smazány. Nyní můžete smazat i samotnou složku pluginu, která se nachází ve Vašem adresáři s pluginy Wordpressu."
212
 
213
+ #: wp-table-reloaded-admin.php:629
214
+ #: wp-table-reloaded-admin.php:689
215
  msgid "List of Tables"
216
  msgstr "Správa tabulek"
217
 
218
+ #: wp-table-reloaded-admin.php:631
219
+ #: wp-table-reloaded-admin.php:692
220
  msgid "This is a list of all available tables."
221
  msgstr "Zde vidíte přehled všech dosud vytvořených tabulek."
222
 
223
+ #: wp-table-reloaded-admin.php:631
224
  msgid "You may insert a table into a post or page here."
225
  msgstr "Můžete vybranou tabulku vložit přímo do příspěvku nebo stránky."
226
 
227
+ #: wp-table-reloaded-admin.php:632
228
  msgid "Click the \"Insert\" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=&lt;the_table_ID&gt; /]</strong>)."
229
  msgstr "Vyberte si tabulku a klikněte na odkaz \"Vložit\", čímž bude odpovídající zkrácený zápis (<strong>[table id=&lt;the_table_ID&gt; /]</strong>) automaticky vložen."
230
 
231
+ #: wp-table-reloaded-admin.php:640
232
+ #: wp-table-reloaded-admin.php:704
233
+ #: wp-table-reloaded-admin.php:1135
234
  msgid "ID"
235
  msgstr "ID"
236
 
237
+ #: wp-table-reloaded-admin.php:641
238
+ #: wp-table-reloaded-admin.php:705
239
+ #: wp-table-reloaded-admin.php:773
240
+ #: wp-table-reloaded-admin.php:826
241
+ #: wp-table-reloaded-admin.php:1136
242
  msgid "Table Name"
243
  msgstr "Název tabulky"
244
 
245
+ #: wp-table-reloaded-admin.php:642
246
+ #: wp-table-reloaded-admin.php:706
247
+ #: wp-table-reloaded-admin.php:777
248
+ #: wp-table-reloaded-admin.php:830
249
+ #: wp-table-reloaded-admin.php:1137
250
  msgid "Description"
251
  msgstr "Stručný popis"
252
 
253
+ #: wp-table-reloaded-admin.php:643
254
+ #: wp-table-reloaded-admin.php:707
255
+ #: wp-table-reloaded-admin.php:1138
256
  msgid "Action"
257
  msgstr "Akce"
258
 
259
+ #: wp-table-reloaded-admin.php:663
260
  msgid "Insert"
261
  msgstr "Vložit"
262
 
263
+ #: wp-table-reloaded-admin.php:672
264
+ #: wp-table-reloaded-admin.php:753
265
+ #: wp-table-reloaded-admin.php:1256
266
  msgid "No tables found."
267
  msgstr "Nebyly nalezeny žádné vytvořené tabulky."
268
 
269
+ #: wp-table-reloaded-admin.php:692
270
  msgid "You may add, edit, copy or delete tables here."
271
  msgstr "Můžete zde vytvářet, upravovat, kopírovat nebo mazat tabulky."
272
 
273
+ #: wp-table-reloaded-admin.php:693
274
  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> or click the button \"Table\" in the editor toolbar."
275
  msgstr "Pokud chcete některou tabulku vložit do příspěvku, stránky nebo textového widgetu, použijte buď zkrácený zápis <strong>[table id=&lt;the_table_ID&gt; /]</strong> nebo přímo tlačítko \"tabulky\" v HTML editoru."
276
 
277
+ #: wp-table-reloaded-admin.php:733
278
  msgid "Edit"
279
  msgstr "Upravit"
280
 
281
+ #: wp-table-reloaded-admin.php:734
282
  msgid "Copy"
283
  msgstr "Kopírovat"
284
 
285
+ #: wp-table-reloaded-admin.php:735
286
  msgid "Export"
287
  msgstr "Export"
288
 
289
+ #: wp-table-reloaded-admin.php:736
290
  msgid "Delete"
291
  msgstr "Smazat"
292
 
293
+ #: wp-table-reloaded-admin.php:744
294
+ #: wp-table-reloaded-admin.php:1167
295
  msgid "Bulk actions:"
296
  msgstr "Hromadné úpravy:"
297
 
298
+ #: wp-table-reloaded-admin.php:744
299
  msgid "Copy Tables"
300
  msgstr "Kopírovat tabulky"
301
 
302
+ #: wp-table-reloaded-admin.php:744
303
  msgid "Delete Tables"
304
  msgstr "Smazat tabulky"
305
 
306
+ #: wp-table-reloaded-admin.php:753
307
+ #: wp-table-reloaded-admin.php:1256
308
  #, php-format
309
  msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
310
  msgstr "Můžete si nějakou <a href=\"%s\">vytvořit</a> nebo <a href=\"%s\">naimportovat</a>!"
311
 
312
+ #: wp-table-reloaded-admin.php:761
313
+ #: wp-table-reloaded-admin.php:1443
314
  msgid "Add new Table"
315
  msgstr "Vytvořit tabulku"
316
 
317
+ #: wp-table-reloaded-admin.php:765
318
  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."
319
  msgstr "Zde můžete vytvořit novou tabulku. Stačí pouze zadat její název, stručný popis (volitelné) a počet řádků a sloupců.<br/>Později také můžete přidávat nové řádky a sloupce, vkládat je na libovolné místo v tabulce a mazat je."
320
 
321
+ #: wp-table-reloaded-admin.php:774
322
  msgid "Enter Table Name"
323
  msgstr "Zadejte název tabulky"
324
 
325
+ #: wp-table-reloaded-admin.php:778
326
  msgid "Enter Description"
327
  msgstr "Zadejte stručný popis"
328
 
329
+ #: wp-table-reloaded-admin.php:781
330
  msgid "Number of Rows"
331
  msgstr "Počet řádků"
332
 
333
+ #: wp-table-reloaded-admin.php:785
334
  msgid "Number of Columns"
335
  msgstr "Počet sloupců"
336
 
337
+ #: wp-table-reloaded-admin.php:792
338
  msgid "Add Table"
339
  msgstr "Vytvořit tabulku"
340
 
341
+ #: wp-table-reloaded-admin.php:809
342
  #, php-format
343
  msgid "Edit Table \"%s\""
344
  msgstr "Upravit tabulku \"%s\""
345
 
346
+ #: wp-table-reloaded-admin.php:812
347
  msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
348
  msgstr "Zde můžete upravovat samotný obsah tabulky, stejně jako přidávat nebo mazat sloupce a řádky."
349
 
350
+ #: wp-table-reloaded-admin.php:813
351
  #, php-format
352
  msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
353
  msgstr "Pokud chcete některou tabulku zobrazit přímo v příspěvku, stránce nebo textovém widgetu, použijte následující zkrácený zápis: <strong>[table id=%s /]</strong>"
354
 
355
+ #: wp-table-reloaded-admin.php:818
356
  msgid "Table Information"
357
  msgstr "Informace o tabulce"
358
 
359
+ #: wp-table-reloaded-admin.php:822
360
+ msgid "Table ID"
361
+ msgstr "ID tabulky"
362
+
363
+ #: wp-table-reloaded-admin.php:838
364
+ #: wp-table-reloaded-admin.php:1014
365
  msgid "Update Changes"
366
  msgstr "Aktualizovat změny"
367
 
368
+ #: wp-table-reloaded-admin.php:839
369
+ #: wp-table-reloaded-admin.php:1015
370
  msgid "Save and go back"
371
  msgstr "Aktualizovat a vrátit se zpět"
372
 
373
+ #: wp-table-reloaded-admin.php:842
374
+ #: wp-table-reloaded-admin.php:1018
375
  msgid "Cancel"
376
  msgstr "Zrušit"
377
 
378
+ #: wp-table-reloaded-admin.php:848
379
  msgid "Table Contents"
380
  msgstr "Obsah tabulky"
381
 
382
+ #: wp-table-reloaded-admin.php:848
383
+ #: wp-table-reloaded-admin.php:914
384
+ #: wp-table-reloaded-admin.php:983
385
+ #: wp-table-reloaded-admin.php:1394
386
  msgid "Hide"
387
  msgstr "Skrýt"
388
 
389
+ #: wp-table-reloaded-admin.php:848
390
+ #: wp-table-reloaded-admin.php:914
391
+ #: wp-table-reloaded-admin.php:983
392
+ #: wp-table-reloaded-admin.php:1394
393
  msgid "Expand"
394
  msgstr "Zobrazit"
395
 
396
+ #: wp-table-reloaded-admin.php:877
397
  msgid "Insert Row"
398
  msgstr "Vložit řádek"
399
 
400
+ #: wp-table-reloaded-admin.php:879
401
  msgid "Delete Row"
402
  msgstr "Smazat řádek"
403
 
404
+ #: wp-table-reloaded-admin.php:889
405
  msgid "Insert Column"
406
  msgstr "Vložit sloupec"
407
 
408
+ #: wp-table-reloaded-admin.php:891
409
  msgid "Delete Column"
410
  msgstr "Smazat sloupec"
411
 
412
+ #: wp-table-reloaded-admin.php:901
413
+ #, php-format
414
+ msgid "Add %s row(s)"
415
+ msgstr "Přidat %s řádek(y)"
416
+
417
+ #: wp-table-reloaded-admin.php:902
418
+ #: wp-table-reloaded-admin.php:904
419
+ msgid "Add"
420
+ msgstr "Přidat"
421
 
422
+ #: wp-table-reloaded-admin.php:903
423
+ #, php-format
424
+ msgid "Add %s column(s)"
425
+ msgstr "Přidat %s sloupec(e)"
426
 
427
+ #: wp-table-reloaded-admin.php:914
428
  msgid "Data Manipulation"
429
  msgstr "Operace s obsahem tabulky"
430
 
431
+ #: wp-table-reloaded-admin.php:929
432
  #, php-format
433
  msgid "Swap rows %s and %s"
434
  msgstr "Prohodit řádky %s a %s"
435
 
436
+ #: wp-table-reloaded-admin.php:932
437
+ #: wp-table-reloaded-admin.php:952
438
  msgid "Swap"
439
  msgstr "Prohodit"
440
 
441
+ #: wp-table-reloaded-admin.php:949
442
  #, php-format
443
  msgid "Swap columns %s and %s"
444
  msgstr "Prohodit sloupce %s a %s"
445
 
446
+ #: wp-table-reloaded-admin.php:955
447
  msgid "Insert Link"
448
  msgstr "Vložit odkaz"
449
 
450
+ #: wp-table-reloaded-admin.php:955
451
  msgid "Insert Image"
452
  msgstr "Vložit obrázek"
453
 
454
+ #: wp-table-reloaded-admin.php:966
455
  msgid "ascending"
456
  msgstr "vzestupně"
457
 
458
+ #: wp-table-reloaded-admin.php:967
459
  msgid "descending"
460
  msgstr "sestupně"
461
 
462
+ #: wp-table-reloaded-admin.php:970
463
  #, php-format
464
  msgid "Sort table by column %s in %s order"
465
  msgstr "Seřadit data v tabulce podle sloupce %s %s"
466
 
467
+ #: wp-table-reloaded-admin.php:973
468
  msgid "Sort"
469
  msgstr "Seřadit"
470
 
471
+ #: wp-table-reloaded-admin.php:983
472
  msgid "Table Settings"
473
  msgstr "Nastavení tabulky"
474
 
475
+ #: wp-table-reloaded-admin.php:985
476
  msgid "These settings will only be used for this table."
477
  msgstr "Toto nastavení bude použito pouze pro tuto tabulku."
478
 
479
+ #: wp-table-reloaded-admin.php:988
480
  msgid "Alternating row colors"
481
  msgstr "Střídaní barev řádků tabulky"
482
 
483
+ #: wp-table-reloaded-admin.php:989
484
  msgid "Every second row will have an alternating background color."
485
  msgstr "Každý druhý řádek bude mít odlišné barevné pozadí."
486
 
487
+ #: wp-table-reloaded-admin.php:992
488
  msgid "Use Table Headline"
489
  msgstr "Použít záhlaví tabulky"
490
 
491
+ #: wp-table-reloaded-admin.php:993
492
  msgid "The first row of your table will use the [th] tag."
493
  msgstr "První řádek Vaší tabulky bude použit jako záhlaví a bude mu přiřazena HTML značka [th]."
494
 
495
+ #: wp-table-reloaded-admin.php:996
496
  msgid "Print Table Name"
497
  msgstr "Zobrazit název tabulky"
498
 
499
+ #: wp-table-reloaded-admin.php:997
500
  msgid "The Table Name will be written above the table in a [h2] tag."
501
  msgstr "Název tabulky bude zobrazen nad tabulkou a bude mu přiřazena HTML značka [h2]."
502
 
503
+ #: wp-table-reloaded-admin.php:1000
504
  msgid "Print Table Description"
505
  msgstr "Zobrazit stručný popis"
506
 
507
+ #: wp-table-reloaded-admin.php:1001
508
  msgid "The Table Description will be written under the table."
509
  msgstr "Stručný popis bude zobrazen pod tabulkou."
510
 
511
+ #: wp-table-reloaded-admin.php:1004
512
  msgid "Use Tablesorter"
513
  msgstr "Použít Tablesorter"
514
 
515
+ #: wp-table-reloaded-admin.php:1005
516
  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>"
517
  msgstr "Můžete čtenářům povolit vlastní interaktivní řazení dat v tabulce pomocí jQuery pluginu <a href=\"http://www.tablesorter.com/\">Tablesorter</a>. <small>Upozornění: Musíte Tablesorter nejdříve globálně povolit v nabídce \"Nastavení pluginu\" a zároveň musí být u konkrétní tabulky povolena možnost \"Použít záhlaví tabulky\", aby vše správně fungovalo!</small>"
518
 
519
+ #: wp-table-reloaded-admin.php:1020
520
  msgid "Other actions"
521
  msgstr "Další možnosti"
522
 
523
+ #: wp-table-reloaded-admin.php:1023
524
  msgid "Delete Table"
525
  msgstr "Smazat tabulku"
526
 
527
+ #: wp-table-reloaded-admin.php:1024
528
+ #: wp-table-reloaded-admin.php:1245
529
  msgid "Export Table"
530
  msgstr "Exportovat tabulku"
531
 
532
+ #: wp-table-reloaded-admin.php:1035
533
+ #: wp-table-reloaded-admin.php:1444
534
  msgid "Import a Table"
535
  msgstr "Importovat tabulku"
536
 
537
+ #: wp-table-reloaded-admin.php:1039
538
  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."
539
  msgstr "Zde můžete vytvořit tabulku pomocí importu z Vašich již existujících dat.<br/>Podporovány jsou formáty souborů CSV, XML nebo HTML. Musíte však dodržet požadovanou strukturu dat, kterou naleznete s dalšími podrobnostmi v manuálu."
540
 
541
+ #: wp-table-reloaded-admin.php:1046
542
  msgid "Select Import Format"
543
  msgstr "Vyberte formát importovaného souboru"
544
 
545
+ #: wp-table-reloaded-admin.php:1056
546
+ msgid "Add or Replace Table?"
547
+ msgstr "Vytvořit novou nebo nahradit stávající tabulku?"
548
+
549
+ #: wp-table-reloaded-admin.php:1058
550
+ msgid "Add as new Table"
551
+ msgstr "Vytvořit novou tabulku"
552
+
553
+ #: wp-table-reloaded-admin.php:1059
554
+ msgid "Replace existing Table"
555
+ msgstr "Nahradit stávající tabulku"
556
+
557
+ #: wp-table-reloaded-admin.php:1063
558
+ msgid "Select existing Table to Replace"
559
+ msgstr "Vyberte stávající tabulku, kterou chcete nahradit"
560
+
561
+ #: wp-table-reloaded-admin.php:1078
562
+ msgid "Select source for import"
563
+ msgstr "Vyberte zdroj, odkud chcete tabulku importovat"
564
+
565
+ #: wp-table-reloaded-admin.php:1080
566
+ msgid "File upload"
567
+ msgstr "Nahrát soubor"
568
+
569
+ #: wp-table-reloaded-admin.php:1082
570
+ msgid "URL"
571
+ msgstr "URL adresa"
572
+
573
+ #: wp-table-reloaded-admin.php:1084
574
+ msgid "Manual input"
575
+ msgstr "Vložit ručně"
576
+
577
+ #: wp-table-reloaded-admin.php:1085
578
+ msgid "File on server"
579
+ msgstr "Soubor na serveru"
580
+
581
+ #: wp-table-reloaded-admin.php:1089
582
  msgid "Select File with Table to Import"
583
  msgstr "Vyberte konkrétní soubor s tabulkovými daty, která budou naimportována"
584
 
585
+ #: wp-table-reloaded-admin.php:1094
586
+ msgid "URL to import table from"
587
+ msgstr "URL adresa, ze které chcete tabulku importovat"
588
 
589
+ #: wp-table-reloaded-admin.php:1099
590
+ msgid "Path to file on server"
591
+ msgstr "Cesta k souboru na serveru"
592
 
593
+ #: wp-table-reloaded-admin.php:1103
594
  msgid "Paste data with Table to Import"
595
  msgstr "Vložte tabulková data, která budou naimportována"
596
 
597
+ #: wp-table-reloaded-admin.php:1109
598
  msgid "Import Table"
599
  msgstr "Importovat tabulku"
600
 
601
+ #: wp-table-reloaded-admin.php:1122
602
  msgid "Import from original wp-Table plugin"
603
  msgstr "Importovat tabulky z původního pluginu wp-Table"
604
 
605
+ #: wp-table-reloaded-admin.php:1159
606
  msgid "Import"
607
  msgstr "Importovat"
608
 
609
+ #: wp-table-reloaded-admin.php:1167
610
  msgid "Import Tables"
611
  msgstr "Importovat tabulky"
612
 
613
+ #: wp-table-reloaded-admin.php:1173
614
  msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
615
  msgstr "Vypadá to, že máte sice nainstalovaný také původní plugin wp-Table (jehož autorem je Alex Rabe), ale nebyly v něm nalezeny žádné tabulky."
616
 
617
+ #: wp-table-reloaded-admin.php:1192
618
+ #: wp-table-reloaded-admin.php:1445
619
  msgid "Export a Table"
620
  msgstr "Exportovat tabulku"
621
 
622
+ #: wp-table-reloaded-admin.php:1196
623
  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."
624
  msgstr "Zde můžete exportovat tabulku. Stačí si ji vybrat a zvolit příslušný exportní formát a oddělovač dat (potřebné pouze pro formát CSV).<br/> Můžete si také zvolit, zda si chcete exportovaný soubor stáhnout, jinak bude zobrazen na této stránce."
625
 
626
+ #: wp-table-reloaded-admin.php:1204
627
  msgid "Select Table to Export"
628
  msgstr "Zvolte tabulku, kterou chcete exportovat"
629
 
630
+ #: wp-table-reloaded-admin.php:1219
631
  msgid "Select Export Format"
632
  msgstr "Zvolte exportní formát"
633
 
634
+ #: wp-table-reloaded-admin.php:1229
635
  msgid "Select Delimiter to use"
636
  msgstr "Zvolte oddělovač dat"
637
 
638
+ #: wp-table-reloaded-admin.php:1236
639
  msgid "<small>(Only needed for CSV export.)</small>"
640
  msgstr "<small>(Potřebné pouze pro exportní formát CSV.)</small>"
641
 
642
+ #: wp-table-reloaded-admin.php:1239
643
  msgid "Download file"
644
  msgstr "Stáhnout soubor"
645
 
646
+ #: wp-table-reloaded-admin.php:1240
647
  msgid "Yes, I want to download the export file."
648
  msgstr "Ano, exportovaný soubor s tabulkou si chci rovnou stáhnout."
649
 
650
+ #: wp-table-reloaded-admin.php:1265
651
  msgid "General Plugin Options"
652
  msgstr "Obecné nastavení pluginu"
653
 
654
+ #: wp-table-reloaded-admin.php:1269
655
  msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
656
  msgstr "Zde můžete měnit následující globální nastavení pluginu.<br/>Toto nastavení ovlivní všechny tabulky nebo obecné vlastnosti pluginu."
657
 
658
+ #: wp-table-reloaded-admin.php:1276
659
  msgid "Frontend Options"
660
  msgstr "Nastavení zobrazení tabulek pro čtenáře"
661
 
662
+ #: wp-table-reloaded-admin.php:1280
663
  msgid "Enable Tablesorter-JavaScript?"
664
  msgstr "Povolit Tablesorter?"
665
 
666
+ #: wp-table-reloaded-admin.php:1281
667
  msgid "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options)."
668
  msgstr "Ano, povolit jQuery plugin <a href=\"http://www.tablesorter.com/\">Tablesorter</a>. Tato volba umožňuje, aby si mohli čtenáři sami interaktivně a libovolně řadit data v tabulce tak, jak potřebují (může být aktivováno také selektivně pro každou tabulku zvlášť v konkrétních vlastnostech tabulky)."
669
 
670
+ #: wp-table-reloaded-admin.php:1284
671
  msgid "Add custom CSS?"
672
  msgstr "Použít vlastní CSS?"
673
 
674
+ #: wp-table-reloaded-admin.php:1286
675
  msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag."
676
  msgstr "Ano, chci použít na svém webu následující CSS styly (objeví se v rámci HTML značky [style])."
677
 
678
+ #: wp-table-reloaded-admin.php:1291
679
  msgid "Enter custom CSS"
680
  msgstr "Vložit vlastní CSS"
681
 
682
+ #: wp-table-reloaded-admin.php:1293
683
  #, php-format
684
  msgid "(You might get a better website performance, if you add the CSS styling to your theme's \"style.css\" <small>(located at %s)</small>) instead."
685
  msgstr "(Můžete zvýšit výkon svého webu také tím, že vlastní tabulkové CSS styly místo tohoto pole přidáte přímo do souboru \"style.css\" ve Vaší šabloně <small>(soubor je umístěn zde: %s)</small>)."
686
 
687
+ #: wp-table-reloaded-admin.php:1294
688
  #, php-format
689
  msgid "See the <a href=\"%s\">plugin website</a> for styling examples or use one of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
690
  msgstr "Pro další informace o CSS stylování tabulek navštivte přímo <a href=\"%s\">web pluginu</a>, nebo použijte některý z následujících vzorů: <a href=\"%s\">Příklad 1</a>, <a href=\"%s\">Příklad 2</a>."
691
 
692
+ #: wp-table-reloaded-admin.php:1294
693
  msgid "Just copy the contents of a file into the textarea."
694
  msgstr "Stačí pouze nakopírovat CSS získané z konkrétního příkladu do pole pro vložení vlastního CSS."
695
 
696
+ #: wp-table-reloaded-admin.php:1302
697
  msgid "Admin Options"
698
  msgstr "Nastavení pro administraci"
699
 
700
+ #: wp-table-reloaded-admin.php:1306
701
  msgid "Uninstall Plugin upon Deactivation?"
702
  msgstr "Odinstalovat plugin při jeho deaktivaci?"
703
 
704
+ #: wp-table-reloaded-admin.php:1307
705
  msgid "Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!"
706
  msgstr "Ano, chci všechno odinstalovat, pokud bude plugin deaktivován. Upozornění: Tuto možnost byste měli povolit pouze těsně před samotnou deaktivací tohoto pluginu z Přehledu pluginů!"
707
 
708
+ #: wp-table-reloaded-admin.php:1307
709
  msgid "<small>(This setting does not influence the \"Manually Uninstall Plugin\" button below!)</small>"
710
  msgstr "<small>(Toto nastavení nijak neovlivňuje možnost \"Ruční odinstalace pluginu\", kterou můžete provést níže!)</small>"
711
 
712
+ #: wp-table-reloaded-admin.php:1317
713
  msgid "Save Options"
714
  msgstr "Uložit nastavení"
715
 
716
+ #: wp-table-reloaded-admin.php:1323
717
  msgid "Manually Uninstall Plugin"
718
  msgstr "Ručně odinstalovat plugin"
719
 
720
+ #: wp-table-reloaded-admin.php:1325
721
  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!"
722
  msgstr "Zde můžete plugin kompletně odinstalovat. Touto akcí <strong>smažete</strong> všechny tabulky, data a nastavení, která s tímto pluginem souvisí, a to včetně všech vytvořených nebo naimportovaných tabulek.<br/> Odinstalace je nevratný proces, takže buďte velmi opatrní a ujistěte se, že chcete plugin opravdu kompletně smazat!"
723
 
724
+ #: wp-table-reloaded-admin.php:1328
725
  msgid "Uninstall Plugin WP-Table Reloaded"
726
  msgstr "Odinstalovat plugin WP-Table Reloaded"
727
 
728
+ #: wp-table-reloaded-admin.php:1339
729
  msgid "Information about the plugin"
730
  msgstr "Informace o pluginu"
731
 
732
+ #: wp-table-reloaded-admin.php:1345
733
  msgid "Plugin Purpose"
734
  msgstr "K čemu je možné plugin použít?"
735
 
736
+ #: wp-table-reloaded-admin.php:1347
737
  msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
738
  msgstr "Pomocí pluginu můžete jednoduše vytvářet a spravovat tabulky přímo v administraci Wordpressu."
739
 
740
+ #: wp-table-reloaded-admin.php:1347
741
  msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
742
  msgstr "Tabulky mohou kromě písmen a čísel obsahovat také HTML značky (tzn. že můžete do tabulky vkládat odkazy nebo obrázky)."
743
 
744
+ #: wp-table-reloaded-admin.php:1347
745
  msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
746
  msgstr "Poté můžete tabulky vkládat do příspěvků, stránek nebo textových widgetů pomocí jednoduchého zkráceného zápisu."
747
 
748
+ #: wp-table-reloaded-admin.php:1347
749
  msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
750
  msgstr "Pokud chcete zobrazit Vaše tabulky kdekoliv jinde v šabloně, můžete použít příslušné funkce."
751
 
752
+ #: wp-table-reloaded-admin.php:1352
753
  msgid "Usage"
754
  msgstr "Použití"
755
 
756
+ #: wp-table-reloaded-admin.php:1354
757
  msgid "At first you should add or import a table."
758
  msgstr "Nejdříve byste měli vytvořit, nebo naimportovat nějakou tabulku."
759
 
760
+ #: wp-table-reloaded-admin.php:1354
761
  msgid "This means that you either let the plugin create an empty table for you or that you load an existing table from either a CSV, XML or HTML file."
762
  msgstr "To znamená, že si můžete nechat pluginem vytvořit novou prázdnou tabulku, nebo můžete naimportovat nějakou Vaši tabulku ze souboru ve formátu CSV, XML nebo HTML."
763
 
764
+ #: wp-table-reloaded-admin.php:1354
765
  msgid "Then you can edit your data or change the structure of your table (e.g. by inserting or deleting rows or columns, swaping rows or columns or sorting them) and select specific table options like alternating row colors or whether to print the name or description, if you want."
766
  msgstr "Poté můžete libovolně upravovat data v tabulce, měnit její strukturu (tj. přidávat či mazat řádky a sloupce, přesunovat je a také řadit data podle jednotlivých sloupců) a používat další specifická nastavení jako střídaní barev řádků v tabulce nebo zobrazování názvu a stručného popisu."
767
 
768
+ #: wp-table-reloaded-admin.php:1354
769
  msgid "To easily add a link or an image to a cell, use the provided buttons. Those will ask you for the URL and a title. Then you can click into a cell and the corresponding HTML will be added to it for you."
770
  msgstr "Pro přidání odkazu nebo obrázku do tabulky jsou připravena příslušná tlačítka, pomocí kterých jednoduše zadáte URL a text odkazu a potom pouze kliknete tam, kam má být odpovídající vygenerovaný HTML kód automaticky přidán."
771
 
772
+ #: wp-table-reloaded-admin.php:1354
773
  msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them."
774
  msgstr "Pro vložení tabulky do příspěvku, stránky nebo textového widgetu pak stačí napsat pouze zkrácený zápis [table id=&lt;table-id&gt;]."
775
 
776
+ #: wp-table-reloaded-admin.php:1354
777
  msgid "You can also select the desired table from a list (after clicking the button \"Table\" in the editor toolbar) and the corresponding shortcode will be added for you."
778
  msgstr "Můžete si tabulku také přímo vybrat z jejich seznamu (dostanete se k němu kliknutím na tlačítko \"tabulky\" v HTML editoru) a odpovídající zkrácený zápis bude už vložen automaticky."
779
 
780
+ #: wp-table-reloaded-admin.php:1354
781
  msgid "You may also style your table via CSS. Example files are provided on the plugin website. Every table has the CSS class \"wp-table-reloaded\". Each table also has the class \"wp-table-reloaded-&lt;table-id&gt;\"."
782
  msgstr "Můžete také upravovat zobrazování tabulek pomocí CSS stylů, konkrétní příklady naleznete na stránkách pluginu. Každá tabulka má proto v HTML přiřazeny CSS třídy \"wp-table-reloaded\" a \"wp-table-reloaded-&lt;table-id&gt;\"."
783
 
784
+ #: wp-table-reloaded-admin.php:1354
785
  msgid "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 for example."
786
  msgstr "Můžete také používat CSS třídy \"column-&lt;number&gt;\" a \"row-&lt;number&gt;\" pro nastavení specifického zobrazení pro konkrétní řádky a sloupce. Pomocí těchto tříd také můžete nastavit např. šířku sloupců a zarovnání textu v tabulce."
787
 
788
+ #: wp-table-reloaded-admin.php:1359
789
  msgid "More Information and Documentation"
790
  msgstr "Další informace a manuál"
791
 
792
+ #: wp-table-reloaded-admin.php:1361
793
  msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
794
  msgstr "Podrobnější informace můžete nalézt na <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">stránkách pluginu</a> nebo také v <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">oficiálním adresáři pluginů Wordpressu</a>."
795
 
796
+ #: wp-table-reloaded-admin.php:1361
797
+ #: wp-table-reloaded-admin.php:1456
798
  msgid "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentation</a> or find out how to get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
799
  msgstr "V případě problémů nahlédněte do <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">manuálu</a>, nebo se obraťte na autora s žádostí o <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">podporu</a>."
800
 
801
+ #: wp-table-reloaded-admin.php:1366
802
  msgid "Author and Licence"
803
  msgstr "Autor a licence"
804
 
805
+ #: wp-table-reloaded-admin.php:1368
806
  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."
807
  msgstr "Tento plugin vytvořil <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a> a dostupný zdarma s licenčními podmínkami GPL 2."
808
 
809
+ #: wp-table-reloaded-admin.php:1368
810
  msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>a donation</strong></a> and rate the plugin in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
811
  msgstr "Pokud se Vám plugin líbil a hojně ho využíváte, zvažte prosím možnost <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>peněžního daru</strong></a> a ohodnoťte plugin na stránce <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">oficiálního adresáře pluginů Wordpressu</a>."
812
 
813
+ #: wp-table-reloaded-admin.php:1368
814
  msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
815
  msgstr "Peněžní dary a dobré hodnocení mě motivují k dalšímu vývoji tohoto pluginu a poskytování dlouhodobé podpory. Každý (i sebemenší) finanční obnos je vítán! Děkuji!"
816
 
817
+ #: wp-table-reloaded-admin.php:1373
818
  msgid "Credits and Thanks"
819
  msgstr "Poděkování"
820
 
821
+ #: wp-table-reloaded-admin.php:1376
822
  msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
823
  msgstr "Moje poděkování patří zejména autorovi původního pluginu pro tvorbu tabulek ve Wordpressu - wp-Table (<a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a>),"
824
 
825
+ #: wp-table-reloaded-admin.php:1377
826
  msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
827
  msgstr "Christianu Bachovi za jeho <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
828
 
829
+ #: wp-table-reloaded-admin.php:1378
830
  msgid "the submitters of translations:"
831
  msgstr "překladatelům do následujících jazykových verzí:"
832
 
833
+ #: wp-table-reloaded-admin.php:1379
834
  msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
835
  msgstr "albánština (<a href=\"http://www.romeolab.com/\">Romeo</a>)"
836
 
837
+ #: wp-table-reloaded-admin.php:1380
838
+ msgid "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/\">Rics</a>)"
839
+ msgstr "brazilská portugalština (<a href=\"http://www.pensarics.com/\">Rics</a>)"
840
+
841
+ #: wp-table-reloaded-admin.php:1381
842
+ msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
843
  msgstr "čeština (<a href=\"http://www.separatista.net/\">Separatista</a>)"
844
 
845
+ #: wp-table-reloaded-admin.php:1382
846
  msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
847
  msgstr "francouzština (<a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
848
 
849
+ #: wp-table-reloaded-admin.php:1383
850
+ msgid "Polish (thanks to Alex Kortan)"
851
+ msgstr "polština (Alex Kortan)"
852
+
853
+ #: wp-table-reloaded-admin.php:1384
854
  msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
855
  msgstr "ruština (<a href=\"http://wp-skins.info/\">Truper</a>)"
856
 
857
+ #: wp-table-reloaded-admin.php:1385
858
  msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
859
  msgstr "španělština (<a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> a <a href=\"http://halles.cl/\">Matias Halles</a>)"
860
 
861
+ #: wp-table-reloaded-admin.php:1386
862
  msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
863
  msgstr "švédština (<a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
864
 
865
+ #: wp-table-reloaded-admin.php:1387
866
  msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
867
  msgstr "turečtina (<a href=\"http://www.wpuzmani.com/\">Semih</a>)"
868
 
869
+ #: wp-table-reloaded-admin.php:1388
870
  msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
871
  msgstr "a také všem dárcům, přispěvatelům, testerům, recenzentům a uživatelům tohoto pluginu!"
872
 
873
+ #: wp-table-reloaded-admin.php:1394
874
  msgid "Debug and Version Information"
875
  msgstr "Verze pluginu a technické informace pro podporu"
876
 
877
+ #: wp-table-reloaded-admin.php:1397
878
  msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
879
  msgstr "Používáte následující verze programů. <strong>Použijte prosím tyto informace při kontaktování podpory pluginu.</strong>"
880
 
881
+ #: wp-table-reloaded-admin.php:1442
882
  msgid "List Tables"
883
  msgstr "Zobrazit tabulky"
884
 
885
+ #: wp-table-reloaded-admin.php:1447
886
  msgid "Plugin Options"
887
  msgstr "Nastavení pluginu"
888
 
889
+ #: wp-table-reloaded-admin.php:1448
890
  msgid "About the Plugin"
891
  msgstr "O pluginu"
892
 
893
+ #: wp-table-reloaded-admin.php:1456
894
  msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
895
  msgstr "Podrobnější informace můžete nalézt na <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">stránkách pluginu</a>."
896
 
897
+ #: wp-table-reloaded-admin.php:1682
898
  msgid "Do you really want to activate this? You should only do that right before uninstallation!"
899
  msgstr "Opravdu chcete tuto možnost povolit? Měli byste tak učinit pouze před definitivní deaktivací tohoto pluginu!"
900
 
901
+ #: wp-table-reloaded-admin.php:1683
902
  msgid "URL of link to insert"
903
  msgstr "Vložte URL adresu"
904
 
905
+ #: wp-table-reloaded-admin.php:1684
906
  msgid "Text of link"
907
  msgstr "Vložte text odkazu"
908
 
909
+ #: wp-table-reloaded-admin.php:1685
910
  msgid "To insert the following link into a cell, just click the cell after closing this dialog."
911
  msgstr "Abyste vložili tento odkaz do tabulky, tak si po uzavření tohoto okna pomocí tlačítka OK vyberte konkrétní místo v tabulce a klikněte tam."
912
 
913
+ #: wp-table-reloaded-admin.php:1686
914
  msgid "URL of image to insert"
915
  msgstr "Vložte URL adresu obrázku"
916
 
917
+ #: wp-table-reloaded-admin.php:1687
918
  msgid "''alt'' text of the image"
919
  msgstr "Vložte ''alt'' text obrázku"
920
 
921
+ #: wp-table-reloaded-admin.php:1688
922
  msgid "To insert the following image into a cell, just click the cell after closing this dialog."
923
  msgstr "Abyste vložili tento obrázek do tabulky, tak si po uzavření tohoto okna pomocí tlačítka OK vyberte konkrétní místo v tabulce a klikněte tam."
924
 
925
+ #: wp-table-reloaded-admin.php:1689
926
  msgid "Do you want to copy the selected tables?"
927
  msgstr "Opravdu chcete zvolené tabulky zkopírovat?"
928
 
929
+ #: wp-table-reloaded-admin.php:1690
930
  msgid "The selected tables and all content will be erased. Do you really want to delete them?"
931
  msgstr "Vybrané tabulky (včetně jejich obsahu) budou kompletně smazány. Opravdu je chcete smazat?"
932
 
933
+ #: wp-table-reloaded-admin.php:1691
934
  msgid "Do you really want to import the selected tables from the wp-Table plugin?"
935
  msgstr "Opravdu chcete importovat vybrané tabulky z původního pluginu wp-Table?"
936
 
937
+ #: wp-table-reloaded-admin.php:1692
938
  msgid "Do you want to copy this table?"
939
  msgstr "Opravdu chcete tuto tabulku zkopírovat?"
940
 
941
+ #: wp-table-reloaded-admin.php:1693
942
  msgid "The complete table and all content will be erased. Do you really want to delete it?"
943
  msgstr "Celá tabulka (včetně jejího obsahu) bude kompletně smazána. Opravdu ji chcete smazat?"
944
 
945
+ #: wp-table-reloaded-admin.php:1694
946
  msgid "Do you really want to delete this row?"
947
  msgstr "Opravdu chcete smazat tento řádek?"
948
 
949
+ #: wp-table-reloaded-admin.php:1695
950
  msgid "Do you really want to delete this column?"
951
  msgstr "Opravdu chcete smazat tento sloupec?"
952
 
953
+ #: wp-table-reloaded-admin.php:1696
954
  msgid "Do you really want to import this table from the wp-Table plugin?"
955
  msgstr "Opravdu chcete importovat tuto tabulku z původního pluginu wp-Table?"
956
 
957
+ #: wp-table-reloaded-admin.php:1697
958
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
959
  msgstr "Opravdu chcete plugin odinstalovat smazat tak všechna příslušná data?"
960
 
961
+ #: wp-table-reloaded-admin.php:1698
962
  msgid "Are you really sure?"
963
  msgstr "Jste si opravdu jisti?"
964
 
965
+ #: wp-table-reloaded-admin.php:1699
966
+ msgid "Do you really want to change the ID of the table?"
967
+ msgstr "Opravdu chcete změnit ID tabulky?"
968
+
969
+ #: wp-table-reloaded-admin.php:1748
970
  msgid "Table"
971
  msgstr "tabulky"
972
 
986
  msgid "http://tobias.baethge.com/"
987
  msgstr "http://tobias.baethge.com/"
988
 
989
+ #~ msgid "- or -"
990
+ #~ msgstr "- nebo -"
991
+ #~ msgid "(upload will be preferred over pasting)"
992
+ #~ msgstr ""
993
+ #~ "(při zpracování dat bude upřednostněn vybraný souboru před přímo "
994
+ #~ "vloženými daty)"
995
+
languages/wp-table-reloaded-de_DE.mo CHANGED
Binary file
languages/wp-table-reloaded-de_DE.po CHANGED
@@ -1,6 +1,6 @@
1
- msgid ""
2
  msgstr ""
3
- "Project-Id-Version: WP-Table Reloaded v0.9.2\n"
4
  "PO-Revision-Date: 2009-04-12 12:33+0200\n"
5
  "Last-Translator: tobiasbg <wordpress@tobias.baethge.com>\n"
6
  "MIME-Version: 1.0\n"
@@ -19,356 +19,348 @@ msgstr ""
19
  msgid "Table \"%s\" added successfully."
20
  msgstr "Tabelle \"%s\" erfolgreich angelegt."
21
 
22
- #: wp-table-reloaded-admin.php:176
23
  msgid "Table edited successfully."
24
  msgstr "Tabelle erfolgreich bearbeitet."
25
 
26
- #: wp-table-reloaded-admin.php:192
27
  msgid "Rows swapped successfully."
28
  msgstr "Zeilen erfolgreich getauscht."
29
 
30
- #: wp-table-reloaded-admin.php:211
31
  msgid "Columns swapped successfully."
32
  msgstr "Spalten erfolgreich getauscht."
33
 
34
- #: wp-table-reloaded-admin.php:319
35
  #, php-format
36
  msgid "Table \"%s\" copied successfully."
37
  msgstr "Tabelle \"%s\" erfolgreich kopiert."
38
 
39
- #: wp-table-reloaded-admin.php:338
40
  #, php-format
41
  msgid "Table \"%s\" deleted successfully."
42
  msgstr "Tabelle \"%s\" erfolgreich gelöscht."
43
 
44
- #: wp-table-reloaded-admin.php:348
45
  msgid "Row deleted successfully."
46
  msgstr "Zeile erfolgreich gelöscht."
47
 
48
- #: wp-table-reloaded-admin.php:361
49
  msgid "Column deleted successfully."
50
  msgstr "Spalte erfolgreich gelöscht."
51
 
52
- #: wp-table-reloaded-admin.php:366
53
  msgid "Delete failed."
54
  msgstr "Löschen fehlgeschlagen."
55
 
56
- #: wp-table-reloaded-admin.php:391
57
  msgid "Row inserted successfully."
58
  msgstr "Zeile erfolgreich eingefügt."
59
 
60
- #: wp-table-reloaded-admin.php:400
61
  msgid "Column inserted successfully."
62
  msgstr "Spalte erfolgreich eingefügt."
63
 
64
- #: wp-table-reloaded-admin.php:403
65
  msgid "Insert failed."
66
  msgstr "Einfügen fehlgeschlagen."
67
 
68
- #: wp-table-reloaded-admin.php:448
69
- #: wp-table-reloaded-admin.php:469
70
  msgid "Table imported successfully."
71
  msgstr "Tabelle erfolgreich importiert."
72
 
73
- #: wp-table-reloaded-admin.php:496
74
  #, php-format
75
  msgid "Table \"%s\" exported successfully."
76
  msgstr "Tabelle \"%s\" erfolgreich exportiert."
77
 
78
- #: wp-table-reloaded-admin.php:524
79
  msgid "Options saved successfully."
80
  msgstr "Einstellungen erfolgreich gespeichert."
81
 
82
- #: wp-table-reloaded-admin.php:560
83
- #: wp-table-reloaded-admin.php:620
84
  msgid "List of Tables"
85
  msgstr "Liste der Tabellen"
86
 
87
- #: wp-table-reloaded-admin.php:571
88
- #: wp-table-reloaded-admin.php:635
89
- #: wp-table-reloaded-admin.php:1013
90
  msgid "ID"
91
  msgstr "ID"
92
 
93
- #: wp-table-reloaded-admin.php:572
94
- #: wp-table-reloaded-admin.php:636
95
- #: wp-table-reloaded-admin.php:704
96
- #: wp-table-reloaded-admin.php:753
97
- #: wp-table-reloaded-admin.php:1014
98
  msgid "Table Name"
99
  msgstr "Name der Tabelle"
100
 
101
- #: wp-table-reloaded-admin.php:573
102
- #: wp-table-reloaded-admin.php:637
103
- #: wp-table-reloaded-admin.php:708
104
- #: wp-table-reloaded-admin.php:757
105
- #: wp-table-reloaded-admin.php:1015
106
  msgid "Description"
107
  msgstr "Beschreibung"
108
 
109
- #: wp-table-reloaded-admin.php:574
110
- #: wp-table-reloaded-admin.php:638
111
- #: wp-table-reloaded-admin.php:1016
112
  msgid "Action"
113
  msgstr "Aktion"
114
 
115
- #: wp-table-reloaded-admin.php:664
116
  msgid "Edit"
117
  msgstr "Bearbeiten"
118
 
119
- #: wp-table-reloaded-admin.php:1552
120
  msgid "Do you want to copy this table?"
121
  msgstr "Möchtest du diese Tabelle kopieren?"
122
 
123
- #: wp-table-reloaded-admin.php:665
124
  msgid "Copy"
125
  msgstr "Kopieren"
126
 
127
- #: wp-table-reloaded-admin.php:666
128
  msgid "Export"
129
  msgstr "Exportieren"
130
 
131
- #: wp-table-reloaded-admin.php:1553
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:667
136
  msgid "Delete"
137
  msgstr "Löschen"
138
 
139
- #: wp-table-reloaded-admin.php:603
140
- #: wp-table-reloaded-admin.php:684
141
- #: wp-table-reloaded-admin.php:1134
142
  msgid "No tables found."
143
  msgstr "Keine Tabellen gefunden."
144
 
145
- #: wp-table-reloaded-admin.php:684
146
- #: wp-table-reloaded-admin.php:1134
147
  #, php-format
148
  msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
149
  msgstr "Du kannst eine <a href=\"%s\">anlegen</a> oder <a href=\"%s\">importieren</a>!"
150
 
151
- #: wp-table-reloaded-admin.php:692
152
- #: wp-table-reloaded-admin.php:1320
153
  msgid "Add new Table"
154
  msgstr "Neue Tabelle anlegen"
155
 
156
- #: wp-table-reloaded-admin.php:696
157
  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."
158
  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."
159
 
160
- #: wp-table-reloaded-admin.php:712
161
  msgid "Number of Rows"
162
  msgstr "Anzahl Zeilen"
163
 
164
- #: wp-table-reloaded-admin.php:716
165
  msgid "Number of Columns"
166
  msgstr "Anzahl Spalten"
167
 
168
- #: wp-table-reloaded-admin.php:723
169
  msgid "Add Table"
170
  msgstr "Tabelle anlegen"
171
 
172
- #: wp-table-reloaded-admin.php:743
173
  msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
174
  msgstr "Hier kannst du die Inhalte der Tabelle bearbeiten. Außerdem können Zeilen oder Spalten hinzugefügt, gelöscht oder getauscht werden."
175
 
176
- #: wp-table-reloaded-admin.php:749
177
  msgid "Table Information"
178
  msgstr "Informationen über die Tabelle"
179
 
180
- #: wp-table-reloaded-admin.php:775
181
  msgid "Table Contents"
182
  msgstr "Inhalte der Tabelle"
183
 
184
- #: wp-table-reloaded-admin.php:803
185
  msgid "Insert Row"
186
  msgstr "Zeile einfügen"
187
 
188
- #: wp-table-reloaded-admin.php:1554
189
  msgid "Do you really want to delete this row?"
190
  msgstr "Möchtest du diese Zeile wirklich löschen?"
191
 
192
- #: wp-table-reloaded-admin.php:805
193
  msgid "Delete Row"
194
  msgstr "Zeile löschen"
195
 
196
- #: wp-table-reloaded-admin.php:815
197
  msgid "Insert Column"
198
  msgstr "Spalte einfügen"
199
 
200
- #: wp-table-reloaded-admin.php:1555
201
  msgid "Do you really want to delete this column?"
202
  msgstr "Möchtest du diese Spalte wirklich löschen?"
203
 
204
- #: wp-table-reloaded-admin.php:817
205
  msgid "Delete Column"
206
  msgstr "Spalte löschen"
207
 
208
- #: wp-table-reloaded-admin.php:822
209
- msgid "Add Row"
210
- msgstr "Zeile hinzufügen"
211
-
212
- #: wp-table-reloaded-admin.php:822
213
- msgid "Add Column"
214
- msgstr "Spalte hinzufügen"
215
-
216
- #: wp-table-reloaded-admin.php:849
217
- #: wp-table-reloaded-admin.php:869
218
  msgid "Swap"
219
  msgstr "Tauschen"
220
 
221
- #: wp-table-reloaded-admin.php:900
222
  msgid "Table Settings"
223
  msgstr "Einstellungen zur Tabelle"
224
 
225
- #: wp-table-reloaded-admin.php:902
226
  msgid "These settings will only be used for this table."
227
  msgstr "Diese Einstellungen gelten nur für diese Tabelle."
228
 
229
- #: wp-table-reloaded-admin.php:905
230
  msgid "Alternating row colors"
231
  msgstr "alternierende Zeilenfarben"
232
 
233
- #: wp-table-reloaded-admin.php:906
234
  msgid "Every second row will have an alternating background color."
235
  msgstr "Jede zweite Zeile bekommt eine alternierende Hintergrundfarbe."
236
 
237
- #: wp-table-reloaded-admin.php:909
238
  msgid "Use Table Headline"
239
  msgstr "Tabellenüberschrift"
240
 
241
- #: wp-table-reloaded-admin.php:910
242
  msgid "The first row of your table will use the [th] tag."
243
  msgstr "Die erste Zeile der Tabelle wird mit dem HTML-Tag [th] markiert."
244
 
245
- #: wp-table-reloaded-admin.php:913
246
  msgid "Print Table Name"
247
  msgstr "Tabellennamen ausgeben"
248
 
249
- #: wp-table-reloaded-admin.php:914
250
  msgid "The Table Name will be written above the table in a [h2] tag."
251
  msgstr "Der Name der Tabelle wird in einem [h2]-HTML-Tag über die Tabelle geschrieben."
252
 
253
- #: wp-table-reloaded-admin.php:917
254
  msgid "Print Table Description"
255
  msgstr "Tabellenbeschreibung ausgeben"
256
 
257
- #: wp-table-reloaded-admin.php:918
258
  msgid "The Table Description will be written under the table."
259
  msgstr "Die Tabellenbeschreibung wird unter die Tabelle geschrieben."
260
 
261
- #: wp-table-reloaded-admin.php:921
262
  msgid "Use Tablesorter"
263
  msgstr "Tablesorter benutzen"
264
 
265
- #: wp-table-reloaded-admin.php:922
266
  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>"
267
  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>"
268
 
269
- #: wp-table-reloaded-admin.php:765
270
- #: wp-table-reloaded-admin.php:931
271
  msgid "Update Changes"
272
  msgstr "Änderungen speichern"
273
 
274
- #: wp-table-reloaded-admin.php:766
275
- #: wp-table-reloaded-admin.php:932
276
  msgid "Save and go back"
277
  msgstr "Speichern und zurück"
278
 
279
- #: wp-table-reloaded-admin.php:769
280
- #: wp-table-reloaded-admin.php:935
281
  msgid "Cancel"
282
  msgstr "Abbrechen"
283
 
284
- #: wp-table-reloaded-admin.php:937
285
  msgid "Other actions"
286
  msgstr "Andere Aktionen"
287
 
288
- #: wp-table-reloaded-admin.php:940
289
  msgid "Delete Table"
290
  msgstr "Tabelle löschen"
291
 
292
- #: wp-table-reloaded-admin.php:941
293
- #: wp-table-reloaded-admin.php:1123
294
  msgid "Export Table"
295
  msgstr "Tabelle exportieren"
296
 
297
- #: wp-table-reloaded-admin.php:952
298
- #: wp-table-reloaded-admin.php:1321
299
  msgid "Import a Table"
300
  msgstr "Eine Tabelle importieren"
301
 
302
- #: wp-table-reloaded-admin.php:973
303
  msgid "Select File with Table to Import"
304
  msgstr "Datei mit den zu importierenden Inhalten auswählen"
305
 
306
- #: wp-table-reloaded-admin.php:987
307
  msgid "Import Table"
308
  msgstr "Tabelle importieren"
309
 
310
- #: wp-table-reloaded-admin.php:1070
311
- #: wp-table-reloaded-admin.php:1322
312
  msgid "Export a Table"
313
  msgstr "Eine Tabelle exportieren"
314
 
315
- #: wp-table-reloaded-admin.php:1082
316
  msgid "Select Table to Export"
317
  msgstr "zu exportierende Tabelle auswählen"
318
 
319
- #: wp-table-reloaded-admin.php:1097
320
  msgid "Select Export Format"
321
  msgstr "gewünschtes Export-Format"
322
 
323
- #: wp-table-reloaded-admin.php:1107
324
  msgid "Select Delimiter to use"
325
  msgstr "zu verwendendes Trennzeichen"
326
 
327
- #: wp-table-reloaded-admin.php:1143
328
  msgid "General Plugin Options"
329
  msgstr "Plugin-Einstellungen"
330
 
331
- #: wp-table-reloaded-admin.php:1147
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:1184
336
  msgid "Uninstall Plugin upon Deactivation?"
337
  msgstr "Plugin beim Deaktivieren deinstallieren?"
338
 
339
- #: wp-table-reloaded-admin.php:1158
340
  msgid "Enable Tablesorter-JavaScript?"
341
  msgstr "Tablesorter-JavaScript aktivieren?"
342
 
343
- #: wp-table-reloaded-admin.php:1195
344
  msgid "Save Options"
345
  msgstr "Einstellungen speichern"
346
 
347
- #: wp-table-reloaded-admin.php:1557
348
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
349
  msgstr "Möchtest du das Plugin wirklich deinstallieren und ALLE Daten löschen?"
350
 
351
- #: wp-table-reloaded-admin.php:1558
352
  msgid "Are you really sure?"
353
  msgstr "Bist du wirklich sicher?"
354
 
355
- #: wp-table-reloaded-admin.php:1217
356
  msgid "Information about the plugin"
357
  msgstr "Informationen über das Plugin"
358
 
359
- #: wp-table-reloaded-admin.php:1246
360
  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."
361
  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."
362
 
363
- #: wp-table-reloaded-admin.php:1319
364
  msgid "List Tables"
365
  msgstr "Liste der Tabellen"
366
 
367
- #: wp-table-reloaded-admin.php:1324
368
  msgid "Plugin Options"
369
  msgstr "Plugin-Einstellungen"
370
 
371
- #: wp-table-reloaded-admin.php:1325
372
  msgid "About the Plugin"
373
  msgstr "Über das Plugin"
374
 
@@ -394,7 +386,7 @@ msgstr ", (Komma)"
394
  msgid ": (colon)"
395
  msgstr ": (Doppelpunkt)"
396
 
397
- #: wp-table-reloaded-admin.php:1206
398
  msgid "Uninstall Plugin WP-Table Reloaded"
399
  msgstr "Plugin WP-Table Reloaded deinstallieren"
400
 
@@ -403,220 +395,215 @@ msgstr "Plugin WP-Table Reloaded deinstallieren"
403
  msgid "HTML - Hypertext Markup Language"
404
  msgstr "HTML - Hypertext Markup Language"
405
 
406
- #: wp-table-reloaded-admin.php:264
407
- #: wp-table-reloaded-admin.php:314
408
  msgid "Copy of"
409
  msgstr "Kopie von"
410
 
411
- #: wp-table-reloaded-admin.php:431
 
 
412
  msgid "Imported Table"
413
  msgstr "Importierte Tabelle"
414
 
415
- #: wp-table-reloaded-admin.php:432
416
  msgid "via form"
417
  msgstr "via Eingabefeld"
418
 
419
- #: wp-table-reloaded-admin.php:451
 
420
  msgid "Table could not be imported."
421
  msgstr "Tabelle konnte nicht importiert werden."
422
 
423
- #: wp-table-reloaded-admin.php:542
424
  msgid "WP-Table Reloaded"
425
  msgstr "WP-Table Reloaded"
426
 
427
- #: wp-table-reloaded-admin.php:543
428
  msgid "Plugin deactivated successfully."
429
  msgstr "Plugin erfolgreich deaktiviert."
430
 
431
- #: wp-table-reloaded-admin.php:544
432
  msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
433
  msgstr "Alle Tabellen, Daten und Einstellungen wurden gelöscht. Du kannst jetzt den Ordner des Plugins aus deinem WordPress Plugin-Ordner löschen."
434
 
435
- #: wp-table-reloaded-admin.php:705
436
  msgid "Enter Table Name"
437
  msgstr "Tabellennamen eingeben"
438
 
439
- #: wp-table-reloaded-admin.php:709
440
  msgid "Enter Description"
441
  msgstr "Beschreibung eingeben"
442
 
443
- #: wp-table-reloaded-admin.php:963
444
  msgid "Select Import Format"
445
  msgstr "Import-Format wählen"
446
 
447
- #: wp-table-reloaded-admin.php:1114
448
  msgid "<small>(Only needed for CSV export.)</small>"
449
  msgstr "<small>(Nur für CSV-Export benötigt.)</small>"
450
 
451
- #: wp-table-reloaded-admin.php:977
452
- msgid "- or -"
453
- msgstr "- oder -"
454
-
455
- #: wp-table-reloaded-admin.php:978
456
- msgid "(upload will be preferred over pasting)"
457
- msgstr "(Hochladen hat Vorrang vor manueller Eingabe)"
458
-
459
- #: wp-table-reloaded-admin.php:981
460
  msgid "Paste data with Table to Import"
461
  msgstr "zu importierende Tabelle einfügen"
462
 
463
- #: wp-table-reloaded-admin.php:1037
464
  msgid "Import"
465
  msgstr "Import"
466
 
467
- #: wp-table-reloaded-admin.php:1074
468
  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."
469
  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."
470
 
471
- #: wp-table-reloaded-admin.php:1117
472
  msgid "Download file"
473
  msgstr "Datei downloaden"
474
 
475
- #: wp-table-reloaded-admin.php:1118
476
  msgid "Yes, I want to download the export file."
477
  msgstr "Ja, ich möchte die Export-Datei downloaden."
478
 
479
- #: wp-table-reloaded-admin.php:1154
480
  msgid "Frontend Options"
481
  msgstr "Darstellungsoptionen"
482
 
483
- #: wp-table-reloaded-admin.php:1180
484
  msgid "Admin Options"
485
  msgstr "Verwaltungseinstellungen"
486
 
487
- #: wp-table-reloaded-admin.php:1201
488
  msgid "Manually Uninstall Plugin"
489
  msgstr "Manuelle Plugin-Deinstallation"
490
 
491
- #: wp-table-reloaded-admin.php:1203
492
  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!"
493
  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!"
494
 
495
- #: wp-table-reloaded-admin.php:1223
496
  msgid "Plugin Purpose"
497
  msgstr "Zweck des Plugins"
498
 
499
- #: wp-table-reloaded-admin.php:1230
500
  msgid "Usage"
501
  msgstr "Benutzung"
502
 
503
- #: wp-table-reloaded-admin.php:1237
504
  msgid "More Information and Documentation"
505
  msgstr "Weitere Informationen und Dokumentation"
506
 
507
- #: wp-table-reloaded-admin.php:1244
508
  msgid "Author and Licence"
509
  msgstr "Autor und Lizenz"
510
 
511
- #: wp-table-reloaded-admin.php:1251
512
  msgid "Credits and Thanks"
513
  msgstr "Danksagungen"
514
 
515
- #: wp-table-reloaded-admin.php:846
516
  #, php-format
517
  msgid "Swap rows %s and %s"
518
  msgstr "Tausche die Zeilen %s und %s"
519
 
520
- #: wp-table-reloaded-admin.php:866
521
  #, php-format
522
  msgid "Swap columns %s and %s"
523
  msgstr "Tausche die Spalten %s und %s"
524
 
525
- #: wp-table-reloaded-admin.php:1000
526
  msgid "Import from original wp-Table plugin"
527
  msgstr "Import von Tabellen aus dem Plugin wp-Table"
528
 
529
- #: wp-table-reloaded-admin.php:1556
530
  msgid "Do you really want to import this table from the wp-Table plugin?"
531
  msgstr "Möchtest du diese Tabelle wirklich aus dem Plugin wp-Table importieren?"
532
 
533
- #: wp-table-reloaded-admin.php:1051
534
  msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
535
  msgstr "Das Plugin wp-Table von Alex Rabe scheint installiert zu sein, es wurden jedoch keine Tabellen gefunden."
536
 
537
- #: wp-table-reloaded-admin.php:1542
538
  msgid "Do you really want to activate this? You should only do that right before uninstallation!"
539
  msgstr "Möchtest du diese Option wirklich aktivieren? Du solltest dies erst unmittelbar vor der Deaktivierung zum Zwecke der Deinstallation tun!"
540
 
541
- #: wp-table-reloaded-admin.php:1254
542
  msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
543
  msgstr "Danke an <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> für das Plugin wp-Table,"
544
 
545
- #: wp-table-reloaded-admin.php:1256
546
  msgid "the submitters of translations:"
547
  msgstr "die Übersetzer:"
548
 
549
- #: wp-table-reloaded-admin.php:1257
550
  msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
551
  msgstr "Albanisch (danke an <a href=\"http://www.romeolab.com/\">Romeo</a>)"
552
 
553
- #: wp-table-reloaded-admin.php:1259
554
  msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
555
  msgstr "Französisch (danke an <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
556
 
557
- #: wp-table-reloaded-admin.php:1261
558
  msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
559
  msgstr "Russisch (danke an <a href=\"http://wp-skins.info/\">Truper</a>)"
560
 
561
- #: wp-table-reloaded-admin.php:1263
562
  msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
563
  msgstr "Schwedisch (danke an <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
564
 
565
- #: wp-table-reloaded-admin.php:1264
566
  msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
567
  msgstr "Türkisch (danke an <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
568
 
569
- #: wp-table-reloaded-admin.php:1162
570
  msgid "Add custom CSS?"
571
  msgstr "Eigenes CSS hinzufügen?"
572
 
573
- #: wp-table-reloaded-admin.php:1169
574
  msgid "Enter custom CSS"
575
  msgstr "Eigenes CSS eingeben"
576
 
577
- #: wp-table-reloaded-admin.php:740
578
  #, php-format
579
  msgid "Edit Table \"%s\""
580
  msgstr "Bearbeite Tabelle \"%s\""
581
 
582
- #: wp-table-reloaded-admin.php:744
583
  #, php-format
584
  msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
585
  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."
586
 
587
- #: wp-table-reloaded-admin.php:831
588
  msgid "Data Manipulation"
589
  msgstr "Bearbeitungsfunktionen"
590
 
591
- #: wp-table-reloaded-admin.php:872
592
  msgid "Insert Link"
593
  msgstr "Link einfügen"
594
 
595
- #: wp-table-reloaded-admin.php:872
596
  msgid "Insert Image"
597
  msgstr "Bild einfügen"
598
 
599
- #: wp-table-reloaded-admin.php:1543
600
  msgid "URL of link to insert"
601
  msgstr "URL des einzufügenden Links"
602
 
603
- #: wp-table-reloaded-admin.php:1544
604
  msgid "Text of link"
605
  msgstr "Text des Links"
606
 
607
- #: wp-table-reloaded-admin.php:1545
608
  msgid "To insert the following link into a cell, just click the cell after closing this dialog."
609
  msgstr "Um den folgenden Link in eine Tabellenzelle einzufügen, klicke einfach auf diese."
610
 
611
- #: wp-table-reloaded-admin.php:1546
612
  msgid "URL of image to insert"
613
  msgstr "URL des einzufügenden Bildes"
614
 
615
- #: wp-table-reloaded-admin.php:1548
616
  msgid "To insert the following image into a cell, just click the cell after closing this dialog."
617
  msgstr "Um das folgende Bild in eine Tabellenzelle einzufügen, klicke einfach auf diese."
618
 
619
- #: wp-table-reloaded-admin.php:956
620
  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."
621
  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."
622
 
@@ -628,249 +615,353 @@ msgstr ". (Punkt)"
628
  msgid "| (pipe)"
629
  msgstr "| (Strich)"
630
 
631
- #: wp-table-reloaded-admin.php:229
632
  msgid "Table sorted successfully."
633
  msgstr "Tabelle erfolgreich sortiert."
634
 
635
- #: wp-table-reloaded-admin.php:268
636
  msgid "Table copied successfully."
637
  msgid_plural "Tables copied successfully."
638
  msgstr[0] "Tabelle erfolgreich kopiert."
639
  msgstr[1] "Tabellen erfolgreich kopiert."
640
 
641
- #: wp-table-reloaded-admin.php:277
642
  msgid "Table deleted successfully."
643
  msgid_plural "Tables deleted successfully."
644
  msgstr[0] "Tabelle erfolgreich gelöscht."
645
  msgstr[1] "Tabellen erfolgreich gelöscht."
646
 
647
- #: wp-table-reloaded-admin.php:290
648
  msgid "Table imported successfully."
649
  msgid_plural "Tables imported successfully."
650
  msgstr[0] "Tabelle erfolgreich importiert."
651
  msgstr[1] "Tabellen erfolgreich importiert."
652
 
653
- #: wp-table-reloaded-admin.php:297
654
  msgid "You did not select any tables!"
655
  msgstr "Du hast keine Tabellen ausgewählt."
656
 
657
- #: wp-table-reloaded-admin.php:562
658
- #: wp-table-reloaded-admin.php:623
659
  msgid "This is a list of all available tables."
660
  msgstr "Dies ist eine Liste aller verfügbaren Tabellen."
661
 
662
- #: wp-table-reloaded-admin.php:562
663
  msgid "You may insert a table into a post or page here."
664
  msgstr "Hier kannst du eine Tabelle in einen Beitrag oder eine Seite einfügen."
665
 
666
- #: wp-table-reloaded-admin.php:563
667
  msgid "Click the \"Insert\" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=&lt;the_table_ID&gt; /]</strong>)."
668
  msgstr "Klicke bei der einzufügenden Tabelle auf den Link \"Einfügen\", um den jeweiligen Shortcode in den Editor einzufügen (<strong>[table id=&lt;ID_der_Tabelle&gt; /]</strong>)."
669
 
670
- #: wp-table-reloaded-admin.php:594
671
  msgid "Insert"
672
  msgstr "Einfügen"
673
 
674
- #: wp-table-reloaded-admin.php:623
675
  msgid "You may add, edit, copy or delete tables here."
676
  msgstr "Hier kannst du Tabellen hinzufügen, bearbeiten, kopieren oder löschen."
677
 
678
- #: wp-table-reloaded-admin.php:624
679
  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> or click the button \"Table\" in the editor toolbar."
680
  msgstr "Um eine Tabelle in einen Beitrag, eine Seite oder ein Text-Widget einzufügen, nutze den Shortcode <strong>[table id=&lt;ID_der_Tabelle&gt; /]</strong> oder klicke in der Editer-Toolbar auf die Schaltfläche \"Tabelle\"."
681
 
682
- #: wp-table-reloaded-admin.php:675
683
- #: wp-table-reloaded-admin.php:1045
684
  msgid "Bulk actions:"
685
  msgstr "Massenbearbeitung:"
686
 
687
- #: wp-table-reloaded-admin.php:675
688
  msgid "Copy Tables"
689
  msgstr "Tabellen kopieren"
690
 
691
- #: wp-table-reloaded-admin.php:675
692
  msgid "Delete Tables"
693
  msgstr "Tabellen löschen"
694
 
695
- #: wp-table-reloaded-admin.php:775
696
- #: wp-table-reloaded-admin.php:831
697
- #: wp-table-reloaded-admin.php:900
698
- #: wp-table-reloaded-admin.php:1271
699
  msgid "Hide"
700
  msgstr "Ausblenden"
701
 
702
- #: wp-table-reloaded-admin.php:775
703
- #: wp-table-reloaded-admin.php:831
704
- #: wp-table-reloaded-admin.php:900
705
- #: wp-table-reloaded-admin.php:1271
706
  msgid "Expand"
707
  msgstr "Erweitern"
708
 
709
- #: wp-table-reloaded-admin.php:883
710
  msgid "ascending"
711
  msgstr "aufsteigender"
712
 
713
- #: wp-table-reloaded-admin.php:884
714
  msgid "descending"
715
  msgstr "absteigender"
716
 
717
- #: wp-table-reloaded-admin.php:887
718
  #, php-format
719
  msgid "Sort table by column %s in %s order"
720
  msgstr "Sortiere die Tabelle nach Spalte %s in %s Reihenfolge"
721
 
722
- #: wp-table-reloaded-admin.php:890
723
  msgid "Sort"
724
  msgstr "Sortieren"
725
 
726
- #: wp-table-reloaded-admin.php:1045
727
  msgid "Import Tables"
728
  msgstr "Tabellen importieren"
729
 
730
- #: wp-table-reloaded-admin.php:1159
731
  msgid "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options)."
732
  msgstr "Ja, lade das <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. Dieses macht angezeigte Tabellen durch den Besucher sortierbar (kann für jede Tabelle separat in ihren Optionen aktiviert werden)."
733
 
734
- #: wp-table-reloaded-admin.php:1164
735
  msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag."
736
  msgstr "Ja, lade folgenden CSS-Code auf meiner Website in einem [style]-HTML-Tag."
737
 
738
- #: wp-table-reloaded-admin.php:1171
739
  #, php-format
740
  msgid "(You might get a better website performance, if you add the CSS styling to your theme's \"style.css\" <small>(located at %s)</small>) instead."
741
  msgstr "(Du kannst eine bessere Seitenladegeschwindigkeit erreichen, wenn du den CSS-Code stattdessen in die Datei \"style.css\" (%s) deines Themes einbaust.)"
742
 
743
- #: wp-table-reloaded-admin.php:1172
744
  #, php-format
745
  msgid "See the <a href=\"%s\">plugin website</a> for styling examples or use one of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
746
  msgstr "Besuche die <a href=\"%s\">Plugin-Webseite</a> für Style-Beispiele oder verwende eine der folgenden: <a href=\"%s\">Beispiel-Datei 1</a> <a href=\"%s\">Beispiel-Datei 2</a>"
747
 
748
- #: wp-table-reloaded-admin.php:1172
749
  msgid "Just copy the contents of a file into the textarea."
750
  msgstr "Kopiere einfach den Inhalt einer der Dateien in das Textfeld."
751
 
752
- #: wp-table-reloaded-admin.php:1185
753
  msgid "Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!"
754
  msgstr "Ja, alles deinstallieren, wenn das Plugin deaktiviert wird. Achtung: Du solltest dieses Kästchen erst unmittelbar vor dem Deaktivieren des Plugins auf der WordPress-Plugin-Seite ankreuzen!"
755
 
756
- #: wp-table-reloaded-admin.php:1185
757
  msgid "<small>(This setting does not influence the \"Manually Uninstall Plugin\" button below!)</small>"
758
  msgstr "<small>(Diese Einstellung hat keinen Einfluss auf die Schaltfläche \"Plugin WP-Table Reloaded deinstallieren\" unten!)</small>"
759
 
760
- #: wp-table-reloaded-admin.php:1225
761
  msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
762
  msgstr "Dieses Plugin ermöglicht dir das Erstellen und Verwalten von Tabellen im Admin-Bereich von WordPress."
763
 
764
- #: wp-table-reloaded-admin.php:1225
765
  msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
766
  msgstr "Diese Tabellen können Zeichenketten, Zahlen und sogar HTML (z.B. für Bilder oder Links) enthalten."
767
 
768
- #: wp-table-reloaded-admin.php:1225
769
  msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
770
  msgstr "Du kannst die Tabellen dann mit Hilfe eines Shortcodes in deinen Beiträgen, auf deinen Seiten oder in Text-Widgets anzeigen."
771
 
772
- #: wp-table-reloaded-admin.php:1225
773
  msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
774
  msgstr "Wenn du eine Tabelle an einer anderen Stelle in deinem Theme anzeigen möchtest, kannst du eine Template Tag Function nutzen."
775
 
776
- #: wp-table-reloaded-admin.php:1232
777
  msgid "At first you should add or import a table."
778
  msgstr "Am Anfang solltest du eine neue Tabelle anlegen oder importieren."
779
 
780
- #: wp-table-reloaded-admin.php:1232
781
  msgid "This means that you either let the plugin create an empty table for you or that you load an existing table from either a CSV, XML or HTML file."
782
  msgstr "Dies bedeutet, dass du entweder das Plugin eine leere Tabelle erzeugen lässt, oder dass du eine Tabelle aus einer CSV-, XML- oder HTML-Datei einliest."
783
 
784
- #: wp-table-reloaded-admin.php:1232
785
  msgid "Then you can edit your data or change the structure of your table (e.g. by inserting or deleting rows or columns, swaping rows or columns or sorting them) and select specific table options like alternating row colors or whether to print the name or description, if you want."
786
  msgstr "Dann kannst du die Inhalte bearbeiten oder die Tabellenstruktur ändern (z.B. durch Einfügen oder Löschen von Spalten oder Zeilen, das Tauschen von Spalten oder Zeilen oder durch Sortieren) und spezielle Tabelleneinstellungen, wie alternierende Zeilenhintergründe, das Anzeigen des Tabellennamens oder der Beschreibung, vornehmen, falls du möchtest."
787
 
788
- #: wp-table-reloaded-admin.php:1232
789
  msgid "To easily add a link or an image to a cell, use the provided buttons. Those will ask you for the URL and a title. Then you can click into a cell and the corresponding HTML will be added to it for you."
790
  msgstr "Um einen Link oder ein Bild in eine Zelle einzufügen, nutze die entsprechenden Schaltflächen. Du wirst dann nach der URL und einem Text gefragt und kannst das entsprechende HTML-Fragment durch Anklicken einer Zelle in diese einfügen."
791
 
792
- #: wp-table-reloaded-admin.php:1232
793
  msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them."
794
  msgstr "Um die Tabelle in einen Beitrag, eine Seite oder ein Text-Widget einzufügen, füge diesen einfach den Shortcode [table id=&lt;ID_der_Tabelle &gt; /] hinzu."
795
 
796
- #: wp-table-reloaded-admin.php:1232
797
  msgid "You can also select the desired table from a list (after clicking the button \"Table\" in the editor toolbar) and the corresponding shortcode will be added for you."
798
  msgstr "Du kannst die gewünschte Tabelle auch aus einer Liste auswählen (nach einem Klick auf den Button \"Tabelle\" in der Toolbar des Editors) und der entsprechende Shortcode wird für automatisch eingefügt."
799
 
800
- #: wp-table-reloaded-admin.php:1232
801
  msgid "You may also style your table via CSS. Example files are provided on the plugin website. Every table has the CSS class \"wp-table-reloaded\". Each table also has the class \"wp-table-reloaded-&lt;table-id&gt;\"."
802
  msgstr "Du kannst eine Tabelle auch mittels CSS stylen. Beispieldateien findest du auf der Plugin-Webseite. Jede Tabelle hat die CSS-Klasse \"wp-table-reloaded\". Zusätzlich hat jede Tabelle die Klasse \"wp-table-reloaded-id-&lt;ID_der_Tabelle&gt;\"."
803
 
804
- #: wp-table-reloaded-admin.php:1232
805
  msgid "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 for example."
806
  msgstr "Du kannst die Klassen \"column-&lt;Nummer&gt;\" und \"row-&lt;Nummer&gt;\" verwenden, um Zeilen und Spalten einzeln zu stylen. Verwende diese Klassen z.B. für verschiedene Spaltenbreiten oder die Textausrichtung."
807
 
808
- #: wp-table-reloaded-admin.php:1239
809
  msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
810
  msgstr "Mehr Informationen sind auf der <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-deutsch/\">Plugin-Webseite</a> oder auf der Plugin-Seite im <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a> erhältlich."
811
 
812
- #: wp-table-reloaded-admin.php:1239
813
- #: wp-table-reloaded-admin.php:1333
814
  msgid "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentation</a> or find out how to get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
815
  msgstr "Lies die <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">Dokumentation</a> oder bitte um <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">Unterstützung</a>."
816
 
817
- #: wp-table-reloaded-admin.php:1246
818
  msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>a donation</strong></a> and rate the plugin in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
819
  msgstr "Wenn dir das Plugin gefällt, ziehe doch eine <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>Spende</strong></a> in Betracht und bewerte das Plugin im <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
820
 
821
- #: wp-table-reloaded-admin.php:1246
822
  msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
823
  msgstr "Spenden und gute Bewertungen ermutigen mich, das Plugin weiterzuentwickeln and unzählige Stunden Support zu leisten. Ich bin für jeden Betrag dankbar! Vielen Dank!"
824
 
825
- #: wp-table-reloaded-admin.php:1255
826
  msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
827
  msgstr "Christian Bach für das <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
828
 
829
- #: wp-table-reloaded-admin.php:1262
830
  msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
831
  msgstr "Spanisch (danke an <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> und <a href=\"http://halles.cl/\">Matias Halles</a>)"
832
 
833
- #: wp-table-reloaded-admin.php:1265
834
  msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
835
  msgstr "und an alle Spender, Mitarbeiter, Förderer, Kritiker und Nutzer des Plugins!"
836
 
837
- #: wp-table-reloaded-admin.php:1271
838
  msgid "Debug and Version Information"
839
  msgstr "Debug- und Versions-Informationen"
840
 
841
- #: wp-table-reloaded-admin.php:1274
842
  msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
843
  msgstr "Du nutzt folgende Software-Versionen. <strong>Bitte gib diese Informationen in Bug-Reports an.</strong>"
844
 
845
- #: wp-table-reloaded-admin.php:1333
846
  msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
847
  msgstr "Weitere Informationen findest du auf der <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-deutsch/\">Plugin-Webseite</a>."
848
 
849
- #: wp-table-reloaded-admin.php:1547
850
  msgid "''alt'' text of the image"
851
  msgstr "''alt''-Text des Bildes"
852
 
853
- #: wp-table-reloaded-admin.php:1549
854
  msgid "Do you want to copy the selected tables?"
855
  msgstr "Möchtest du die ausgewählten Tabellen kopieren?"
856
 
857
- #: wp-table-reloaded-admin.php:1550
858
  msgid "The selected tables and all content will be erased. Do you really want to delete them?"
859
  msgstr "Die ausgewählten Tabellen und alle Inhalte werden gelöscht. Willst du diese wirklich löschen?"
860
 
861
- #: wp-table-reloaded-admin.php:1551
862
  msgid "Do you really want to import the selected tables from the wp-Table plugin?"
863
  msgstr "Möchtest du die ausgewählten Tabellen aus dem Plugin wp-Table importieren?"
864
 
865
- #: wp-table-reloaded-admin.php:1607
866
  msgid "Table"
867
  msgstr "Tabelle"
868
 
869
- #: wp-table-reloaded-admin.php:1258
870
  msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
871
  msgstr "Tschechisch (danke an <a href=\"http://separatista.net/\">Separatista</a>)"
872
 
873
- #: wp-table-reloaded-admin.php:1260
874
  msgid "Polish (thanks to Alex Kortan)"
875
  msgstr "Polnisch (danke an Alex Kortan)"
876
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WP-Table Reloaded v1.3\n"
4
  "PO-Revision-Date: 2009-04-12 12:33+0200\n"
5
  "Last-Translator: tobiasbg <wordpress@tobias.baethge.com>\n"
6
  "MIME-Version: 1.0\n"
19
  msgid "Table \"%s\" added successfully."
20
  msgstr "Tabelle \"%s\" erfolgreich angelegt."
21
 
22
+ #: wp-table-reloaded-admin.php:185
23
  msgid "Table edited successfully."
24
  msgstr "Tabelle erfolgreich bearbeitet."
25
 
26
+ #: wp-table-reloaded-admin.php:208
27
  msgid "Rows swapped successfully."
28
  msgstr "Zeilen erfolgreich getauscht."
29
 
30
+ #: wp-table-reloaded-admin.php:227
31
  msgid "Columns swapped successfully."
32
  msgstr "Spalten erfolgreich getauscht."
33
 
34
+ #: wp-table-reloaded-admin.php:357
35
  #, php-format
36
  msgid "Table \"%s\" copied successfully."
37
  msgstr "Tabelle \"%s\" erfolgreich kopiert."
38
 
39
+ #: wp-table-reloaded-admin.php:373
40
  #, php-format
41
  msgid "Table \"%s\" deleted successfully."
42
  msgstr "Tabelle \"%s\" erfolgreich gelöscht."
43
 
44
+ #: wp-table-reloaded-admin.php:383
45
  msgid "Row deleted successfully."
46
  msgstr "Zeile erfolgreich gelöscht."
47
 
48
+ #: wp-table-reloaded-admin.php:396
49
  msgid "Column deleted successfully."
50
  msgstr "Spalte erfolgreich gelöscht."
51
 
52
+ #: wp-table-reloaded-admin.php:401
53
  msgid "Delete failed."
54
  msgstr "Löschen fehlgeschlagen."
55
 
56
+ #: wp-table-reloaded-admin.php:426
57
  msgid "Row inserted successfully."
58
  msgstr "Zeile erfolgreich eingefügt."
59
 
60
+ #: wp-table-reloaded-admin.php:435
61
  msgid "Column inserted successfully."
62
  msgstr "Spalte erfolgreich eingefügt."
63
 
64
+ #: wp-table-reloaded-admin.php:438
65
  msgid "Insert failed."
66
  msgstr "Einfügen fehlgeschlagen."
67
 
68
+ #: wp-table-reloaded-admin.php:511
69
+ #: wp-table-reloaded-admin.php:538
70
  msgid "Table imported successfully."
71
  msgstr "Tabelle erfolgreich importiert."
72
 
73
+ #: wp-table-reloaded-admin.php:565
74
  #, php-format
75
  msgid "Table \"%s\" exported successfully."
76
  msgstr "Tabelle \"%s\" erfolgreich exportiert."
77
 
78
+ #: wp-table-reloaded-admin.php:593
79
  msgid "Options saved successfully."
80
  msgstr "Einstellungen erfolgreich gespeichert."
81
 
82
+ #: wp-table-reloaded-admin.php:629
83
+ #: wp-table-reloaded-admin.php:689
84
  msgid "List of Tables"
85
  msgstr "Liste der Tabellen"
86
 
87
+ #: wp-table-reloaded-admin.php:640
88
+ #: wp-table-reloaded-admin.php:704
89
+ #: wp-table-reloaded-admin.php:1135
90
  msgid "ID"
91
  msgstr "ID"
92
 
93
+ #: wp-table-reloaded-admin.php:641
94
+ #: wp-table-reloaded-admin.php:705
95
+ #: wp-table-reloaded-admin.php:773
96
+ #: wp-table-reloaded-admin.php:826
97
+ #: wp-table-reloaded-admin.php:1136
98
  msgid "Table Name"
99
  msgstr "Name der Tabelle"
100
 
101
+ #: wp-table-reloaded-admin.php:642
102
+ #: wp-table-reloaded-admin.php:706
103
+ #: wp-table-reloaded-admin.php:777
104
+ #: wp-table-reloaded-admin.php:830
105
+ #: wp-table-reloaded-admin.php:1137
106
  msgid "Description"
107
  msgstr "Beschreibung"
108
 
109
+ #: wp-table-reloaded-admin.php:643
110
+ #: wp-table-reloaded-admin.php:707
111
+ #: wp-table-reloaded-admin.php:1138
112
  msgid "Action"
113
  msgstr "Aktion"
114
 
115
+ #: wp-table-reloaded-admin.php:733
116
  msgid "Edit"
117
  msgstr "Bearbeiten"
118
 
119
+ #: wp-table-reloaded-admin.php:1692
120
  msgid "Do you want to copy this table?"
121
  msgstr "Möchtest du diese Tabelle kopieren?"
122
 
123
+ #: wp-table-reloaded-admin.php:734
124
  msgid "Copy"
125
  msgstr "Kopieren"
126
 
127
+ #: wp-table-reloaded-admin.php:735
128
  msgid "Export"
129
  msgstr "Exportieren"
130
 
131
+ #: wp-table-reloaded-admin.php:1693
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:736
136
  msgid "Delete"
137
  msgstr "Löschen"
138
 
139
+ #: wp-table-reloaded-admin.php:672
140
+ #: wp-table-reloaded-admin.php:753
141
+ #: wp-table-reloaded-admin.php:1256
142
  msgid "No tables found."
143
  msgstr "Keine Tabellen gefunden."
144
 
145
+ #: wp-table-reloaded-admin.php:753
146
+ #: wp-table-reloaded-admin.php:1256
147
  #, php-format
148
  msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
149
  msgstr "Du kannst eine <a href=\"%s\">anlegen</a> oder <a href=\"%s\">importieren</a>!"
150
 
151
+ #: wp-table-reloaded-admin.php:761
152
+ #: wp-table-reloaded-admin.php:1443
153
  msgid "Add new Table"
154
  msgstr "Neue Tabelle anlegen"
155
 
156
+ #: wp-table-reloaded-admin.php:765
157
  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."
158
  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."
159
 
160
+ #: wp-table-reloaded-admin.php:781
161
  msgid "Number of Rows"
162
  msgstr "Anzahl Zeilen"
163
 
164
+ #: wp-table-reloaded-admin.php:785
165
  msgid "Number of Columns"
166
  msgstr "Anzahl Spalten"
167
 
168
+ #: wp-table-reloaded-admin.php:792
169
  msgid "Add Table"
170
  msgstr "Tabelle anlegen"
171
 
172
+ #: wp-table-reloaded-admin.php:812
173
  msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
174
  msgstr "Hier kannst du die Inhalte der Tabelle bearbeiten. Außerdem können Zeilen oder Spalten hinzugefügt, gelöscht oder getauscht werden."
175
 
176
+ #: wp-table-reloaded-admin.php:818
177
  msgid "Table Information"
178
  msgstr "Informationen über die Tabelle"
179
 
180
+ #: wp-table-reloaded-admin.php:848
181
  msgid "Table Contents"
182
  msgstr "Inhalte der Tabelle"
183
 
184
+ #: wp-table-reloaded-admin.php:877
185
  msgid "Insert Row"
186
  msgstr "Zeile einfügen"
187
 
188
+ #: wp-table-reloaded-admin.php:1694
189
  msgid "Do you really want to delete this row?"
190
  msgstr "Möchtest du diese Zeile wirklich löschen?"
191
 
192
+ #: wp-table-reloaded-admin.php:879
193
  msgid "Delete Row"
194
  msgstr "Zeile löschen"
195
 
196
+ #: wp-table-reloaded-admin.php:889
197
  msgid "Insert Column"
198
  msgstr "Spalte einfügen"
199
 
200
+ #: wp-table-reloaded-admin.php:1695
201
  msgid "Do you really want to delete this column?"
202
  msgstr "Möchtest du diese Spalte wirklich löschen?"
203
 
204
+ #: wp-table-reloaded-admin.php:891
205
  msgid "Delete Column"
206
  msgstr "Spalte löschen"
207
 
208
+ #: wp-table-reloaded-admin.php:932
209
+ #: wp-table-reloaded-admin.php:952
 
 
 
 
 
 
 
 
210
  msgid "Swap"
211
  msgstr "Tauschen"
212
 
213
+ #: wp-table-reloaded-admin.php:983
214
  msgid "Table Settings"
215
  msgstr "Einstellungen zur Tabelle"
216
 
217
+ #: wp-table-reloaded-admin.php:985
218
  msgid "These settings will only be used for this table."
219
  msgstr "Diese Einstellungen gelten nur für diese Tabelle."
220
 
221
+ #: wp-table-reloaded-admin.php:988
222
  msgid "Alternating row colors"
223
  msgstr "alternierende Zeilenfarben"
224
 
225
+ #: wp-table-reloaded-admin.php:989
226
  msgid "Every second row will have an alternating background color."
227
  msgstr "Jede zweite Zeile bekommt eine alternierende Hintergrundfarbe."
228
 
229
+ #: wp-table-reloaded-admin.php:992
230
  msgid "Use Table Headline"
231
  msgstr "Tabellenüberschrift"
232
 
233
+ #: wp-table-reloaded-admin.php:993
234
  msgid "The first row of your table will use the [th] tag."
235
  msgstr "Die erste Zeile der Tabelle wird mit dem HTML-Tag [th] markiert."
236
 
237
+ #: wp-table-reloaded-admin.php:996
238
  msgid "Print Table Name"
239
  msgstr "Tabellennamen ausgeben"
240
 
241
+ #: wp-table-reloaded-admin.php:997
242
  msgid "The Table Name will be written above the table in a [h2] tag."
243
  msgstr "Der Name der Tabelle wird in einem [h2]-HTML-Tag über die Tabelle geschrieben."
244
 
245
+ #: wp-table-reloaded-admin.php:1000
246
  msgid "Print Table Description"
247
  msgstr "Tabellenbeschreibung ausgeben"
248
 
249
+ #: wp-table-reloaded-admin.php:1001
250
  msgid "The Table Description will be written under the table."
251
  msgstr "Die Tabellenbeschreibung wird unter die Tabelle geschrieben."
252
 
253
+ #: wp-table-reloaded-admin.php:1004
254
  msgid "Use Tablesorter"
255
  msgstr "Tablesorter benutzen"
256
 
257
+ #: wp-table-reloaded-admin.php:1005
258
  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>"
259
  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>"
260
 
261
+ #: wp-table-reloaded-admin.php:838
262
+ #: wp-table-reloaded-admin.php:1014
263
  msgid "Update Changes"
264
  msgstr "Änderungen speichern"
265
 
266
+ #: wp-table-reloaded-admin.php:839
267
+ #: wp-table-reloaded-admin.php:1015
268
  msgid "Save and go back"
269
  msgstr "Speichern und zurück"
270
 
271
+ #: wp-table-reloaded-admin.php:842
272
+ #: wp-table-reloaded-admin.php:1018
273
  msgid "Cancel"
274
  msgstr "Abbrechen"
275
 
276
+ #: wp-table-reloaded-admin.php:1020
277
  msgid "Other actions"
278
  msgstr "Andere Aktionen"
279
 
280
+ #: wp-table-reloaded-admin.php:1023
281
  msgid "Delete Table"
282
  msgstr "Tabelle löschen"
283
 
284
+ #: wp-table-reloaded-admin.php:1024
285
+ #: wp-table-reloaded-admin.php:1245
286
  msgid "Export Table"
287
  msgstr "Tabelle exportieren"
288
 
289
+ #: wp-table-reloaded-admin.php:1035
290
+ #: wp-table-reloaded-admin.php:1444
291
  msgid "Import a Table"
292
  msgstr "Eine Tabelle importieren"
293
 
294
+ #: wp-table-reloaded-admin.php:1089
295
  msgid "Select File with Table to Import"
296
  msgstr "Datei mit den zu importierenden Inhalten auswählen"
297
 
298
+ #: wp-table-reloaded-admin.php:1109
299
  msgid "Import Table"
300
  msgstr "Tabelle importieren"
301
 
302
+ #: wp-table-reloaded-admin.php:1192
303
+ #: wp-table-reloaded-admin.php:1445
304
  msgid "Export a Table"
305
  msgstr "Eine Tabelle exportieren"
306
 
307
+ #: wp-table-reloaded-admin.php:1204
308
  msgid "Select Table to Export"
309
  msgstr "zu exportierende Tabelle auswählen"
310
 
311
+ #: wp-table-reloaded-admin.php:1219
312
  msgid "Select Export Format"
313
  msgstr "gewünschtes Export-Format"
314
 
315
+ #: wp-table-reloaded-admin.php:1229
316
  msgid "Select Delimiter to use"
317
  msgstr "zu verwendendes Trennzeichen"
318
 
319
+ #: wp-table-reloaded-admin.php:1265
320
  msgid "General Plugin Options"
321
  msgstr "Plugin-Einstellungen"
322
 
323
+ #: wp-table-reloaded-admin.php:1269
324
  msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
325
  msgstr "Hier können allgemeine Plugin-Einstellungen geändert werden<br/>Diese beeinflussen alle Tabellen oder das allgemeine Verhalten des Plugins."
326
 
327
+ #: wp-table-reloaded-admin.php:1306
328
  msgid "Uninstall Plugin upon Deactivation?"
329
  msgstr "Plugin beim Deaktivieren deinstallieren?"
330
 
331
+ #: wp-table-reloaded-admin.php:1280
332
  msgid "Enable Tablesorter-JavaScript?"
333
  msgstr "Tablesorter-JavaScript aktivieren?"
334
 
335
+ #: wp-table-reloaded-admin.php:1317
336
  msgid "Save Options"
337
  msgstr "Einstellungen speichern"
338
 
339
+ #: wp-table-reloaded-admin.php:1697
340
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
341
  msgstr "Möchtest du das Plugin wirklich deinstallieren und ALLE Daten löschen?"
342
 
343
+ #: wp-table-reloaded-admin.php:1698
344
  msgid "Are you really sure?"
345
  msgstr "Bist du wirklich sicher?"
346
 
347
+ #: wp-table-reloaded-admin.php:1339
348
  msgid "Information about the plugin"
349
  msgstr "Informationen über das Plugin"
350
 
351
+ #: wp-table-reloaded-admin.php:1368
352
  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."
353
  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."
354
 
355
+ #: wp-table-reloaded-admin.php:1442
356
  msgid "List Tables"
357
  msgstr "Liste der Tabellen"
358
 
359
+ #: wp-table-reloaded-admin.php:1447
360
  msgid "Plugin Options"
361
  msgstr "Plugin-Einstellungen"
362
 
363
+ #: wp-table-reloaded-admin.php:1448
364
  msgid "About the Plugin"
365
  msgstr "Über das Plugin"
366
 
386
  msgid ": (colon)"
387
  msgstr ": (Doppelpunkt)"
388
 
389
+ #: wp-table-reloaded-admin.php:1328
390
  msgid "Uninstall Plugin WP-Table Reloaded"
391
  msgstr "Plugin WP-Table Reloaded deinstallieren"
392
 
395
  msgid "HTML - Hypertext Markup Language"
396
  msgstr "HTML - Hypertext Markup Language"
397
 
398
+ #: wp-table-reloaded-admin.php:305
399
+ #: wp-table-reloaded-admin.php:352
400
  msgid "Copy of"
401
  msgstr "Kopie von"
402
 
403
+ #: wp-table-reloaded-admin.php:466
404
+ #: wp-table-reloaded-admin.php:475
405
+ #: wp-table-reloaded-admin.php:485
406
  msgid "Imported Table"
407
  msgstr "Importierte Tabelle"
408
 
409
+ #: wp-table-reloaded-admin.php:476
410
  msgid "via form"
411
  msgstr "via Eingabefeld"
412
 
413
+ #: wp-table-reloaded-admin.php:495
414
+ #: wp-table-reloaded-admin.php:520
415
  msgid "Table could not be imported."
416
  msgstr "Tabelle konnte nicht importiert werden."
417
 
418
+ #: wp-table-reloaded-admin.php:611
419
  msgid "WP-Table Reloaded"
420
  msgstr "WP-Table Reloaded"
421
 
422
+ #: wp-table-reloaded-admin.php:612
423
  msgid "Plugin deactivated successfully."
424
  msgstr "Plugin erfolgreich deaktiviert."
425
 
426
+ #: wp-table-reloaded-admin.php:613
427
  msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
428
  msgstr "Alle Tabellen, Daten und Einstellungen wurden gelöscht. Du kannst jetzt den Ordner des Plugins aus deinem WordPress Plugin-Ordner löschen."
429
 
430
+ #: wp-table-reloaded-admin.php:774
431
  msgid "Enter Table Name"
432
  msgstr "Tabellennamen eingeben"
433
 
434
+ #: wp-table-reloaded-admin.php:778
435
  msgid "Enter Description"
436
  msgstr "Beschreibung eingeben"
437
 
438
+ #: wp-table-reloaded-admin.php:1046
439
  msgid "Select Import Format"
440
  msgstr "Import-Format wählen"
441
 
442
+ #: wp-table-reloaded-admin.php:1236
443
  msgid "<small>(Only needed for CSV export.)</small>"
444
  msgstr "<small>(Nur für CSV-Export benötigt.)</small>"
445
 
446
+ #: wp-table-reloaded-admin.php:1103
 
 
 
 
 
 
 
 
447
  msgid "Paste data with Table to Import"
448
  msgstr "zu importierende Tabelle einfügen"
449
 
450
+ #: wp-table-reloaded-admin.php:1159
451
  msgid "Import"
452
  msgstr "Import"
453
 
454
+ #: wp-table-reloaded-admin.php:1196
455
  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."
456
  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."
457
 
458
+ #: wp-table-reloaded-admin.php:1239
459
  msgid "Download file"
460
  msgstr "Datei downloaden"
461
 
462
+ #: wp-table-reloaded-admin.php:1240
463
  msgid "Yes, I want to download the export file."
464
  msgstr "Ja, ich möchte die Export-Datei downloaden."
465
 
466
+ #: wp-table-reloaded-admin.php:1276
467
  msgid "Frontend Options"
468
  msgstr "Darstellungsoptionen"
469
 
470
+ #: wp-table-reloaded-admin.php:1302
471
  msgid "Admin Options"
472
  msgstr "Verwaltungseinstellungen"
473
 
474
+ #: wp-table-reloaded-admin.php:1323
475
  msgid "Manually Uninstall Plugin"
476
  msgstr "Manuelle Plugin-Deinstallation"
477
 
478
+ #: wp-table-reloaded-admin.php:1325
479
  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!"
480
  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!"
481
 
482
+ #: wp-table-reloaded-admin.php:1345
483
  msgid "Plugin Purpose"
484
  msgstr "Zweck des Plugins"
485
 
486
+ #: wp-table-reloaded-admin.php:1352
487
  msgid "Usage"
488
  msgstr "Benutzung"
489
 
490
+ #: wp-table-reloaded-admin.php:1359
491
  msgid "More Information and Documentation"
492
  msgstr "Weitere Informationen und Dokumentation"
493
 
494
+ #: wp-table-reloaded-admin.php:1366
495
  msgid "Author and Licence"
496
  msgstr "Autor und Lizenz"
497
 
498
+ #: wp-table-reloaded-admin.php:1373
499
  msgid "Credits and Thanks"
500
  msgstr "Danksagungen"
501
 
502
+ #: wp-table-reloaded-admin.php:929
503
  #, php-format
504
  msgid "Swap rows %s and %s"
505
  msgstr "Tausche die Zeilen %s und %s"
506
 
507
+ #: wp-table-reloaded-admin.php:949
508
  #, php-format
509
  msgid "Swap columns %s and %s"
510
  msgstr "Tausche die Spalten %s und %s"
511
 
512
+ #: wp-table-reloaded-admin.php:1122
513
  msgid "Import from original wp-Table plugin"
514
  msgstr "Import von Tabellen aus dem Plugin wp-Table"
515
 
516
+ #: wp-table-reloaded-admin.php:1696
517
  msgid "Do you really want to import this table from the wp-Table plugin?"
518
  msgstr "Möchtest du diese Tabelle wirklich aus dem Plugin wp-Table importieren?"
519
 
520
+ #: wp-table-reloaded-admin.php:1173
521
  msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
522
  msgstr "Das Plugin wp-Table von Alex Rabe scheint installiert zu sein, es wurden jedoch keine Tabellen gefunden."
523
 
524
+ #: wp-table-reloaded-admin.php:1682
525
  msgid "Do you really want to activate this? You should only do that right before uninstallation!"
526
  msgstr "Möchtest du diese Option wirklich aktivieren? Du solltest dies erst unmittelbar vor der Deaktivierung zum Zwecke der Deinstallation tun!"
527
 
528
+ #: wp-table-reloaded-admin.php:1376
529
  msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
530
  msgstr "Danke an <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> für das Plugin wp-Table,"
531
 
532
+ #: wp-table-reloaded-admin.php:1378
533
  msgid "the submitters of translations:"
534
  msgstr "die Übersetzer:"
535
 
536
+ #: wp-table-reloaded-admin.php:1379
537
  msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
538
  msgstr "Albanisch (danke an <a href=\"http://www.romeolab.com/\">Romeo</a>)"
539
 
540
+ #: wp-table-reloaded-admin.php:1382
541
  msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
542
  msgstr "Französisch (danke an <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
543
 
544
+ #: wp-table-reloaded-admin.php:1384
545
  msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
546
  msgstr "Russisch (danke an <a href=\"http://wp-skins.info/\">Truper</a>)"
547
 
548
+ #: wp-table-reloaded-admin.php:1386
549
  msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
550
  msgstr "Schwedisch (danke an <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
551
 
552
+ #: wp-table-reloaded-admin.php:1387
553
  msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
554
  msgstr "Türkisch (danke an <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
555
 
556
+ #: wp-table-reloaded-admin.php:1284
557
  msgid "Add custom CSS?"
558
  msgstr "Eigenes CSS hinzufügen?"
559
 
560
+ #: wp-table-reloaded-admin.php:1291
561
  msgid "Enter custom CSS"
562
  msgstr "Eigenes CSS eingeben"
563
 
564
+ #: wp-table-reloaded-admin.php:809
565
  #, php-format
566
  msgid "Edit Table \"%s\""
567
  msgstr "Bearbeite Tabelle \"%s\""
568
 
569
+ #: wp-table-reloaded-admin.php:813
570
  #, php-format
571
  msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
572
  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."
573
 
574
+ #: wp-table-reloaded-admin.php:914
575
  msgid "Data Manipulation"
576
  msgstr "Bearbeitungsfunktionen"
577
 
578
+ #: wp-table-reloaded-admin.php:955
579
  msgid "Insert Link"
580
  msgstr "Link einfügen"
581
 
582
+ #: wp-table-reloaded-admin.php:955
583
  msgid "Insert Image"
584
  msgstr "Bild einfügen"
585
 
586
+ #: wp-table-reloaded-admin.php:1683
587
  msgid "URL of link to insert"
588
  msgstr "URL des einzufügenden Links"
589
 
590
+ #: wp-table-reloaded-admin.php:1684
591
  msgid "Text of link"
592
  msgstr "Text des Links"
593
 
594
+ #: wp-table-reloaded-admin.php:1685
595
  msgid "To insert the following link into a cell, just click the cell after closing this dialog."
596
  msgstr "Um den folgenden Link in eine Tabellenzelle einzufügen, klicke einfach auf diese."
597
 
598
+ #: wp-table-reloaded-admin.php:1686
599
  msgid "URL of image to insert"
600
  msgstr "URL des einzufügenden Bildes"
601
 
602
+ #: wp-table-reloaded-admin.php:1688
603
  msgid "To insert the following image into a cell, just click the cell after closing this dialog."
604
  msgstr "Um das folgende Bild in eine Tabellenzelle einzufügen, klicke einfach auf diese."
605
 
606
+ #: wp-table-reloaded-admin.php:1039
607
  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."
608
  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."
609
 
615
  msgid "| (pipe)"
616
  msgstr "| (Strich)"
617
 
618
+ #: wp-table-reloaded-admin.php:245
619
  msgid "Table sorted successfully."
620
  msgstr "Tabelle erfolgreich sortiert."
621
 
622
+ #: wp-table-reloaded-admin.php:309
623
  msgid "Table copied successfully."
624
  msgid_plural "Tables copied successfully."
625
  msgstr[0] "Tabelle erfolgreich kopiert."
626
  msgstr[1] "Tabellen erfolgreich kopiert."
627
 
628
+ #: wp-table-reloaded-admin.php:315
629
  msgid "Table deleted successfully."
630
  msgid_plural "Tables deleted successfully."
631
  msgstr[0] "Tabelle erfolgreich gelöscht."
632
  msgstr[1] "Tabellen erfolgreich gelöscht."
633
 
634
+ #: wp-table-reloaded-admin.php:328
635
  msgid "Table imported successfully."
636
  msgid_plural "Tables imported successfully."
637
  msgstr[0] "Tabelle erfolgreich importiert."
638
  msgstr[1] "Tabellen erfolgreich importiert."
639
 
640
+ #: wp-table-reloaded-admin.php:335
641
  msgid "You did not select any tables!"
642
  msgstr "Du hast keine Tabellen ausgewählt."
643
 
644
+ #: wp-table-reloaded-admin.php:631
645
+ #: wp-table-reloaded-admin.php:692
646
  msgid "This is a list of all available tables."
647
  msgstr "Dies ist eine Liste aller verfügbaren Tabellen."
648
 
649
+ #: wp-table-reloaded-admin.php:631
650
  msgid "You may insert a table into a post or page here."
651
  msgstr "Hier kannst du eine Tabelle in einen Beitrag oder eine Seite einfügen."
652
 
653
+ #: wp-table-reloaded-admin.php:632
654
  msgid "Click the \"Insert\" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=&lt;the_table_ID&gt; /]</strong>)."
655
  msgstr "Klicke bei der einzufügenden Tabelle auf den Link \"Einfügen\", um den jeweiligen Shortcode in den Editor einzufügen (<strong>[table id=&lt;ID_der_Tabelle&gt; /]</strong>)."
656
 
657
+ #: wp-table-reloaded-admin.php:663
658
  msgid "Insert"
659
  msgstr "Einfügen"
660
 
661
+ #: wp-table-reloaded-admin.php:692
662
  msgid "You may add, edit, copy or delete tables here."
663
  msgstr "Hier kannst du Tabellen hinzufügen, bearbeiten, kopieren oder löschen."
664
 
665
+ #: wp-table-reloaded-admin.php:693
666
  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> or click the button \"Table\" in the editor toolbar."
667
  msgstr "Um eine Tabelle in einen Beitrag, eine Seite oder ein Text-Widget einzufügen, nutze den Shortcode <strong>[table id=&lt;ID_der_Tabelle&gt; /]</strong> oder klicke in der Editer-Toolbar auf die Schaltfläche \"Tabelle\"."
668
 
669
+ #: wp-table-reloaded-admin.php:744
670
+ #: wp-table-reloaded-admin.php:1167
671
  msgid "Bulk actions:"
672
  msgstr "Massenbearbeitung:"
673
 
674
+ #: wp-table-reloaded-admin.php:744
675
  msgid "Copy Tables"
676
  msgstr "Tabellen kopieren"
677
 
678
+ #: wp-table-reloaded-admin.php:744
679
  msgid "Delete Tables"
680
  msgstr "Tabellen löschen"
681
 
682
+ #: wp-table-reloaded-admin.php:848
683
+ #: wp-table-reloaded-admin.php:914
684
+ #: wp-table-reloaded-admin.php:983
685
+ #: wp-table-reloaded-admin.php:1394
686
  msgid "Hide"
687
  msgstr "Ausblenden"
688
 
689
+ #: wp-table-reloaded-admin.php:848
690
+ #: wp-table-reloaded-admin.php:914
691
+ #: wp-table-reloaded-admin.php:983
692
+ #: wp-table-reloaded-admin.php:1394
693
  msgid "Expand"
694
  msgstr "Erweitern"
695
 
696
+ #: wp-table-reloaded-admin.php:966
697
  msgid "ascending"
698
  msgstr "aufsteigender"
699
 
700
+ #: wp-table-reloaded-admin.php:967
701
  msgid "descending"
702
  msgstr "absteigender"
703
 
704
+ #: wp-table-reloaded-admin.php:970
705
  #, php-format
706
  msgid "Sort table by column %s in %s order"
707
  msgstr "Sortiere die Tabelle nach Spalte %s in %s Reihenfolge"
708
 
709
+ #: wp-table-reloaded-admin.php:973
710
  msgid "Sort"
711
  msgstr "Sortieren"
712
 
713
+ #: wp-table-reloaded-admin.php:1167
714
  msgid "Import Tables"
715
  msgstr "Tabellen importieren"
716
 
717
+ #: wp-table-reloaded-admin.php:1281
718
  msgid "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options)."
719
  msgstr "Ja, lade das <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. Dieses macht angezeigte Tabellen durch den Besucher sortierbar (kann für jede Tabelle separat in ihren Optionen aktiviert werden)."
720
 
721
+ #: wp-table-reloaded-admin.php:1286
722
  msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag."
723
  msgstr "Ja, lade folgenden CSS-Code auf meiner Website in einem [style]-HTML-Tag."
724
 
725
+ #: wp-table-reloaded-admin.php:1293
726
  #, php-format
727
  msgid "(You might get a better website performance, if you add the CSS styling to your theme's \"style.css\" <small>(located at %s)</small>) instead."
728
  msgstr "(Du kannst eine bessere Seitenladegeschwindigkeit erreichen, wenn du den CSS-Code stattdessen in die Datei \"style.css\" (%s) deines Themes einbaust.)"
729
 
730
+ #: wp-table-reloaded-admin.php:1294
731
  #, php-format
732
  msgid "See the <a href=\"%s\">plugin website</a> for styling examples or use one of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
733
  msgstr "Besuche die <a href=\"%s\">Plugin-Webseite</a> für Style-Beispiele oder verwende eine der folgenden: <a href=\"%s\">Beispiel-Datei 1</a> <a href=\"%s\">Beispiel-Datei 2</a>"
734
 
735
+ #: wp-table-reloaded-admin.php:1294
736
  msgid "Just copy the contents of a file into the textarea."
737
  msgstr "Kopiere einfach den Inhalt einer der Dateien in das Textfeld."
738
 
739
+ #: wp-table-reloaded-admin.php:1307
740
  msgid "Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!"
741
  msgstr "Ja, alles deinstallieren, wenn das Plugin deaktiviert wird. Achtung: Du solltest dieses Kästchen erst unmittelbar vor dem Deaktivieren des Plugins auf der WordPress-Plugin-Seite ankreuzen!"
742
 
743
+ #: wp-table-reloaded-admin.php:1307
744
  msgid "<small>(This setting does not influence the \"Manually Uninstall Plugin\" button below!)</small>"
745
  msgstr "<small>(Diese Einstellung hat keinen Einfluss auf die Schaltfläche \"Plugin WP-Table Reloaded deinstallieren\" unten!)</small>"
746
 
747
+ #: wp-table-reloaded-admin.php:1347
748
  msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
749
  msgstr "Dieses Plugin ermöglicht dir das Erstellen und Verwalten von Tabellen im Admin-Bereich von WordPress."
750
 
751
+ #: wp-table-reloaded-admin.php:1347
752
  msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
753
  msgstr "Diese Tabellen können Zeichenketten, Zahlen und sogar HTML (z.B. für Bilder oder Links) enthalten."
754
 
755
+ #: wp-table-reloaded-admin.php:1347
756
  msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
757
  msgstr "Du kannst die Tabellen dann mit Hilfe eines Shortcodes in deinen Beiträgen, auf deinen Seiten oder in Text-Widgets anzeigen."
758
 
759
+ #: wp-table-reloaded-admin.php:1347
760
  msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
761
  msgstr "Wenn du eine Tabelle an einer anderen Stelle in deinem Theme anzeigen möchtest, kannst du eine Template Tag Function nutzen."
762
 
763
+ #: wp-table-reloaded-admin.php:1354
764
  msgid "At first you should add or import a table."
765
  msgstr "Am Anfang solltest du eine neue Tabelle anlegen oder importieren."
766
 
767
+ #: wp-table-reloaded-admin.php:1354
768
  msgid "This means that you either let the plugin create an empty table for you or that you load an existing table from either a CSV, XML or HTML file."
769
  msgstr "Dies bedeutet, dass du entweder das Plugin eine leere Tabelle erzeugen lässt, oder dass du eine Tabelle aus einer CSV-, XML- oder HTML-Datei einliest."
770
 
771
+ #: wp-table-reloaded-admin.php:1354
772
  msgid "Then you can edit your data or change the structure of your table (e.g. by inserting or deleting rows or columns, swaping rows or columns or sorting them) and select specific table options like alternating row colors or whether to print the name or description, if you want."
773
  msgstr "Dann kannst du die Inhalte bearbeiten oder die Tabellenstruktur ändern (z.B. durch Einfügen oder Löschen von Spalten oder Zeilen, das Tauschen von Spalten oder Zeilen oder durch Sortieren) und spezielle Tabelleneinstellungen, wie alternierende Zeilenhintergründe, das Anzeigen des Tabellennamens oder der Beschreibung, vornehmen, falls du möchtest."
774
 
775
+ #: wp-table-reloaded-admin.php:1354
776
  msgid "To easily add a link or an image to a cell, use the provided buttons. Those will ask you for the URL and a title. Then you can click into a cell and the corresponding HTML will be added to it for you."
777
  msgstr "Um einen Link oder ein Bild in eine Zelle einzufügen, nutze die entsprechenden Schaltflächen. Du wirst dann nach der URL und einem Text gefragt und kannst das entsprechende HTML-Fragment durch Anklicken einer Zelle in diese einfügen."
778
 
779
+ #: wp-table-reloaded-admin.php:1354
780
  msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them."
781
  msgstr "Um die Tabelle in einen Beitrag, eine Seite oder ein Text-Widget einzufügen, füge diesen einfach den Shortcode [table id=&lt;ID_der_Tabelle &gt; /] hinzu."
782
 
783
+ #: wp-table-reloaded-admin.php:1354
784
  msgid "You can also select the desired table from a list (after clicking the button \"Table\" in the editor toolbar) and the corresponding shortcode will be added for you."
785
  msgstr "Du kannst die gewünschte Tabelle auch aus einer Liste auswählen (nach einem Klick auf den Button \"Tabelle\" in der Toolbar des Editors) und der entsprechende Shortcode wird für automatisch eingefügt."
786
 
787
+ #: wp-table-reloaded-admin.php:1354
788
  msgid "You may also style your table via CSS. Example files are provided on the plugin website. Every table has the CSS class \"wp-table-reloaded\". Each table also has the class \"wp-table-reloaded-&lt;table-id&gt;\"."
789
  msgstr "Du kannst eine Tabelle auch mittels CSS stylen. Beispieldateien findest du auf der Plugin-Webseite. Jede Tabelle hat die CSS-Klasse \"wp-table-reloaded\". Zusätzlich hat jede Tabelle die Klasse \"wp-table-reloaded-id-&lt;ID_der_Tabelle&gt;\"."
790
 
791
+ #: wp-table-reloaded-admin.php:1354
792
  msgid "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 for example."
793
  msgstr "Du kannst die Klassen \"column-&lt;Nummer&gt;\" und \"row-&lt;Nummer&gt;\" verwenden, um Zeilen und Spalten einzeln zu stylen. Verwende diese Klassen z.B. für verschiedene Spaltenbreiten oder die Textausrichtung."
794
 
795
+ #: wp-table-reloaded-admin.php:1361
796
  msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
797
  msgstr "Mehr Informationen sind auf der <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-deutsch/\">Plugin-Webseite</a> oder auf der Plugin-Seite im <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a> erhältlich."
798
 
799
+ #: wp-table-reloaded-admin.php:1361
800
+ #: wp-table-reloaded-admin.php:1456
801
  msgid "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentation</a> or find out how to get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
802
  msgstr "Lies die <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">Dokumentation</a> oder bitte um <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">Unterstützung</a>."
803
 
804
+ #: wp-table-reloaded-admin.php:1368
805
  msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>a donation</strong></a> and rate the plugin in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
806
  msgstr "Wenn dir das Plugin gefällt, ziehe doch eine <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>Spende</strong></a> in Betracht und bewerte das Plugin im <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
807
 
808
+ #: wp-table-reloaded-admin.php:1368
809
  msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
810
  msgstr "Spenden und gute Bewertungen ermutigen mich, das Plugin weiterzuentwickeln and unzählige Stunden Support zu leisten. Ich bin für jeden Betrag dankbar! Vielen Dank!"
811
 
812
+ #: wp-table-reloaded-admin.php:1377
813
  msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
814
  msgstr "Christian Bach für das <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
815
 
816
+ #: wp-table-reloaded-admin.php:1385
817
  msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
818
  msgstr "Spanisch (danke an <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> und <a href=\"http://halles.cl/\">Matias Halles</a>)"
819
 
820
+ #: wp-table-reloaded-admin.php:1388
821
  msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
822
  msgstr "und an alle Spender, Mitarbeiter, Förderer, Kritiker und Nutzer des Plugins!"
823
 
824
+ #: wp-table-reloaded-admin.php:1394
825
  msgid "Debug and Version Information"
826
  msgstr "Debug- und Versions-Informationen"
827
 
828
+ #: wp-table-reloaded-admin.php:1397
829
  msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
830
  msgstr "Du nutzt folgende Software-Versionen. <strong>Bitte gib diese Informationen in Bug-Reports an.</strong>"
831
 
832
+ #: wp-table-reloaded-admin.php:1456
833
  msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
834
  msgstr "Weitere Informationen findest du auf der <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-deutsch/\">Plugin-Webseite</a>."
835
 
836
+ #: wp-table-reloaded-admin.php:1687
837
  msgid "''alt'' text of the image"
838
  msgstr "''alt''-Text des Bildes"
839
 
840
+ #: wp-table-reloaded-admin.php:1689
841
  msgid "Do you want to copy the selected tables?"
842
  msgstr "Möchtest du die ausgewählten Tabellen kopieren?"
843
 
844
+ #: wp-table-reloaded-admin.php:1690
845
  msgid "The selected tables and all content will be erased. Do you really want to delete them?"
846
  msgstr "Die ausgewählten Tabellen und alle Inhalte werden gelöscht. Willst du diese wirklich löschen?"
847
 
848
+ #: wp-table-reloaded-admin.php:1691
849
  msgid "Do you really want to import the selected tables from the wp-Table plugin?"
850
  msgstr "Möchtest du die ausgewählten Tabellen aus dem Plugin wp-Table importieren?"
851
 
852
+ #: wp-table-reloaded-admin.php:1748
853
  msgid "Table"
854
  msgstr "Tabelle"
855
 
856
+ #: wp-table-reloaded-admin.php:1381
857
  msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
858
  msgstr "Tschechisch (danke an <a href=\"http://separatista.net/\">Separatista</a>)"
859
 
860
+ #: wp-table-reloaded-admin.php:1383
861
  msgid "Polish (thanks to Alex Kortan)"
862
  msgstr "Polnisch (danke an Alex Kortan)"
863
 
864
+ #: wp-table-reloaded-admin.php:180
865
+ #, php-format
866
+ msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
867
+ msgstr "Tabelle erfolgreich bearbeitet. Die Tabelle hat jetzt die ID %s. Bereits verwendete Shortcodes sollten entsprechend angepasst werden."
868
+
869
+ #: wp-table-reloaded-admin.php:182
870
+ #, php-format
871
+ msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
872
+ msgstr "Die Tabellen-ID konnte nicht von %s in %s geändert werden, da bereits eine Tabelle mit dieser ID existiert."
873
+
874
+ #: wp-table-reloaded-admin.php:258
875
+ msgid "Row added successfully."
876
+ msgid_plural "Rows added successfully."
877
+ msgstr[0] "Zeile erfolgreich angefügt."
878
+ msgstr[1] "Zeilen erfolgreich angefügt."
879
+
880
+ #: wp-table-reloaded-admin.php:270
881
+ msgid "Column added successfully."
882
+ msgid_plural "Columns added successfully."
883
+ msgstr[0] "Spalte erfolgreich angefügt."
884
+ msgstr[1] "Spalten erfolgreich angefügt."
885
+
886
+ #: wp-table-reloaded-admin.php:467
887
+ #: wp-table-reloaded-admin.php:486
888
+ #, php-format
889
+ msgid "from %s"
890
+ msgstr "von %s"
891
+
892
+ #: wp-table-reloaded-admin.php:507
893
+ #, php-format
894
+ msgid "Table %s (%s) replaced successfully."
895
+ msgstr "Tabelle %s (%s) erfolgreich ersetzt."
896
+
897
+ #: wp-table-reloaded-admin.php:822
898
+ msgid "Table ID"
899
+ msgstr "Tabellen-ID"
900
+
901
+ #: wp-table-reloaded-admin.php:901
902
+ #, php-format
903
+ msgid "Add %s row(s)"
904
+ msgstr "%s Zeile(n)"
905
+
906
+ #: wp-table-reloaded-admin.php:902
907
+ #: wp-table-reloaded-admin.php:904
908
+ msgid "Add"
909
+ msgstr "hinzufügen"
910
+
911
+ #: wp-table-reloaded-admin.php:903
912
+ #, php-format
913
+ msgid "Add %s column(s)"
914
+ msgstr "%s Spalte(n)"
915
+
916
+ #: wp-table-reloaded-admin.php:1056
917
+ msgid "Add or Replace Table?"
918
+ msgstr "Tabelle hinzufügen oder ersetzen?"
919
+
920
+ #: wp-table-reloaded-admin.php:1058
921
+ msgid "Add as new Table"
922
+ msgstr "als neue Tabelle hinzufügen"
923
+
924
+ #: wp-table-reloaded-admin.php:1059
925
+ msgid "Replace existing Table"
926
+ msgstr "bereits existierende Tabelle ersetzen"
927
+
928
+ #: wp-table-reloaded-admin.php:1063
929
+ msgid "Select existing Table to Replace"
930
+ msgstr "zu ersetzende Tabelle auswählen"
931
+
932
+ #: wp-table-reloaded-admin.php:1078
933
+ msgid "Select source for import"
934
+ msgstr "Import-Art auswählen"
935
+
936
+ #: wp-table-reloaded-admin.php:1080
937
+ msgid "File upload"
938
+ msgstr "Datei hochladen"
939
+
940
+ #: wp-table-reloaded-admin.php:1082
941
+ msgid "URL"
942
+ msgstr "Download von URL"
943
+
944
+ #: wp-table-reloaded-admin.php:1084
945
+ msgid "Manual input"
946
+ msgstr "Manuelle Eingabe"
947
+
948
+ #: wp-table-reloaded-admin.php:1085
949
+ msgid "File on server"
950
+ msgstr "Datei auf Server"
951
+
952
+ #: wp-table-reloaded-admin.php:1094
953
+ msgid "URL to import table from"
954
+ msgstr "URL der zu importierenden Tabelle"
955
+
956
+ #: wp-table-reloaded-admin.php:1099
957
+ msgid "Path to file on server"
958
+ msgstr "Pfad zu Datei auf Webserver"
959
+
960
+ #: wp-table-reloaded-admin.php:1380
961
+ msgid "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/\">Rics</a>)"
962
+ msgstr "Brasilianisch/Portugiesisch (danke an <a href=\"http://www.pensarics.com/\">Rics</a>)"
963
+
964
+ #: wp-table-reloaded-admin.php:1699
965
+ msgid "Do you really want to change the ID of the table?"
966
+ msgstr "Möchtest du die ID der Tabelle wirklich ändern?"
967
+
languages/wp-table-reloaded-pt_BR.mo ADDED
Binary file
languages/wp-table-reloaded-pt_BR.po ADDED
@@ -0,0 +1,967 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-Table Reloaded v1.2.1\n"
4
+ "PO-Revision-Date: 2009-06-07 19:23-0300\n"
5
+ "Last-Translator: Rics - www.pensarics.com\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=2; plural=n != 1;\n"
10
+ "X-Poedit-Language: Portuguese\n"
11
+ "X-Poedit-Country: BRAZIL\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:38
19
+ msgid "CSV - Character-Separated Values"
20
+ msgstr "CSV - Valores Separados por Vírgula"
21
+
22
+ #: php/wp-table-reloaded-export.class.php:31
23
+ #: php/wp-table-reloaded-import.class.php:39
24
+ msgid "HTML - Hypertext Markup Language"
25
+ msgstr "HTML - Linguagem de Marcação de Texto"
26
+
27
+ #: php/wp-table-reloaded-export.class.php:32
28
+ #: php/wp-table-reloaded-import.class.php:40
29
+ msgid "XML - eXtended Markup Language"
30
+ msgstr "XML - eXtended Markup Language"
31
+
32
+ #: php/wp-table-reloaded-export.class.php:35
33
+ msgid "; (semicolon)"
34
+ msgstr "; (ponto e vírgula)"
35
+
36
+ #: php/wp-table-reloaded-export.class.php:36
37
+ msgid ", (comma)"
38
+ msgstr ", (vírgula)"
39
+
40
+ #: php/wp-table-reloaded-export.class.php:37
41
+ msgid ": (colon)"
42
+ msgstr ": (dois pontos)"
43
+
44
+ #: php/wp-table-reloaded-export.class.php:38
45
+ msgid ". (dot)"
46
+ msgstr ". (ponto)"
47
+
48
+ #: php/wp-table-reloaded-export.class.php:39
49
+ msgid "| (pipe)"
50
+ msgstr "| (pipe)"
51
+
52
+ #: wp-table-reloaded-admin.php:152
53
+ #, php-format
54
+ msgid "Table \"%s\" added successfully."
55
+ msgstr "Tabela \"%s\" adicionada com sucesso."
56
+
57
+ #: wp-table-reloaded-admin.php:185
58
+ msgid "Table edited successfully."
59
+ msgstr "Tabela editada com sucesso."
60
+
61
+ #: wp-table-reloaded-admin.php:208
62
+ msgid "Rows swapped successfully."
63
+ msgstr "Linhas trocadas com sucesso."
64
+
65
+ #: wp-table-reloaded-admin.php:227
66
+ msgid "Columns swapped successfully."
67
+ msgstr "Colunas trocadas com sucesso."
68
+
69
+ #: wp-table-reloaded-admin.php:245
70
+ msgid "Table sorted successfully."
71
+ msgstr "Tabela ordenada com sucesso."
72
+
73
+ #: wp-table-reloaded-admin.php:305
74
+ #: wp-table-reloaded-admin.php:352
75
+ msgid "Copy of"
76
+ msgstr "Cópia de"
77
+
78
+ #: wp-table-reloaded-admin.php:309
79
+ msgid "Table copied successfully."
80
+ msgid_plural "Tables copied successfully."
81
+ msgstr[0] "Tabela copiada com sucesso."
82
+ msgstr[1] "Tabelas copiadas com sucesso."
83
+
84
+ #: wp-table-reloaded-admin.php:315
85
+ msgid "Table deleted successfully."
86
+ msgid_plural "Tables deleted successfully."
87
+ msgstr[0] "Tabela excluída com sucesso."
88
+ msgstr[1] "Tabelas excluídas com sucesso."
89
+
90
+ #: wp-table-reloaded-admin.php:328
91
+ msgid "Table imported successfully."
92
+ msgid_plural "Tables imported successfully."
93
+ msgstr[0] "Tabela importada com sucesso."
94
+ msgstr[1] "Tabelas importadas com sucesso."
95
+
96
+ #: wp-table-reloaded-admin.php:335
97
+ msgid "You did not select any tables!"
98
+ msgstr "Você não selecionou tabela alguma."
99
+
100
+ #: wp-table-reloaded-admin.php:357
101
+ #, php-format
102
+ msgid "Table \"%s\" copied successfully."
103
+ msgstr "Tabela \"%s\" copiada com sucesso."
104
+
105
+ #: wp-table-reloaded-admin.php:373
106
+ #, php-format
107
+ msgid "Table \"%s\" deleted successfully."
108
+ msgstr "Tabela \"%s\" excluída com sucesso."
109
+
110
+ #: wp-table-reloaded-admin.php:383
111
+ msgid "Row deleted successfully."
112
+ msgstr "Linha excluída com sucesso."
113
+
114
+ #: wp-table-reloaded-admin.php:396
115
+ msgid "Column deleted successfully."
116
+ msgstr "Coluna excluída com sucesso."
117
+
118
+ #: wp-table-reloaded-admin.php:401
119
+ msgid "Delete failed."
120
+ msgstr "A exclusão falhou."
121
+
122
+ #: wp-table-reloaded-admin.php:426
123
+ msgid "Row inserted successfully."
124
+ msgstr "Linha inserida com sucesso."
125
+
126
+ #: wp-table-reloaded-admin.php:435
127
+ msgid "Column inserted successfully."
128
+ msgstr "Coluna inserida com sucesso."
129
+
130
+ #: wp-table-reloaded-admin.php:438
131
+ msgid "Insert failed."
132
+ msgstr "A inserção falhou."
133
+
134
+ #: wp-table-reloaded-admin.php:466
135
+ #: wp-table-reloaded-admin.php:475
136
+ #: wp-table-reloaded-admin.php:485
137
+ msgid "Imported Table"
138
+ msgstr "Tabela Importada"
139
+
140
+ #: wp-table-reloaded-admin.php:476
141
+ msgid "via form"
142
+ msgstr "via formulário"
143
+
144
+ #: wp-table-reloaded-admin.php:511
145
+ #: wp-table-reloaded-admin.php:538
146
+ msgid "Table imported successfully."
147
+ msgstr "Tabela importada com sucesso."
148
+
149
+ #: wp-table-reloaded-admin.php:495
150
+ #: wp-table-reloaded-admin.php:520
151
+ msgid "Table could not be imported."
152
+ msgstr "Não foi possível importar a tabela."
153
+
154
+ #: wp-table-reloaded-admin.php:565
155
+ #, php-format
156
+ msgid "Table \"%s\" exported successfully."
157
+ msgstr "Tabela \"%s\" exportada com sucesso."
158
+
159
+ #: wp-table-reloaded-admin.php:593
160
+ msgid "Options saved successfully."
161
+ msgstr "Opções salvas com sucesso."
162
+
163
+ #: wp-table-reloaded-admin.php:611
164
+ msgid "WP-Table Reloaded"
165
+ msgstr "WP-Table Reloaded"
166
+
167
+ #: wp-table-reloaded-admin.php:612
168
+ msgid "Plugin deactivated successfully."
169
+ msgstr "Plugin desativado com sucesso."
170
+
171
+ #: wp-table-reloaded-admin.php:613
172
+ msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
173
+ msgstr "Todas as tabelas, informações e opções foram excluídas. Você já pode excluir a pasta deste plugin da pasta de plugins do WordPress."
174
+
175
+ #: wp-table-reloaded-admin.php:629
176
+ #: wp-table-reloaded-admin.php:689
177
+ msgid "List of Tables"
178
+ msgstr "Lista de Tabelas"
179
+
180
+ #: wp-table-reloaded-admin.php:631
181
+ #: wp-table-reloaded-admin.php:692
182
+ msgid "This is a list of all available tables."
183
+ msgstr "Esta é uma lista de todas as tabelas disponíveis."
184
+
185
+ #: wp-table-reloaded-admin.php:631
186
+ msgid "You may insert a table into a post or page here."
187
+ msgstr "Você pode inserir uma tabela em um artigo (post) ou página aqui."
188
+
189
+ #: wp-table-reloaded-admin.php:632
190
+ msgid "Click the \"Insert\" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=&lt;the_table_ID&gt; /]</strong>)."
191
+ msgstr "Clique no link \"Insert\" depois da tabela escolhida e o código correspondente será inserido no seu editor (<strong>[table id=&lt;the_table_ID&gt; /]</strong>)."
192
+
193
+ #: wp-table-reloaded-admin.php:640
194
+ #: wp-table-reloaded-admin.php:704
195
+ #: wp-table-reloaded-admin.php:1135
196
+ msgid "ID"
197
+ msgstr "ID"
198
+
199
+ #: wp-table-reloaded-admin.php:641
200
+ #: wp-table-reloaded-admin.php:705
201
+ #: wp-table-reloaded-admin.php:773
202
+ #: wp-table-reloaded-admin.php:826
203
+ #: wp-table-reloaded-admin.php:1136
204
+ msgid "Table Name"
205
+ msgstr "Nome da Tabela"
206
+
207
+ #: wp-table-reloaded-admin.php:642
208
+ #: wp-table-reloaded-admin.php:706
209
+ #: wp-table-reloaded-admin.php:777
210
+ #: wp-table-reloaded-admin.php:830
211
+ #: wp-table-reloaded-admin.php:1137
212
+ msgid "Description"
213
+ msgstr "Descrição"
214
+
215
+ #: wp-table-reloaded-admin.php:643
216
+ #: wp-table-reloaded-admin.php:707
217
+ #: wp-table-reloaded-admin.php:1138
218
+ msgid "Action"
219
+ msgstr "Ação"
220
+
221
+ #: wp-table-reloaded-admin.php:663
222
+ msgid "Insert"
223
+ msgstr "Inserir"
224
+
225
+ #: wp-table-reloaded-admin.php:672
226
+ #: wp-table-reloaded-admin.php:753
227
+ #: wp-table-reloaded-admin.php:1256
228
+ msgid "No tables found."
229
+ msgstr "Nenhuma tabela foi encontrada."
230
+
231
+ #: wp-table-reloaded-admin.php:692
232
+ msgid "You may add, edit, copy or delete tables here."
233
+ msgstr "Você pode adicionar, editar, copiar ou excluir tabelas aqui."
234
+
235
+ #: wp-table-reloaded-admin.php:693
236
+ 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> or click the button \"Table\" in the editor toolbar."
237
+ msgstr "Se você quiser mostrar uma tabela em suas páginas, artigos (posts) ou widgets de texto, use o código <strong>[table id=&lt;the_table_ID&gt; /]</strong> ou clique no botão \"Table\" na barra de ferramentas do seu editor."
238
+
239
+ #: wp-table-reloaded-admin.php:733
240
+ msgid "Edit"
241
+ msgstr "Editar"
242
+
243
+ #: wp-table-reloaded-admin.php:734
244
+ msgid "Copy"
245
+ msgstr "Copiar"
246
+
247
+ #: wp-table-reloaded-admin.php:735
248
+ msgid "Export"
249
+ msgstr "Exportar"
250
+
251
+ #: wp-table-reloaded-admin.php:736
252
+ msgid "Delete"
253
+ msgstr "Excluir"
254
+
255
+ #: wp-table-reloaded-admin.php:744
256
+ #: wp-table-reloaded-admin.php:1167
257
+ msgid "Bulk actions:"
258
+ msgstr "Ações em lote:"
259
+
260
+ #: wp-table-reloaded-admin.php:744
261
+ msgid "Copy Tables"
262
+ msgstr "Copiar Tabelas"
263
+
264
+ #: wp-table-reloaded-admin.php:744
265
+ msgid "Delete Tables"
266
+ msgstr "Excluir Tabelas"
267
+
268
+ #: wp-table-reloaded-admin.php:753
269
+ #: wp-table-reloaded-admin.php:1256
270
+ #, php-format
271
+ msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
272
+ msgstr "Você deve <a href=\"%s\">adicionar</a> ou <a href=\"%s\">importar</a> uma!"
273
+
274
+ #: wp-table-reloaded-admin.php:761
275
+ #: wp-table-reloaded-admin.php:1443
276
+ msgid "Add new Table"
277
+ msgstr "Adicionar nova Tabela"
278
+
279
+ #: wp-table-reloaded-admin.php:765
280
+ 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."
281
+ msgstr "Você pode adicionar uma tabela aqui. Digite um nome pra ela, uma descrição (opcional) e o número de linhas e colunas.<br />Você pode adicionar, inserir or excluir linhas e colunas depois."
282
+
283
+ #: wp-table-reloaded-admin.php:774
284
+ msgid "Enter Table Name"
285
+ msgstr "Digite o Nome da Tabela"
286
+
287
+ #: wp-table-reloaded-admin.php:778
288
+ msgid "Enter Description"
289
+ msgstr "Digite a Descrição"
290
+
291
+ #: wp-table-reloaded-admin.php:781
292
+ msgid "Number of Rows"
293
+ msgstr "Número de Linhas"
294
+
295
+ #: wp-table-reloaded-admin.php:785
296
+ msgid "Number of Columns"
297
+ msgstr "Número de Colunas"
298
+
299
+ #: wp-table-reloaded-admin.php:792
300
+ msgid "Add Table"
301
+ msgstr "Adicionar Tabela"
302
+
303
+ #: wp-table-reloaded-admin.php:809
304
+ #, php-format
305
+ msgid "Edit Table \"%s\""
306
+ msgstr "Editar Tabela \"%s\""
307
+
308
+ #: wp-table-reloaded-admin.php:812
309
+ msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
310
+ msgstr "Você pode editar o conteúdo da tabela aqui. Também é possível inserir e excluir colunas e linhas."
311
+
312
+ #: wp-table-reloaded-admin.php:813
313
+ #, php-format
314
+ msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
315
+ msgstr "Se você quer mostrar uma tabela em suas páginas, artigos (posts) ou widgets de texto, use esse código: <strong>[table id=%s /]</strong>"
316
+
317
+ #: wp-table-reloaded-admin.php:818
318
+ msgid "Table Information"
319
+ msgstr "Informações da Tabela"
320
+
321
+ #: wp-table-reloaded-admin.php:838
322
+ #: wp-table-reloaded-admin.php:1014
323
+ msgid "Update Changes"
324
+ msgstr "Atualizar Mudanças"
325
+
326
+ #: wp-table-reloaded-admin.php:839
327
+ #: wp-table-reloaded-admin.php:1015
328
+ msgid "Save and go back"
329
+ msgstr "Salvar e voltar"
330
+
331
+ #: wp-table-reloaded-admin.php:842
332
+ #: wp-table-reloaded-admin.php:1018
333
+ msgid "Cancel"
334
+ msgstr "Cancelar"
335
+
336
+ #: wp-table-reloaded-admin.php:848
337
+ msgid "Table Contents"
338
+ msgstr "Conteúdo da Tabela"
339
+
340
+ #: wp-table-reloaded-admin.php:848
341
+ #: wp-table-reloaded-admin.php:914
342
+ #: wp-table-reloaded-admin.php:983
343
+ #: wp-table-reloaded-admin.php:1394
344
+ msgid "Hide"
345
+ msgstr "Esconder"
346
+
347
+ #: wp-table-reloaded-admin.php:848
348
+ #: wp-table-reloaded-admin.php:914
349
+ #: wp-table-reloaded-admin.php:983
350
+ #: wp-table-reloaded-admin.php:1394
351
+ msgid "Expand"
352
+ msgstr "Expandir"
353
+
354
+ #: wp-table-reloaded-admin.php:877
355
+ msgid "Insert Row"
356
+ msgstr "Adicionar Linha"
357
+
358
+ #: wp-table-reloaded-admin.php:879
359
+ msgid "Delete Row"
360
+ msgstr "Excluir Linha"
361
+
362
+ #: wp-table-reloaded-admin.php:889
363
+ msgid "Insert Column"
364
+ msgstr "Inserir Coluna"
365
+
366
+ #: wp-table-reloaded-admin.php:891
367
+ msgid "Delete Column"
368
+ msgstr "Excluir Coluna"
369
+
370
+ #: wp-table-reloaded-admin.php:914
371
+ msgid "Data Manipulation"
372
+ msgstr "Manipulação de Conteúdo"
373
+
374
+ #: wp-table-reloaded-admin.php:929
375
+ #, php-format
376
+ msgid "Swap rows %s and %s"
377
+ msgstr "Trocar linhas %s e %s"
378
+
379
+ #: wp-table-reloaded-admin.php:932
380
+ #: wp-table-reloaded-admin.php:952
381
+ msgid "Swap"
382
+ msgstr "Trocar"
383
+
384
+ #: wp-table-reloaded-admin.php:949
385
+ #, php-format
386
+ msgid "Swap columns %s and %s"
387
+ msgstr "Trocar colunas %s e %s"
388
+
389
+ #: wp-table-reloaded-admin.php:955
390
+ msgid "Insert Link"
391
+ msgstr "Inserir Link"
392
+
393
+ #: wp-table-reloaded-admin.php:955
394
+ msgid "Insert Image"
395
+ msgstr "Inserir Imagem"
396
+
397
+ #: wp-table-reloaded-admin.php:966
398
+ msgid "ascending"
399
+ msgstr "crescente"
400
+
401
+ #: wp-table-reloaded-admin.php:967
402
+ msgid "descending"
403
+ msgstr "decrescente"
404
+
405
+ #: wp-table-reloaded-admin.php:970
406
+ #, php-format
407
+ msgid "Sort table by column %s in %s order"
408
+ msgstr "Ordenar tabela pela coluna %s em ordem %s"
409
+
410
+ #: wp-table-reloaded-admin.php:973
411
+ msgid "Sort"
412
+ msgstr "Ordenar"
413
+
414
+ #: wp-table-reloaded-admin.php:983
415
+ msgid "Table Settings"
416
+ msgstr "Configurações da Tabela"
417
+
418
+ #: wp-table-reloaded-admin.php:985
419
+ msgid "These settings will only be used for this table."
420
+ msgstr "Estas configurações serão utilizadas somente para esta tabela."
421
+
422
+ #: wp-table-reloaded-admin.php:988
423
+ msgid "Alternating row colors"
424
+ msgstr "Alternar cores das linhas"
425
+
426
+ #: wp-table-reloaded-admin.php:989
427
+ msgid "Every second row will have an alternating background color."
428
+ msgstr "A segunda linha de cada duas terá uma cor de fundo diferente."
429
+
430
+ #: wp-table-reloaded-admin.php:992
431
+ msgid "Use Table Headline"
432
+ msgstr "Usar Cabeçalho da Tabela"
433
+
434
+ #: wp-table-reloaded-admin.php:993
435
+ msgid "The first row of your table will use the [th] tag."
436
+ msgstr "A primeira linha da sua tabela irá usar a tag [th]."
437
+
438
+ #: wp-table-reloaded-admin.php:996
439
+ msgid "Print Table Name"
440
+ msgstr "Mostrar o Nome da Tabela"
441
+
442
+ #: wp-table-reloaded-admin.php:997
443
+ msgid "The Table Name will be written above the table in a [h2] tag."
444
+ msgstr "O Nome da tabela será escrito acima da tabela em uma tag [h2]."
445
+
446
+ #: wp-table-reloaded-admin.php:1000
447
+ msgid "Print Table Description"
448
+ msgstr "Mostrar Descrição da Tabela"
449
+
450
+ #: wp-table-reloaded-admin.php:1001
451
+ msgid "The Table Description will be written under the table."
452
+ msgstr "A Descrição será escrita embaixo da tabela."
453
+
454
+ #: wp-table-reloaded-admin.php:1004
455
+ msgid "Use Tablesorter"
456
+ msgstr "Usar o Organizador de Tabela"
457
+
458
+ #: wp-table-reloaded-admin.php:1005
459
+ 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>"
460
+ msgstr "Você poderá organizar uma tabela usando o <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. <small>Atenção: Você precisa ter o Tablesorter habilitado na página de \"Opções do Plugin\" e a opção \"Usar Cabeçalho da Tabela\" deve estar habilitada pra isso funcionar!</small>"
461
+
462
+ #: wp-table-reloaded-admin.php:1020
463
+ msgid "Other actions"
464
+ msgstr "Outras ações"
465
+
466
+ #: wp-table-reloaded-admin.php:1023
467
+ msgid "Delete Table"
468
+ msgstr "Excluir Tabela"
469
+
470
+ #: wp-table-reloaded-admin.php:1024
471
+ #: wp-table-reloaded-admin.php:1245
472
+ msgid "Export Table"
473
+ msgstr "Exportar Tabela"
474
+
475
+ #: wp-table-reloaded-admin.php:1035
476
+ #: wp-table-reloaded-admin.php:1444
477
+ msgid "Import a Table"
478
+ msgstr "Importar uma Tabela"
479
+
480
+ #: wp-table-reloaded-admin.php:1039
481
+ 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."
482
+ msgstr "Você pode importar uma tabela de algum conteúdo já existente aqui.<br />Pode ser um arquivo CSV, XML ou HTML. Porém ele precisa seguir uma estrutura pré-definida. Por favor, consulte a documentação."
483
+
484
+ #: wp-table-reloaded-admin.php:1046
485
+ msgid "Select Import Format"
486
+ msgstr "Selecionar o Formato de Importação"
487
+
488
+ #: wp-table-reloaded-admin.php:1089
489
+ msgid "Select File with Table to Import"
490
+ msgstr "Selecionar o Arquivo com a Tabela a ser Importada"
491
+
492
+ #: wp-table-reloaded-admin.php:1103
493
+ msgid "Paste data with Table to Import"
494
+ msgstr "Colar conteúdo com a Tabela para Importar"
495
+
496
+ #: wp-table-reloaded-admin.php:1109
497
+ msgid "Import Table"
498
+ msgstr "Importar Tabela"
499
+
500
+ #: wp-table-reloaded-admin.php:1122
501
+ msgid "Import from original wp-Table plugin"
502
+ msgstr "Importar do plugin wp-Table original"
503
+
504
+ #: wp-table-reloaded-admin.php:1159
505
+ msgid "Import"
506
+ msgstr "Importar"
507
+
508
+ #: wp-table-reloaded-admin.php:1167
509
+ msgid "Import Tables"
510
+ msgstr "Importar Tabelas"
511
+
512
+ #: wp-table-reloaded-admin.php:1173
513
+ msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
514
+ msgstr "O plugin wp-Table, de Alex Rabe, parece estar instalado, mas nenhuma tabela foi encontrada."
515
+
516
+ #: wp-table-reloaded-admin.php:1192
517
+ #: wp-table-reloaded-admin.php:1445
518
+ msgid "Export a Table"
519
+ msgstr "Exportar uma Tabela"
520
+
521
+ #: wp-table-reloaded-admin.php:1196
522
+ 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."
523
+ msgstr "Você pode exportar uma tabela aqui. Selecione a tabela, o formato para a exportação e um delimitador (necessário somente para o CSV).<br />Você pode optar por fazer o download do arquivo exportado. Caso contrário, eles serão exibidos nesta página."
524
+
525
+ #: wp-table-reloaded-admin.php:1204
526
+ msgid "Select Table to Export"
527
+ msgstr "Selecionar Tabela para Exportar"
528
+
529
+ #: wp-table-reloaded-admin.php:1219
530
+ msgid "Select Export Format"
531
+ msgstr "Selecionar Formato para Exportação"
532
+
533
+ #: wp-table-reloaded-admin.php:1229
534
+ msgid "Select Delimiter to use"
535
+ msgstr "Selecionar Delimitador para usar"
536
+
537
+ #: wp-table-reloaded-admin.php:1236
538
+ msgid "<small>(Only needed for CSV export.)</small>"
539
+ msgstr "<small>(Necessário somente para exportar pra CSV.)</small>"
540
+
541
+ #: wp-table-reloaded-admin.php:1239
542
+ msgid "Download file"
543
+ msgstr "Fazer Download do arquivo"
544
+
545
+ #: wp-table-reloaded-admin.php:1240
546
+ msgid "Yes, I want to download the export file."
547
+ msgstr "Sim, eu quero fazer o download do arquivo exportado."
548
+
549
+ #: wp-table-reloaded-admin.php:1265
550
+ msgid "General Plugin Options"
551
+ msgstr "Opções Gerais do Plugin"
552
+
553
+ #: wp-table-reloaded-admin.php:1269
554
+ msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
555
+ msgstr "Você pode mudar as opções globais.<br />Elas irão afetar todas as tabelas ou o funcionamento geral do plugin."
556
+
557
+ #: wp-table-reloaded-admin.php:1276
558
+ msgid "Frontend Options"
559
+ msgstr "Opções de Interface"
560
+
561
+ #: wp-table-reloaded-admin.php:1280
562
+ msgid "Enable Tablesorter-JavaScript?"
563
+ msgstr "Habilitar Tablesorter-JavaScript?"
564
+
565
+ #: wp-table-reloaded-admin.php:1281
566
+ msgid "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options)."
567
+ msgstr "Sim, habilitar o <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. Ele pode ser usado para deixar as tabelas \"organizáveis\" (pode ser ativado para cada tabela separadamente nas suas opções)."
568
+
569
+ #: wp-table-reloaded-admin.php:1284
570
+ msgid "Add custom CSS?"
571
+ msgstr "Adicionar CSS personalizado?"
572
+
573
+ #: wp-table-reloaded-admin.php:1286
574
+ msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag."
575
+ msgstr "Sim, inclua e carregue o seguinte código CS no meu site dentro de uma tag [style]-HTML-tag."
576
+
577
+ #: wp-table-reloaded-admin.php:1291
578
+ msgid "Enter custom CSS"
579
+ msgstr "Digitar CSS personalizado"
580
+
581
+ #: wp-table-reloaded-admin.php:1293
582
+ #, php-format
583
+ msgid "(You might get a better website performance, if you add the CSS styling to your theme's \"style.css\" <small>(located at %s)</small>) instead."
584
+ msgstr "(Você pode conseguir um ganho de performance se você inserir as personalizações do CSS diretamente no arquivo \"style.css\" <small>(localizado em %s)</small>)."
585
+
586
+ #: wp-table-reloaded-admin.php:1294
587
+ #, php-format
588
+ msgid "See the <a href=\"%s\">plugin website</a> for styling examples or use one of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
589
+ msgstr "Veja o <a href=\"%s\">site do plugin</a> para exemplos de estilo ou use um desses: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
590
+
591
+ #: wp-table-reloaded-admin.php:1294
592
+ msgid "Just copy the contents of a file into the textarea."
593
+ msgstr "Simplesmente copia o conteúdo de um arquivo pra dentro do textarea."
594
+
595
+ #: wp-table-reloaded-admin.php:1302
596
+ msgid "Admin Options"
597
+ msgstr "Opções de Administrador"
598
+
599
+ #: wp-table-reloaded-admin.php:1306
600
+ msgid "Uninstall Plugin upon Deactivation?"
601
+ msgstr "Desinstalar o Plugin após a Desativação?"
602
+
603
+ #: wp-table-reloaded-admin.php:1307
604
+ msgid "Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!"
605
+ msgstr "Sim, desinstalar tudo quando o plugin for desativado. Atenção: Você só deve marcar essa opção exatamente antes de desativar o plugin na página de Plugins do WordPress."
606
+
607
+ #: wp-table-reloaded-admin.php:1307
608
+ msgid "<small>(This setting does not influence the \"Manually Uninstall Plugin\" button below!)</small>"
609
+ msgstr "<small>(Esta opção não influencia a opção \"Desinstalar o Plugin Manualmente\" abaixo!)</small>"
610
+
611
+ #: wp-table-reloaded-admin.php:1317
612
+ msgid "Save Options"
613
+ msgstr "Salvar Opções"
614
+
615
+ #: wp-table-reloaded-admin.php:1323
616
+ msgid "Manually Uninstall Plugin"
617
+ msgstr "Desinstalar Plugin Manualmente"
618
+
619
+ #: wp-table-reloaded-admin.php:1325
620
+ 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!"
621
+ msgstr "Você pode desinstalar o plugin aqui. Isso <strong>vai excluir</strong> todas as tabelas, conteúdo, opções, etc., relacionadas ao plugin, incluindo todas as tabelas adicionadas ou importadas.<br />Seja muito cuidadoso com esta opção e somente clique no botão se souber o que está fazendo!"
622
+
623
+ #: wp-table-reloaded-admin.php:1328
624
+ msgid "Uninstall Plugin WP-Table Reloaded"
625
+ msgstr "Desinstalar o Plugin WP-Table Reloaded"
626
+
627
+ #: wp-table-reloaded-admin.php:1339
628
+ msgid "Information about the plugin"
629
+ msgstr "Informações sobre o plugin"
630
+
631
+ #: wp-table-reloaded-admin.php:1345
632
+ msgid "Plugin Purpose"
633
+ msgstr "Proposta do Plugin"
634
+
635
+ #: wp-table-reloaded-admin.php:1347
636
+ msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
637
+ msgstr "Este plugin permite à você criar e administrar tabelas na área de administrador do WordPress."
638
+
639
+ #: wp-table-reloaded-admin.php:1347
640
+ msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
641
+ msgstr "Estas tabelas podem conter texto, números e até HTML (por exemplo, incluir imagens ou links)."
642
+
643
+ #: wp-table-reloaded-admin.php:1347
644
+ msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
645
+ msgstr "Você pode, então, mostrar as tabelas nos seus artigos (posts), em suas páginas ou nos widgets de texto, usando o código gerado."
646
+
647
+ #: wp-table-reloaded-admin.php:1347
648
+ msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
649
+ msgstr "Se você quiser mostrar suas tabelas em qualquer outro lugar no seu tema, você pode usar uma \"template tag function\"."
650
+
651
+ #: wp-table-reloaded-admin.php:1352
652
+ msgid "Usage"
653
+ msgstr "Uso"
654
+
655
+ #: wp-table-reloaded-admin.php:1354
656
+ msgid "At first you should add or import a table."
657
+ msgstr "Primeiro você deve adicionar ou importar uma tabela."
658
+
659
+ #: wp-table-reloaded-admin.php:1354
660
+ msgid "This means that you either let the plugin create an empty table for you or that you load an existing table from either a CSV, XML or HTML file."
661
+ msgstr "Isso quer dizer que ou você deixa o plugin criar uma tabela vazia pra você, ou você deve importar uma tabela existente de um arquivo CSV, XML ou HTML."
662
+
663
+ #: wp-table-reloaded-admin.php:1354
664
+ msgid "Then you can edit your data or change the structure of your table (e.g. by inserting or deleting rows or columns, swaping rows or columns or sorting them) and select specific table options like alternating row colors or whether to print the name or description, if you want."
665
+ msgstr "Depois disso você poderá editar o conteúdo ou mudar a estrutura da tabela (por exemplo, inserindo ou excluindo linhas e colunas, trocando elas de lugar ou organizando toda essa informação) e também selecionar opções especificamente para cada tabela, alternando as cores das linhas ou escolhendo se deseja ou não mostrar o nome da tabela e sua descrição."
666
+
667
+ #: wp-table-reloaded-admin.php:1354
668
+ msgid "To easily add a link or an image to a cell, use the provided buttons. Those will ask you for the URL and a title. Then you can click into a cell and the corresponding HTML will be added to it for you."
669
+ msgstr "Para adicionar facilmente um link ou imagem em uma célula, uso o botão específico. Ele irá pedir um endereço URL e um título, então você poderá clicar numa célula e o HTML correspondente será incluído pra você."
670
+
671
+ #: wp-table-reloaded-admin.php:1354
672
+ msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them."
673
+ msgstr "Para incluir a tabela nos seus artigos (posts), páginas ou widgets de texto, escreva o código [table id=&lt;table-id&gt;] onde quiser que a tabela apareça."
674
+
675
+ #: wp-table-reloaded-admin.php:1354
676
+ msgid "You can also select the desired table from a list (after clicking the button \"Table\" in the editor toolbar) and the corresponding shortcode will be added for you."
677
+ msgstr "Você também pode selecionar a tabela desejada de uma lista (depois de clicar no botão \"Tabela\" na barra de ferramentas do editor) e o código correspondente será inserido pra você."
678
+
679
+ #: wp-table-reloaded-admin.php:1354
680
+ msgid "You may also style your table via CSS. Example files are provided on the plugin website. Every table has the CSS class \"wp-table-reloaded\". Each table also has the class \"wp-table-reloaded-&lt;table-id&gt;\"."
681
+ msgstr "Você também pode personalizar a aparência da sua tabela via CSS. Arquivos de exemplo estão disponíveis no site do plugin. Toda tabela possui a classe CSS \"wp-table-reloaded\". Cada tabela também possui a classe \"wp-table-reloaded-&lt;table-id&gt;\"."
682
+
683
+ #: wp-table-reloaded-admin.php:1354
684
+ msgid "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 for example."
685
+ msgstr "Você também pode usar as classes \"column-&lt;number&gt;\" e \"row-&lt;number&gt;\" para personalizar a aparência das linhas e colunas individualmente. Use-as para personalizar a largura das colunas e o alinhamento do texto, por exemplo."
686
+
687
+ #: wp-table-reloaded-admin.php:1359
688
+ msgid "More Information and Documentation"
689
+ msgstr "Mais Informações e Documentação"
690
+
691
+ #: wp-table-reloaded-admin.php:1361
692
+ msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
693
+ msgstr "Mais informações podem ser encontradas no <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">site do plugin</a> ou na sua página no <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">Diretório de Plugins do WordPress</a>."
694
+
695
+ #: wp-table-reloaded-admin.php:1361
696
+ #: wp-table-reloaded-admin.php:1456
697
+ msgid "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentation</a> or find out how to get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
698
+ msgstr "Veja a <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentação</a> ou descubra como conseguir <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">suporte</a> (em inglês)."
699
+
700
+ #: wp-table-reloaded-admin.php:1366
701
+ msgid "Author and Licence"
702
+ msgstr "Autor e Licensa"
703
+
704
+ #: wp-table-reloaded-admin.php:1368
705
+ 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."
706
+ msgstr "Este plugin foi escrito por <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. Ele está licenciado como Software Livre sob a GPL 2."
707
+
708
+ #: wp-table-reloaded-admin.php:1368
709
+ msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>a donation</strong></a> and rate the plugin in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
710
+ msgstr "Se você gostou desse plugin, por favor, considere <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>fazer uma doação</strong></a> e avalie o plugin no <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">Diretório de Plugins do WordPress</a>."
711
+
712
+ #: wp-table-reloaded-admin.php:1368
713
+ msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
714
+ msgstr "Doações e boas avaliações me dão ânimo para continuar desenvolvendo o plugin e oferecendo incontáveis horas de suporte. Qualquer quantia é muito bem-vinda! Obrigado!"
715
+
716
+ #: wp-table-reloaded-admin.php:1373
717
+ msgid "Credits and Thanks"
718
+ msgstr "Créditos e Agradecimentos"
719
+
720
+ #: wp-table-reloaded-admin.php:1376
721
+ msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
722
+ msgstr "Meu muito obrigado para o <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> pelo plugin original \"wp-Table plugin\","
723
+
724
+ #: wp-table-reloaded-admin.php:1377
725
+ msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
726
+ msgstr "Christian Bach pelo <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
727
+
728
+ #: wp-table-reloaded-admin.php:1378
729
+ msgid "the submitters of translations:"
730
+ msgstr "o pessoal que contriuiu com traduções:"
731
+
732
+ #: wp-table-reloaded-admin.php:1379
733
+ msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
734
+ msgstr "Albanian (obrigado <a href=\"http://www.romeolab.com/\">Romeo</a>)"
735
+
736
+ #: wp-table-reloaded-admin.php:1381
737
+ msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
738
+ msgstr "Czech (obrigado <a href=\"http://separatista.net/\">Separatista</a>)"
739
+
740
+ #: wp-table-reloaded-admin.php:1382
741
+ msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
742
+ msgstr "French (obrigado <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
743
+
744
+ #: wp-table-reloaded-admin.php:1383
745
+ msgid "Polish (thanks to Alex Kortan)"
746
+ msgstr "Polish (obrigado Alex Kortan)"
747
+
748
+ #: wp-table-reloaded-admin.php:1384
749
+ msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
750
+ msgstr "Russian (obrigado <a href=\"http://wp-skins.info/\">Truper</a>)"
751
+
752
+ #: wp-table-reloaded-admin.php:1385
753
+ msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
754
+ msgstr "Spanish (obrigado <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> e <a href=\"http://halles.cl/\">Matias Halles</a>)"
755
+
756
+ #: wp-table-reloaded-admin.php:1386
757
+ msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
758
+ msgstr "Swedish (obrigado <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
759
+
760
+ #: wp-table-reloaded-admin.php:1387
761
+ msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
762
+ msgstr "Turkish (obrigado <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
763
+
764
+ #: wp-table-reloaded-admin.php:1388
765
+ msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
766
+ msgstr "pra todos que doaram, contribuíram, ajudaram, apoiaram e também pra todos os usuários do plugin!"
767
+
768
+ #: wp-table-reloaded-admin.php:1394
769
+ msgid "Debug and Version Information"
770
+ msgstr "Informações de Versão e Debug"
771
+
772
+ #: wp-table-reloaded-admin.php:1397
773
+ msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
774
+ msgstr "Você está usando as seguintes versões deste software. <strong>Por favor, forneça esta informação na hora de reportar bugs.</strong>"
775
+
776
+ #: wp-table-reloaded-admin.php:1442
777
+ msgid "List Tables"
778
+ msgstr "Listar Tabelas"
779
+
780
+ #: wp-table-reloaded-admin.php:1447
781
+ msgid "Plugin Options"
782
+ msgstr "Opções do Plugin"
783
+
784
+ #: wp-table-reloaded-admin.php:1448
785
+ msgid "About the Plugin"
786
+ msgstr "Sobre o Plugin"
787
+
788
+ #: wp-table-reloaded-admin.php:1456
789
+ msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
790
+ msgstr "Mais informações podem ser encontradas no <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">site do plugin</a>."
791
+
792
+ #: wp-table-reloaded-admin.php:1682
793
+ msgid "Do you really want to activate this? You should only do that right before uninstallation!"
794
+ msgstr "Você deseja mesmo ativar isto? Você só deve fazer isso exatamente antes de desinstalar!"
795
+
796
+ #: wp-table-reloaded-admin.php:1683
797
+ msgid "URL of link to insert"
798
+ msgstr "URL do link para inserir"
799
+
800
+ #: wp-table-reloaded-admin.php:1684
801
+ msgid "Text of link"
802
+ msgstr "Texto do link"
803
+
804
+ #: wp-table-reloaded-admin.php:1685
805
+ msgid "To insert the following link into a cell, just click the cell after closing this dialog."
806
+ msgstr "Para inserir este link numa célula basta clicar nela após fechar esta janela."
807
+
808
+ #: wp-table-reloaded-admin.php:1686
809
+ msgid "URL of image to insert"
810
+ msgstr "URL da imagem para inserir"
811
+
812
+ #: wp-table-reloaded-admin.php:1687
813
+ msgid "''alt'' text of the image"
814
+ msgstr "texto alternativo \\"alt\\" da imagem"
815
+
816
+ #: wp-table-reloaded-admin.php:1688
817
+ msgid "To insert the following image into a cell, just click the cell after closing this dialog."
818
+ msgstr "Para inserir esta imagem numa célula basta clicar nela após fechar esta janela."
819
+
820
+ #: wp-table-reloaded-admin.php:1689
821
+ msgid "Do you want to copy the selected tables?"
822
+ msgstr "Você deseja copiar as tabelas selecionadas?"
823
+
824
+ #: wp-table-reloaded-admin.php:1690
825
+ msgid "The selected tables and all content will be erased. Do you really want to delete them?"
826
+ msgstr "As tabelas selecionadas, e todo o seu conteúdo, serão excluídas. Você deseja mesmo excluí-las?"
827
+
828
+ #: wp-table-reloaded-admin.php:1691
829
+ msgid "Do you really want to import the selected tables from the wp-Table plugin?"
830
+ msgstr "Você deseja mesmo importar as tabelas selecionadas do plugin wp-Table?"
831
+
832
+ #: wp-table-reloaded-admin.php:1692
833
+ msgid "Do you want to copy this table?"
834
+ msgstr "Você deseja copiar esta tabela?"
835
+
836
+ #: wp-table-reloaded-admin.php:1693
837
+ msgid "The complete table and all content will be erased. Do you really want to delete it?"
838
+ msgstr "Todas as tabelas e seu conteúdo serão excluídos. Você deseja mesmo excluí-las?"
839
+
840
+ #: wp-table-reloaded-admin.php:1694
841
+ msgid "Do you really want to delete this row?"
842
+ msgstr "Você deseja mesmo excluir esta linha?"
843
+
844
+ #: wp-table-reloaded-admin.php:1695
845
+ msgid "Do you really want to delete this column?"
846
+ msgstr "Você deseja mesmo excluir esta coluna?"
847
+
848
+ #: wp-table-reloaded-admin.php:1696
849
+ msgid "Do you really want to import this table from the wp-Table plugin?"
850
+ msgstr "Você deseja mesmo importar esta tabela do plugin wp-Table?"
851
+
852
+ #: wp-table-reloaded-admin.php:1697
853
+ msgid "Do you really want to uninstall the plugin and delete ALL data?"
854
+ msgstr "Você deseja mesmo desinstalar o plugin e excluir todo o conteúdo?"
855
+
856
+ #: wp-table-reloaded-admin.php:1698
857
+ msgid "Are you really sure?"
858
+ msgstr "Tem certeza?"
859
+
860
+ #: wp-table-reloaded-admin.php:1748
861
+ msgid "Table"
862
+ msgstr "Tabela"
863
+
864
+ #: wp-table-reloaded-admin.php:180
865
+ #, php-format
866
+ msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
867
+ msgstr "Tabela editada com sucesso. Essa tabela agora tem o ID %s. Você precisará ajustar manualmente os códigos já existentes."
868
+
869
+ #: wp-table-reloaded-admin.php:182
870
+ #, php-format
871
+ msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
872
+ msgstr "O ID não pode ser alterado de %s para %s porque já existe uma Tabela com esse ID."
873
+
874
+ #: wp-table-reloaded-admin.php:258
875
+ msgid "Row added successfully."
876
+ msgid_plural "Rows added successfully."
877
+ msgstr[0] "Linha adicionada com sucesso."
878
+ msgstr[1] "Linhas adicionadas com sucesso."
879
+
880
+ #: wp-table-reloaded-admin.php:270
881
+ msgid "Column added successfully."
882
+ msgid_plural "Columns added successfully."
883
+ msgstr[0] "Coluna adicionada com sucesso."
884
+ msgstr[1] "Colunas adicionadasc om sucesso."
885
+
886
+ #: wp-table-reloaded-admin.php:467
887
+ #: wp-table-reloaded-admin.php:486
888
+ #, php-format
889
+ msgid "from %s"
890
+ msgstr "de %s"
891
+
892
+ #: wp-table-reloaded-admin.php:507
893
+ #, php-format
894
+ msgid "Table %s (%s) replaced successfully."
895
+ msgstr "Tabela %s (%s) substituída com sucesso."
896
+
897
+ #: wp-table-reloaded-admin.php:822
898
+ msgid "Table ID"
899
+ msgstr "ID da Tabela"
900
+
901
+ #: wp-table-reloaded-admin.php:901
902
+ #, php-format
903
+ msgid "Add %s row(s)"
904
+ msgstr "Adiciona %s linha(s)"
905
+
906
+ #: wp-table-reloaded-admin.php:902
907
+ #: wp-table-reloaded-admin.php:904
908
+ msgid "Add"
909
+ msgstr "Adicionar"
910
+
911
+ #: wp-table-reloaded-admin.php:903
912
+ #, php-format
913
+ msgid "Add %s column(s)"
914
+ msgstr "Adicionar %s coluna(s)"
915
+
916
+ #: wp-table-reloaded-admin.php:1056
917
+ msgid "Add or Replace Table?"
918
+ msgstr "Adicionar ou Substituir Tabela?"
919
+
920
+ #: wp-table-reloaded-admin.php:1058
921
+ msgid "Add as new Table"
922
+ msgstr "Adicionar como uma nova Tabela"
923
+
924
+ #: wp-table-reloaded-admin.php:1059
925
+ msgid "Replace existing Table"
926
+ msgstr "Substituir Tabela existente"
927
+
928
+ #: wp-table-reloaded-admin.php:1063
929
+ msgid "Select existing Table to Replace"
930
+ msgstr "Selecionar Tabela para Substituir"
931
+
932
+ #: wp-table-reloaded-admin.php:1078
933
+ msgid "Select source for import"
934
+ msgstr "Selecionar fonte para importação"
935
+
936
+ #: wp-table-reloaded-admin.php:1080
937
+ msgid "File upload"
938
+ msgstr "Upload de arquivo"
939
+
940
+ #: wp-table-reloaded-admin.php:1082
941
+ msgid "URL"
942
+ msgstr "URL"
943
+
944
+ #: wp-table-reloaded-admin.php:1084
945
+ msgid "Manual input"
946
+ msgstr "Inserção manual"
947
+
948
+ #: wp-table-reloaded-admin.php:1085
949
+ msgid "File on server"
950
+ msgstr "Arquivo no servidor"
951
+
952
+ #: wp-table-reloaded-admin.php:1094
953
+ msgid "URL to import table from"
954
+ msgstr "URL para importar Tabela"
955
+
956
+ #: wp-table-reloaded-admin.php:1099
957
+ msgid "Path to file on server"
958
+ msgstr "Caminho para o arquivo no servidor"
959
+
960
+ #: wp-table-reloaded-admin.php:1380
961
+ msgid "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/\">Rics</a>)"
962
+ msgstr "Brazilian Portugues (obrigado para <a href=\"http://www.pensarics.com/\">Rics</a>)"
963
+
964
+ #: wp-table-reloaded-admin.php:1699
965
+ msgid "Do you really want to change the ID of the table?"
966
+ msgstr "Você realmente deseja mudar o ID desta tabela?"
967
+
languages/wp-table-reloaded-sv_SE.mo CHANGED
Binary file
languages/wp-table-reloaded-sv_SE.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Table Reloaded (sv_SE)\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-05-06 12:10+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"
@@ -17,806 +17,889 @@ msgstr ""
17
  "X-Poedit-SourceCharset: utf-8\n"
18
  "X-Poedit-SearchPath-0: D:\\Hemsida\\ZuperZed.se\\wp-content\\plugins\\wp-table-reloaded\n"
19
 
20
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:150
21
  #, php-format
22
  msgid "Table \"%s\" added successfully."
23
  msgstr "Tabellen \"%s\" tillagd framgångsrikt."
24
 
25
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:173
 
 
 
 
 
 
 
 
 
 
26
  msgid "Table edited successfully."
27
  msgstr "Tabell redigerad framgångsrikt."
28
 
29
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:189
30
  msgid "Rows swapped successfully."
31
  msgstr "Rader bytte plats framgångsrikt."
32
 
33
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:208
34
  msgid "Columns swapped successfully."
35
  msgstr "Kolumner bytte plats framgångsrikt."
36
 
37
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:226
38
  msgid "Table sorted successfully."
39
  msgstr "Tabellsortering lyckades."
40
 
41
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:261
42
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:310
43
  msgid "Copy of"
44
  msgstr "Kopia av"
45
 
46
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:293
47
  msgid "You did not select any tables!"
48
  msgstr "Du har inte valt några tabeller!"
49
 
50
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:315
51
  #, php-format
52
  msgid "Table \"%s\" copied successfully."
53
  msgstr "Tabellen \"%s\" kopierades framgångsrikt."
54
 
55
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:334
56
  #, php-format
57
  msgid "Table \"%s\" deleted successfully."
58
  msgstr "Tabellen \"%s\" raderades framgångsrikt."
59
 
60
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:344
61
  msgid "Row deleted successfully."
62
  msgstr "Rad raderades framgångsrikt."
63
 
64
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:357
65
  msgid "Column deleted successfully."
66
  msgstr "Kolumn raderades framgångsrikt."
67
 
68
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:362
69
  msgid "Delete failed."
70
  msgstr "Radering misslyckades."
71
 
72
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:386
73
  msgid "Row inserted successfully."
74
  msgstr "Infoga rad lyckades."
75
 
76
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:395
77
  msgid "Column inserted successfully."
78
  msgstr "Infoga kolumn lyckades."
79
 
80
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:398
81
  msgid "Insert failed."
82
  msgstr "Infogning misslyckades."
83
 
84
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:425
 
 
85
  msgid "Imported Table"
86
  msgstr "Importerad Tabell"
87
 
88
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:426
 
 
 
 
 
 
89
  msgid "via form"
90
  msgstr "via formulär"
91
 
92
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:442
93
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:463
94
- msgid "Table imported successfully."
95
- msgstr "Tabellimport lyckades."
96
-
97
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:445
98
  msgid "Table could not be imported."
99
  msgstr "Tabellen kunde inte importeras."
100
 
101
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:489
 
 
 
 
 
 
 
 
 
 
102
  #, php-format
103
  msgid "Table \"%s\" exported successfully."
104
  msgstr "Tabellen \"%s\" exporterades framgångsrikt."
105
 
106
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:517
107
  msgid "Options saved successfully."
108
  msgstr "Inställningar sparades framgångsrikt."
109
 
110
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:535
111
  msgid "WP-Table Reloaded"
112
  msgstr "WP-Table Reloaded"
113
 
114
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:536
115
  msgid "Plugin deactivated successfully."
116
  msgstr "Tillägget inaktiverades framgångsrikt."
117
 
118
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:537
119
  msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
120
  msgstr "Alla tabeller, data och inställningar raderades. Du kan nu ta bort tilläggets undermapp från din Wordpress pluginmapp."
121
 
122
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:553
123
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:613
124
  msgid "List of Tables"
125
  msgstr "Tabellista"
126
 
127
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:555
128
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:616
129
  msgid "This is a list of all available tables."
130
  msgstr "Detta är en lista över alla tillgängliga tabeller."
131
 
132
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:555
133
  msgid "You may insert a table into a post or page here."
134
  msgstr "Du kan infoga en tabell i ett inlägg eller en sida här."
135
 
136
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:556
137
  msgid "Click the \"Insert\" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=&lt;the_table_ID&gt; /]</strong>)."
138
  msgstr "Klicka på \"Infoga\"länken efter önskad tabell och motsvarande snabbkod kommer att infogas i editorn (<strong>[table id=&lt;the_table_ID&gt; /]</strong>)."
139
 
140
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:564
141
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:628
142
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1008
143
  msgid "ID"
144
  msgstr "ID"
145
 
146
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:565
147
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:629
148
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:697
149
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:746
150
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1009
151
  msgid "Table Name"
152
  msgstr "Tabellnamn"
153
 
154
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:566
155
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:630
156
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:701
157
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:750
158
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1010
159
  msgid "Description"
160
  msgstr "Beskrivning"
161
 
162
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:567
163
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:631
164
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1011
165
  msgid "Action"
166
  msgstr "Åtgärd"
167
 
168
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:587
169
  msgid "Insert"
170
  msgstr "Infoga"
171
 
172
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:596
173
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:677
174
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1129
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:616
179
  msgid "You may add, edit, copy or delete tables here."
180
  msgstr "Du kan lägga till, redigera, kopiera eller radera tabeller här."
181
 
182
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:617
183
  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> or click the button \"Table\" in the editor toolbar."
184
  msgstr "Om du vill visa en tabell i dina sidor, inlägg eller textwidgets, använd snabbkoden <strong>[table id=&lt;the_table_ID&gt; /]</strong> eller klicka på knappen \"Tabell\" i verktygsfältet i editorn."
185
 
186
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:657
187
  msgid "Edit"
188
  msgstr "Redigera"
189
 
190
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:658
191
  msgid "Copy"
192
  msgstr "Kopiera"
193
 
194
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:659
195
  msgid "Export"
196
  msgstr "Exportera"
197
 
198
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:660
199
  msgid "Delete"
200
  msgstr "Radera"
201
 
202
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:668
203
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1040
204
  msgid "Bulk actions:"
205
  msgstr "Bulkåtgärder:"
206
 
207
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:668
208
  msgid "Copy Tables"
209
  msgstr "Kopiera tabeller"
210
 
211
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:668
212
  msgid "Delete Tables"
213
  msgstr "Radera tabeller"
214
 
215
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:677
216
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1129
217
  #, php-format
218
  msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
219
  msgstr "Du kan <a href=\"%s\">lägga till</a> eller <a href=\"%s\">importera</a> en!"
220
 
221
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:685
222
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1312
223
  msgid "Add new Table"
224
  msgstr "Lägg till tabell"
225
 
226
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:689
227
  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."
228
  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."
229
 
230
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:698
231
  msgid "Enter Table Name"
232
  msgstr "Ange tabellnamn"
233
 
234
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:702
235
  msgid "Enter Description"
236
  msgstr "Ange beskrivning"
237
 
238
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:705
239
  msgid "Number of Rows"
240
  msgstr "Antal rader"
241
 
242
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:709
243
  msgid "Number of Columns"
244
  msgstr "Antal kolumner"
245
 
246
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:716
247
  msgid "Add Table"
248
  msgstr "Lägg till tabell"
249
 
250
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:733
251
  #, php-format
252
  msgid "Edit Table \"%s\""
253
  msgstr "Redigera tabellen \"%s\""
254
 
255
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:736
256
  msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
257
  msgstr "Du kan redigera tabellens innehåll här. Det är även möjligt att lägga till eller radera kolumner och rader."
258
 
259
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:737
260
  #, php-format
261
  msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
262
  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>"
263
 
264
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:742
265
  msgid "Table Information"
266
  msgstr "Tabellinformation"
267
 
268
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:758
269
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:926
 
 
 
 
270
  msgid "Update Changes"
271
  msgstr "Spara ändringar"
272
 
273
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:759
274
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:927
275
  msgid "Save and go back"
276
  msgstr "Spara och gå tillbaka"
277
 
278
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:762
279
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:930
280
  msgid "Cancel"
281
  msgstr "Ångra"
282
 
283
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:768
284
  msgid "Table Contents"
285
  msgstr "Tabellinnehåll"
286
 
287
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:768
288
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:824
289
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:895
290
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1265
291
  msgid "Hide"
292
  msgstr "Dölj"
293
 
294
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:768
295
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:824
296
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:895
297
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1265
298
  msgid "Expand"
299
  msgstr "Expandera"
300
 
301
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:796
302
  msgid "Insert Row"
303
  msgstr "Infoga rad"
304
 
305
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:798
306
  msgid "Delete Row"
307
  msgstr "Radera rad"
308
 
309
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:808
310
  msgid "Insert Column"
311
  msgstr "Infoga kolumn"
312
 
313
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:810
314
  msgid "Delete Column"
315
  msgstr "Radera kolumn"
316
 
317
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:815
318
- msgid "Add Row"
319
- msgstr "Lägg till rad"
 
 
 
 
 
 
320
 
321
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:815
322
- msgid "Add Column"
323
- msgstr "Lägg till kolumn"
 
324
 
325
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:824
326
  msgid "Data Manipulation"
327
  msgstr "Datahantering"
328
 
329
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:839
330
  #, php-format
331
  msgid "Swap rows %s and %s"
332
  msgstr "Byt plats på rader %s och %s"
333
 
334
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:842
335
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:862
336
  msgid "Swap"
337
  msgstr "Byt plats"
338
 
339
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:859
340
  #, php-format
341
  msgid "Swap columns %s and %s"
342
  msgstr "Byt plats på kolumner %s och %s"
343
 
344
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:866
345
  msgid "Insert Link"
346
  msgstr "Infoga Länk"
347
 
348
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:866
349
  msgid "Insert Image"
350
  msgstr "Infoga Bild"
351
 
352
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:878
353
  msgid "ascending"
354
  msgstr "stigande"
355
 
356
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:879
357
  msgid "descending"
358
  msgstr "fallande"
359
 
360
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:882
361
  #, php-format
362
  msgid "Sort table by column %s in %s order"
363
  msgstr "Sortera tabell efter kolumn %s i %s ordningsföljd"
364
 
365
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:885
366
  msgid "Sort"
367
  msgstr "Sortera"
368
 
369
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:895
370
  msgid "Table Settings"
371
  msgstr "Tabellinställningar"
372
 
373
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:897
374
  msgid "These settings will only be used for this table."
375
  msgstr "Dessa inställningar kommer endast användas för denna tabell."
376
 
377
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:900
378
  msgid "Alternating row colors"
379
  msgstr "Växlande radfärg"
380
 
381
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:901
382
  msgid "Every second row will have an alternating background color."
383
  msgstr "Varannan rad kommer att ha en alternativ bakgrundsfärg."
384
 
385
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:904
386
  msgid "Use Table Headline"
387
  msgstr "Använd tabellrubrik"
388
 
389
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:905
390
  msgid "The first row of your table will use the [th] tag."
391
  msgstr "Första raden i din tabell kommer använda etiketten [th]."
392
 
393
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:908
394
  msgid "Print Table Name"
395
  msgstr "Visa tabellnamn"
396
 
397
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:909
398
  msgid "The Table Name will be written above the table in a [h2] tag."
399
  msgstr "Tabellens namn kommer att visas ovanför tabellen med etiketten [h2]."
400
 
401
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:912
402
  msgid "Print Table Description"
403
  msgstr "Visa tabellbeskrivning"
404
 
405
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:913
406
  msgid "The Table Description will be written under the table."
407
  msgstr "Tabellens beskrivning kommer att visas under tabellen."
408
 
409
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:916
410
  msgid "Use Tablesorter"
411
  msgstr "Använd Tablesorter"
412
 
413
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:917
414
  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>"
415
  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>"
416
 
417
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:932
418
  msgid "Other actions"
419
  msgstr "Andra åtgärder"
420
 
421
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:935
422
  msgid "Delete Table"
423
  msgstr "Radera tabell"
424
 
425
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:936
426
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1118
427
  msgid "Export Table"
428
  msgstr "Exportera tabell"
429
 
430
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:947
431
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1313
432
  msgid "Import a Table"
433
  msgstr "Importera tabell"
434
 
435
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:951
436
  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."
437
  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."
438
 
439
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:958
440
  msgid "Select Import Format"
441
  msgstr "Välj importformat"
442
 
443
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:968
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
444
  msgid "Select File with Table to Import"
445
  msgstr "Välj tabellfil som ska importeras"
446
 
447
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:972
448
- msgid "- or -"
449
- msgstr "- eller -"
450
 
451
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:973
452
- msgid "(upload will be preferred over pasting)"
453
- msgstr "(ladda upp föredras framför klistra in)"
454
 
455
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:976
456
  msgid "Paste data with Table to Import"
457
  msgstr "Klistra in data med tabell som ska importeras"
458
 
459
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:982
460
  msgid "Import Table"
461
  msgstr "Importera tabell"
462
 
463
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:995
464
  msgid "Import from original wp-Table plugin"
465
  msgstr "Importera från originalet wp-Table"
466
 
467
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1032
468
  msgid "Import"
469
  msgstr "Importera"
470
 
471
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1040
472
  msgid "Import Tables"
473
  msgstr "Importera tabeller"
474
 
475
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1046
476
  msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
477
  msgstr "wp-Table av Alex Rabe verkar vara installerat men inga tabeller kunde hittas."
478
 
479
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1065
480
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1314
481
  msgid "Export a Table"
482
  msgstr "Exportera tabell"
483
 
484
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1069
485
  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."
486
  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."
487
 
488
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1077
489
  msgid "Select Table to Export"
490
  msgstr "Välj tabell som ska exporteras"
491
 
492
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1092
493
  msgid "Select Export Format"
494
  msgstr "Välj exportformat"
495
 
496
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1102
497
  msgid "Select Delimiter to use"
498
  msgstr "Välj avgränsare"
499
 
500
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1109
501
  msgid "<small>(Only needed for CSV export.)</small>"
502
  msgstr "<small>(Behövs endast för CSV export.)</small>"
503
 
504
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1112
505
  msgid "Download file"
506
  msgstr "Ladda ner"
507
 
508
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1113
509
  msgid "Yes, I want to download the export file."
510
  msgstr "Ja, jag vill ladda ner exportfilen."
511
 
512
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1138
513
  msgid "General Plugin Options"
514
  msgstr "Allmänna inställningar"
515
 
516
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1142
517
  msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
518
  msgstr "Detta är globala inställningar.<br/>De kommer påverka alla tabeller eller tilläggets generella beteende."
519
 
520
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1149
521
  msgid "Frontend Options"
522
  msgstr "Gränssnittsalternativ"
523
 
524
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1153
525
  msgid "Enable Tablesorter-JavaScript?"
526
  msgstr "Aktivera Tablesorter-JavaScript?"
527
 
528
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1154
529
  msgid "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options)."
530
  msgstr "Ja, aktivera <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. Detta kan användas för att göra tabellerna sorterbara (kan aktiveras separat för varje tabell i dess inställningar)."
531
 
532
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1157
533
  msgid "Add custom CSS?"
534
  msgstr "Lägg till anpassad CSS?"
535
 
536
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1159
537
  msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag."
538
  msgstr "Ja, inkludera och ladda följande CSS-sträng på min sida inuti en [style]-HTML-tag."
539
 
540
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1164
541
  msgid "Enter custom CSS"
542
  msgstr "Ange anpassad CSS"
543
 
544
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1166
545
  #, php-format
546
  msgid "(You might get a better website performance, if you add the CSS styling to your theme's \"style.css\" <small>(located at %s)</small>) instead."
547
  msgstr "(Hemsidans prestanda kan förbättras om du lägger till CSS-stilen i temats \"style.css\" istället. <small>(finns i %s)</small>)"
548
 
549
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1167
550
  #, php-format
551
  msgid "See the <a href=\"%s\">plugin website</a> for styling examples or use one of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
552
  msgstr "Se <a href=\"%s\">tilläggets hemsida</a> för stylingexempel eller använd ett av följande: <a href=\"%s\">Exempelstil 1</a> <a href=\"%s\">Exempelstil 2</a>"
553
 
554
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1167
555
  msgid "Just copy the contents of a file into the textarea."
556
  msgstr "Kopiera filens innehåll och klistra in i textarean."
557
 
558
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1175
559
  msgid "Admin Options"
560
  msgstr "Adminalternativ"
561
 
562
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1179
563
  msgid "Uninstall Plugin upon Deactivation?"
564
  msgstr "Avinstallera tillägget vid inaktivering?"
565
 
566
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1180
567
  msgid "Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!"
568
  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!"
569
 
570
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1180
571
  msgid "<small>(This setting does not influence the \"Manually Uninstall Plugin\" button below!)</small>"
572
  msgstr "<small>(Denna inställning påverkar inte knappen \"Avinstallera tillägget manuellt\" nedan!)</small>"
573
 
574
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1190
575
  msgid "Save Options"
576
  msgstr "Spara"
577
 
578
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1196
579
  msgid "Manually Uninstall Plugin"
580
  msgstr "Avinstallera tillägget manuellt"
581
 
582
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1198
583
  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!"
584
  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!"
585
 
586
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1201
587
  msgid "Uninstall Plugin WP-Table Reloaded"
588
  msgstr "Avinstallera WP-Table Reloaded"
589
 
590
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1212
591
  msgid "Information about the plugin"
592
  msgstr "Information om tillägget"
593
 
594
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1218
595
  msgid "Plugin Purpose"
596
  msgstr "Tilläggets ändamål"
597
 
598
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1220
599
  msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
600
  msgstr "Med detta tillägg kan du skapa och hantera tabeller i adminpanelen i WordPress."
601
 
602
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1220
603
  msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
604
  msgstr "Dessa tabeller kan innehålla strängar, tal och även HTML (t.ex. för att inkludera bilder eller länkar)."
605
 
606
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1220
607
  msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
608
  msgstr "Du kan sedan visa dem i dina inlägg, på dina sidor eller i textwidgets genom att använda en snabbkod."
609
 
610
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1220
611
  msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
612
  msgstr "Om du vill visa dina tabeller någon annanstans i ditt tema kan du använda template tag funktionen."
613
 
614
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1225
615
  msgid "Usage"
616
  msgstr "Användning"
617
 
618
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1227
619
  msgid "At first you should add or import a table."
620
  msgstr "Du bör först lägga till eller importera en tabell."
621
 
622
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1227
623
  msgid "This means that you either let the plugin create an empty table for you or that you load an existing table from either a CSV, XML or HTML file."
624
  msgstr "Detta betyder att du antingen låter tillägget skapa en tom tabell åt dig eller att du laddar en existerande tabell från en CSV-, XML- eller HTML-fil."
625
 
626
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1227
627
  msgid "Then you can edit your data or change the structure of your table (e.g. by inserting or deleting rows or columns, swaping rows or columns or sorting them) and select specific table options like alternating row colors or whether to print the name or description, if you want."
628
  msgstr "Sedan kan du redigera din data eller ändra tabellens struktur (t.ex. genom att infoga eller radera rader och kolumner, byta plats på rader och kolumner eller sortera dem) och välja specifika tabellinställningar så som växlande radfärger eller att visa namn eller beskrivning, om du vill."
629
 
630
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1227
631
  msgid "To easily add a link or an image to a cell, use the provided buttons. Those will ask you for the URL and a title. Then you can click into a cell and the corresponding HTML will be added to it for you."
632
  msgstr "För att enkelt lägga till en länk eller en bild i en cell, använd tillhandahållna knappar. Du kommer tillfrågas om URL och en titel. Sedan kan du klicka i en cell och motsvarande HTML kommer att läggas till åt dig."
633
 
634
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1227
635
  msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them."
636
  msgstr "För att inkludera tabellen i dina inlägg, sidor eller textwidgets, skriv snabbkoden [table id=&lt;table-id&gt;] i dem."
637
 
638
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1227
639
  msgid "You can also select the desired table from a list (after clicking the button \"Table\" in the editor toolbar) and the corresponding shortcode will be added for you."
640
  msgstr "Du kan även välja önskad tabell från en lista (klicka på knappen \"Tabell\" i verktygsfältet i editorn) och motsvarande snabbkod kommer läggas till åt dig."
641
 
642
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1227
643
  msgid "You may also style your table via CSS. Example files are provided on the plugin website. Every table has the CSS class \"wp-table-reloaded\". Each table also has the class \"wp-table-reloaded-&lt;table-id&gt;\"."
644
  msgstr "Du kan även styla din tabell med hjälp av CSS. Exempelfiler finns på tilläggets hemsida. Varje tabell har CSS-class \"wp-table-reloaded\". Varje tabell har även class \"wp-table-reloaded-&lt;table-id&gt;\"."
645
 
646
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1227
647
  msgid "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 for example."
648
  msgstr "Du kan även använda class \"column-&lt;number&gt;\" och \"row-&lt;number&gt;\" för att ställa in individuell stil för rader och kolumner. Använd detta för att exempelvis ställa in kolumnbredd och textjustering."
649
 
650
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1232
651
  msgid "More Information and Documentation"
652
  msgstr "Mer Information och Dokumentation"
653
 
654
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1234
655
  msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
656
  msgstr "Mer information hittar du på <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">tilläggets hemsida</a> eller på dess sida i <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
657
 
658
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1234
659
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1325
660
  msgid "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentation</a> or find out how to get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
661
  msgstr "Se <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">dokumentation</a> eller ta reda på hur du får <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
662
 
663
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1239
664
  msgid "Author and Licence"
665
  msgstr "Författare och Licens"
666
 
667
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1241
668
  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."
669
  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."
670
 
671
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1241
672
  msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>a donation</strong></a> and rate the plugin in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
673
  msgstr "Om du gillar detta tillägg, var vänlig överväg <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">en donation</a> och betygsätt tillägget på <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
674
 
675
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1241
676
  msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
677
  msgstr "Donationer och bra betyg uppmuntrar mig att vidare utveckla tillägget och tillhandahålla oräkneliga timmar support. Valfritt belopp är uppskattat! Tack!"
678
 
679
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1246
680
  msgid "Credits and Thanks"
681
  msgstr "Medverkande och Tack"
682
 
683
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1249
684
  msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
685
  msgstr "Tack till <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> skaparen av originaltillägget wp-Table,"
686
 
687
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1250
688
  msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
689
  msgstr "Christian Bach för <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
690
 
691
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1251
692
  msgid "the submitters of translations:"
693
  msgstr "inskickade översättningar:"
694
 
695
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1252
696
  msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
697
  msgstr "Albanska (tack till <a href=\"http://www.romeolab.com/\">Romeo</a>)"
698
 
699
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1253
700
- msgid "Czech (thanks to <a href=\"http://separatista.net/\">Pavel</a>)"
701
- msgstr "Tjeckiska (tack till <a href=\"http://separatista.net/\">Pavel</a>)"
 
 
 
 
702
 
703
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1254
704
  msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
705
  msgstr "Franska (tack till <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
706
 
707
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1255
 
 
 
 
708
  msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
709
  msgstr "Ryska (tack till <a href=\"http://wp-skins.info/\">Truper</a>)"
710
 
711
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1256
712
  msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
713
  msgstr "Spanska (tack till <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> och <a href=\"http://halles.cl/\">Matias Halles</a>)"
714
 
715
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1257
716
  msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
717
  msgstr "Svenska (tack till <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
718
 
719
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1258
720
  msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
721
  msgstr "Turkiska (tack till <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
722
 
723
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1259
724
  msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
725
  msgstr "och alla donatorer, bidragsgivare, anhängare, recensenter och användare av tillägget!"
726
 
727
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1265
728
  msgid "Debug and Version Information"
729
  msgstr "Debug- och Versionsinformation"
730
 
731
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1268
732
  msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
733
  msgstr "Du använder följande version av programvaran. <strong>Var vänlig ange denna information i felrapporter.</strong>"
734
 
735
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1311
736
  msgid "List Tables"
737
  msgstr "Visa tabeller"
738
 
739
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1316
740
  msgid "Plugin Options"
741
  msgstr "Inställningar"
742
 
743
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1317
744
  msgid "About the Plugin"
745
  msgstr "Om tillägget"
746
 
747
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1325
748
  msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
749
  msgstr "Mer information kan hittas på <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">tilläggets hemsida</a>."
750
 
751
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1533
752
  msgid "Do you really want to activate this? You should only do that right before uninstallation!"
753
  msgstr "Vill du verkligen aktivera det här? Du bör endast göra detta precis innan avinstallation!"
754
 
755
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1534
756
  msgid "URL of link to insert"
757
  msgstr "URL till länken som ska infogas"
758
 
759
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1535
760
  msgid "Text of link"
761
  msgstr "Länkens text"
762
 
763
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1536
764
  msgid "To insert the following link into a cell, just click the cell after closing this dialog."
765
  msgstr "För att infoga följande länk i en cell, klicka bara på cellen efter att denna ruta har stängts."
766
 
767
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1537
768
  msgid "URL of image to insert"
769
  msgstr "URL till bilden som ska infogas"
770
 
771
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1538
772
  msgid "''alt'' text of the image"
773
  msgstr "''alt'' bildens text"
774
 
775
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1539
776
  msgid "To insert the following image into a cell, just click the cell after closing this dialog."
777
  msgstr "För att infoga foljande bild i en cell, klicka bara på cellen efter att denna ruta har stängts."
778
 
779
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1540
780
  msgid "Do you want to copy the selected tables?"
781
  msgstr "Vill du kopiera valda tabeller?"
782
 
783
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1541
784
  msgid "The selected tables and all content will be erased. Do you really want to delete them?"
785
  msgstr "Valda tabeller och allt inehåll kommer raderas. Vill du verkligen radera dem?"
786
 
787
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1542
788
  msgid "Do you really want to import the selected tables from the wp-Table plugin?"
789
  msgstr "Vill du verkligen importera valda tabeller från wp-Table tillägget?"
790
 
791
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1543
792
  msgid "Do you want to copy this table?"
793
  msgstr "Vill du kopiera denna tabell?"
794
 
795
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1544
796
  msgid "The complete table and all content will be erased. Do you really want to delete it?"
797
  msgstr "Tabellen och dess inehåll kommer raderas. Vill du verkligen radera den?"
798
 
799
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1545
800
  msgid "Do you really want to delete this row?"
801
  msgstr "Vill du verkligen radera denna rad?"
802
 
803
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1546
804
  msgid "Do you really want to delete this column?"
805
  msgstr "Vill du verkligen radera denna kolumn?"
806
 
807
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1547
808
  msgid "Do you really want to import this table from the wp-Table plugin?"
809
  msgstr "Vill du verkligen importera denna tabell från wp-Table tillägget?"
810
 
811
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1548
812
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
813
  msgstr "Vill du verkligen avinstallera tillägget och radera ALL data?"
814
 
815
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1549
816
  msgid "Are you really sure?"
817
  msgstr "Är du riktigt säker?"
818
 
819
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1600
 
 
 
 
820
  msgid "Table"
821
  msgstr "Tabell"
822
 
@@ -855,6 +938,10 @@ msgstr ". (punkt)"
855
  msgid "| (pipe)"
856
  msgstr "| (pipe)"
857
 
 
 
 
 
858
  #~ msgid "Used Delimiter"
859
  #~ msgstr "Välj avgränsare"
860
  #~ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Table Reloaded (sv_SE)\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-06-09 13:23+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"
17
  "X-Poedit-SourceCharset: utf-8\n"
18
  "X-Poedit-SearchPath-0: D:\\Hemsida\\ZuperZed.se\\wp-content\\plugins\\wp-table-reloaded\n"
19
 
20
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:152
21
  #, php-format
22
  msgid "Table \"%s\" added successfully."
23
  msgstr "Tabellen \"%s\" tillagd framgångsrikt."
24
 
25
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:180
26
+ #, php-format
27
+ msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
28
+ msgstr "Tabell redigerad framgångsrikt. Denna tabell har nu ID %s. Du måste justera existerande snabbkod därefter."
29
+
30
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:182
31
+ #, php-format
32
+ msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
33
+ msgstr "ID kunde inte ändras från %s till %s eftersom det redan finns en tabell med samma ID."
34
+
35
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:185
36
  msgid "Table edited successfully."
37
  msgstr "Tabell redigerad framgångsrikt."
38
 
39
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:208
40
  msgid "Rows swapped successfully."
41
  msgstr "Rader bytte plats framgångsrikt."
42
 
43
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:227
44
  msgid "Columns swapped successfully."
45
  msgstr "Kolumner bytte plats framgångsrikt."
46
 
47
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:245
48
  msgid "Table sorted successfully."
49
  msgstr "Tabellsortering lyckades."
50
 
51
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:305
52
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:352
53
  msgid "Copy of"
54
  msgstr "Kopia av"
55
 
56
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:335
57
  msgid "You did not select any tables!"
58
  msgstr "Du har inte valt några tabeller!"
59
 
60
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:357
61
  #, php-format
62
  msgid "Table \"%s\" copied successfully."
63
  msgstr "Tabellen \"%s\" kopierades framgångsrikt."
64
 
65
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:373
66
  #, php-format
67
  msgid "Table \"%s\" deleted successfully."
68
  msgstr "Tabellen \"%s\" raderades framgångsrikt."
69
 
70
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:383
71
  msgid "Row deleted successfully."
72
  msgstr "Rad raderades framgångsrikt."
73
 
74
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:396
75
  msgid "Column deleted successfully."
76
  msgstr "Kolumn raderades framgångsrikt."
77
 
78
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:401
79
  msgid "Delete failed."
80
  msgstr "Radering misslyckades."
81
 
82
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:426
83
  msgid "Row inserted successfully."
84
  msgstr "Infoga rad lyckades."
85
 
86
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:435
87
  msgid "Column inserted successfully."
88
  msgstr "Infoga kolumn lyckades."
89
 
90
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:438
91
  msgid "Insert failed."
92
  msgstr "Infogning misslyckades."
93
 
94
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:466
95
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:475
96
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:485
97
  msgid "Imported Table"
98
  msgstr "Importerad Tabell"
99
 
100
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:467
101
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:486
102
+ #, php-format
103
+ msgid "from %s"
104
+ msgstr "från %s"
105
+
106
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:476
107
  msgid "via form"
108
  msgstr "via formulär"
109
 
110
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:495
111
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:520
 
 
 
 
112
  msgid "Table could not be imported."
113
  msgstr "Tabellen kunde inte importeras."
114
 
115
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:507
116
+ #, php-format
117
+ msgid "Table %s (%s) replaced successfully."
118
+ msgstr "Tabell %s (%s) ersattes framgångsrikt."
119
+
120
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:511
121
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:538
122
+ msgid "Table imported successfully."
123
+ msgstr "Tabellimport lyckades."
124
+
125
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:565
126
  #, php-format
127
  msgid "Table \"%s\" exported successfully."
128
  msgstr "Tabellen \"%s\" exporterades framgångsrikt."
129
 
130
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:593
131
  msgid "Options saved successfully."
132
  msgstr "Inställningar sparades framgångsrikt."
133
 
134
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:611
135
  msgid "WP-Table Reloaded"
136
  msgstr "WP-Table Reloaded"
137
 
138
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:612
139
  msgid "Plugin deactivated successfully."
140
  msgstr "Tillägget inaktiverades framgångsrikt."
141
 
142
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:613
143
  msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
144
  msgstr "Alla tabeller, data och inställningar raderades. Du kan nu ta bort tilläggets undermapp från din Wordpress pluginmapp."
145
 
146
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:629
147
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:689
148
  msgid "List of Tables"
149
  msgstr "Tabellista"
150
 
151
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:631
152
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:692
153
  msgid "This is a list of all available tables."
154
  msgstr "Detta är en lista över alla tillgängliga tabeller."
155
 
156
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:631
157
  msgid "You may insert a table into a post or page here."
158
  msgstr "Du kan infoga en tabell i ett inlägg eller en sida här."
159
 
160
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:632
161
  msgid "Click the \"Insert\" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=&lt;the_table_ID&gt; /]</strong>)."
162
  msgstr "Klicka på \"Infoga\"länken efter önskad tabell och motsvarande snabbkod kommer att infogas i editorn (<strong>[table id=&lt;the_table_ID&gt; /]</strong>)."
163
 
164
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:640
165
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:704
166
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1135
167
  msgid "ID"
168
  msgstr "ID"
169
 
170
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:641
171
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:705
172
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:773
173
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:826
174
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1136
175
  msgid "Table Name"
176
  msgstr "Tabellnamn"
177
 
178
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:642
179
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:706
180
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:777
181
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:830
182
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1137
183
  msgid "Description"
184
  msgstr "Beskrivning"
185
 
186
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:643
187
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:707
188
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1138
189
  msgid "Action"
190
  msgstr "Åtgärd"
191
 
192
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:663
193
  msgid "Insert"
194
  msgstr "Infoga"
195
 
196
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:672
197
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:753
198
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1256
199
  msgid "No tables found."
200
  msgstr "Inga tabeller hittades."
201
 
202
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:692
203
  msgid "You may add, edit, copy or delete tables here."
204
  msgstr "Du kan lägga till, redigera, kopiera eller radera tabeller här."
205
 
206
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:693
207
  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> or click the button \"Table\" in the editor toolbar."
208
  msgstr "Om du vill visa en tabell i dina sidor, inlägg eller textwidgets, använd snabbkoden <strong>[table id=&lt;the_table_ID&gt; /]</strong> eller klicka på knappen \"Tabell\" i verktygsfältet i editorn."
209
 
210
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:733
211
  msgid "Edit"
212
  msgstr "Redigera"
213
 
214
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:734
215
  msgid "Copy"
216
  msgstr "Kopiera"
217
 
218
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:735
219
  msgid "Export"
220
  msgstr "Exportera"
221
 
222
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:736
223
  msgid "Delete"
224
  msgstr "Radera"
225
 
226
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:744
227
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1167
228
  msgid "Bulk actions:"
229
  msgstr "Bulkåtgärder:"
230
 
231
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:744
232
  msgid "Copy Tables"
233
  msgstr "Kopiera tabeller"
234
 
235
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:744
236
  msgid "Delete Tables"
237
  msgstr "Radera tabeller"
238
 
239
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:753
240
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1256
241
  #, php-format
242
  msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
243
  msgstr "Du kan <a href=\"%s\">lägga till</a> eller <a href=\"%s\">importera</a> en!"
244
 
245
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:761
246
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1443
247
  msgid "Add new Table"
248
  msgstr "Lägg till tabell"
249
 
250
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:765
251
  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."
252
  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."
253
 
254
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:774
255
  msgid "Enter Table Name"
256
  msgstr "Ange tabellnamn"
257
 
258
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:778
259
  msgid "Enter Description"
260
  msgstr "Ange beskrivning"
261
 
262
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:781
263
  msgid "Number of Rows"
264
  msgstr "Antal rader"
265
 
266
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:785
267
  msgid "Number of Columns"
268
  msgstr "Antal kolumner"
269
 
270
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:792
271
  msgid "Add Table"
272
  msgstr "Lägg till tabell"
273
 
274
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:809
275
  #, php-format
276
  msgid "Edit Table \"%s\""
277
  msgstr "Redigera tabellen \"%s\""
278
 
279
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:812
280
  msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
281
  msgstr "Du kan redigera tabellens innehåll här. Det är även möjligt att lägga till eller radera kolumner och rader."
282
 
283
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:813
284
  #, php-format
285
  msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
286
  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>"
287
 
288
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:818
289
  msgid "Table Information"
290
  msgstr "Tabellinformation"
291
 
292
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:822
293
+ msgid "Table ID"
294
+ msgstr "Tabell ID"
295
+
296
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:838
297
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1014
298
  msgid "Update Changes"
299
  msgstr "Spara ändringar"
300
 
301
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:839
302
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1015
303
  msgid "Save and go back"
304
  msgstr "Spara och gå tillbaka"
305
 
306
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:842
307
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1018
308
  msgid "Cancel"
309
  msgstr "Ångra"
310
 
311
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:848
312
  msgid "Table Contents"
313
  msgstr "Tabellinnehåll"
314
 
315
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:848
316
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:914
317
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:983
318
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1394
319
  msgid "Hide"
320
  msgstr "Dölj"
321
 
322
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:848
323
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:914
324
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:983
325
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1394
326
  msgid "Expand"
327
  msgstr "Expandera"
328
 
329
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:877
330
  msgid "Insert Row"
331
  msgstr "Infoga rad"
332
 
333
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:879
334
  msgid "Delete Row"
335
  msgstr "Radera rad"
336
 
337
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:889
338
  msgid "Insert Column"
339
  msgstr "Infoga kolumn"
340
 
341
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:891
342
  msgid "Delete Column"
343
  msgstr "Radera kolumn"
344
 
345
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:901
346
+ #, php-format
347
+ msgid "Add %s row(s)"
348
+ msgstr "Lägg till %s rad(er)"
349
+
350
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:902
351
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:904
352
+ msgid "Add"
353
+ msgstr "Lägg till"
354
 
355
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:903
356
+ #, php-format
357
+ msgid "Add %s column(s)"
358
+ msgstr "Lägg till %s kolumn(er)"
359
 
360
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:914
361
  msgid "Data Manipulation"
362
  msgstr "Datahantering"
363
 
364
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:929
365
  #, php-format
366
  msgid "Swap rows %s and %s"
367
  msgstr "Byt plats på rader %s och %s"
368
 
369
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:932
370
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:952
371
  msgid "Swap"
372
  msgstr "Byt plats"
373
 
374
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:949
375
  #, php-format
376
  msgid "Swap columns %s and %s"
377
  msgstr "Byt plats på kolumner %s och %s"
378
 
379
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:955
380
  msgid "Insert Link"
381
  msgstr "Infoga Länk"
382
 
383
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:955
384
  msgid "Insert Image"
385
  msgstr "Infoga Bild"
386
 
387
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:966
388
  msgid "ascending"
389
  msgstr "stigande"
390
 
391
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:967
392
  msgid "descending"
393
  msgstr "fallande"
394
 
395
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:970
396
  #, php-format
397
  msgid "Sort table by column %s in %s order"
398
  msgstr "Sortera tabell efter kolumn %s i %s ordningsföljd"
399
 
400
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:973
401
  msgid "Sort"
402
  msgstr "Sortera"
403
 
404
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:983
405
  msgid "Table Settings"
406
  msgstr "Tabellinställningar"
407
 
408
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:985
409
  msgid "These settings will only be used for this table."
410
  msgstr "Dessa inställningar kommer endast användas för denna tabell."
411
 
412
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:988
413
  msgid "Alternating row colors"
414
  msgstr "Växlande radfärg"
415
 
416
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:989
417
  msgid "Every second row will have an alternating background color."
418
  msgstr "Varannan rad kommer att ha en alternativ bakgrundsfärg."
419
 
420
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:992
421
  msgid "Use Table Headline"
422
  msgstr "Använd tabellrubrik"
423
 
424
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:993
425
  msgid "The first row of your table will use the [th] tag."
426
  msgstr "Första raden i din tabell kommer använda etiketten [th]."
427
 
428
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:996
429
  msgid "Print Table Name"
430
  msgstr "Visa tabellnamn"
431
 
432
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:997
433
  msgid "The Table Name will be written above the table in a [h2] tag."
434
  msgstr "Tabellens namn kommer att visas ovanför tabellen med etiketten [h2]."
435
 
436
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1000
437
  msgid "Print Table Description"
438
  msgstr "Visa tabellbeskrivning"
439
 
440
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1001
441
  msgid "The Table Description will be written under the table."
442
  msgstr "Tabellens beskrivning kommer att visas under tabellen."
443
 
444
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1004
445
  msgid "Use Tablesorter"
446
  msgstr "Använd Tablesorter"
447
 
448
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1005
449
  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>"
450
  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>"
451
 
452
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1020
453
  msgid "Other actions"
454
  msgstr "Andra åtgärder"
455
 
456
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1023
457
  msgid "Delete Table"
458
  msgstr "Radera tabell"
459
 
460
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1024
461
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1245
462
  msgid "Export Table"
463
  msgstr "Exportera tabell"
464
 
465
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1035
466
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1444
467
  msgid "Import a Table"
468
  msgstr "Importera tabell"
469
 
470
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1039
471
  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."
472
  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."
473
 
474
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1046
475
  msgid "Select Import Format"
476
  msgstr "Välj importformat"
477
 
478
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1056
479
+ msgid "Add or Replace Table?"
480
+ msgstr "Lägga till eller ersätta tabell?"
481
+
482
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1058
483
+ msgid "Add as new Table"
484
+ msgstr "Lägg till som ny tabell"
485
+
486
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1059
487
+ msgid "Replace existing Table"
488
+ msgstr "Ersätt existerande tabell"
489
+
490
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1063
491
+ msgid "Select existing Table to Replace"
492
+ msgstr "Välj existerande tabell som ska ersättas"
493
+
494
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1078
495
+ msgid "Select source for import"
496
+ msgstr "Välj källa för import"
497
+
498
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1080
499
+ msgid "File upload"
500
+ msgstr "Filöverföring"
501
+
502
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1082
503
+ msgid "URL"
504
+ msgstr "URL"
505
+
506
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1084
507
+ msgid "Manual input"
508
+ msgstr "Manuell inmatning"
509
+
510
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1085
511
+ msgid "File on server"
512
+ msgstr "Fil på servern"
513
+
514
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1089
515
  msgid "Select File with Table to Import"
516
  msgstr "Välj tabellfil som ska importeras"
517
 
518
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1094
519
+ msgid "URL to import table from"
520
+ msgstr "URL att importera tabell från"
521
 
522
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1099
523
+ msgid "Path to file on server"
524
+ msgstr "Sökväg till fil servern"
525
 
526
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1103
527
  msgid "Paste data with Table to Import"
528
  msgstr "Klistra in data med tabell som ska importeras"
529
 
530
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1109
531
  msgid "Import Table"
532
  msgstr "Importera tabell"
533
 
534
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1122
535
  msgid "Import from original wp-Table plugin"
536
  msgstr "Importera från originalet wp-Table"
537
 
538
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1159
539
  msgid "Import"
540
  msgstr "Importera"
541
 
542
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1167
543
  msgid "Import Tables"
544
  msgstr "Importera tabeller"
545
 
546
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1173
547
  msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
548
  msgstr "wp-Table av Alex Rabe verkar vara installerat men inga tabeller kunde hittas."
549
 
550
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1192
551
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1445
552
  msgid "Export a Table"
553
  msgstr "Exportera tabell"
554
 
555
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1196
556
  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."
557
  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."
558
 
559
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1204
560
  msgid "Select Table to Export"
561
  msgstr "Välj tabell som ska exporteras"
562
 
563
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1219
564
  msgid "Select Export Format"
565
  msgstr "Välj exportformat"
566
 
567
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1229
568
  msgid "Select Delimiter to use"
569
  msgstr "Välj avgränsare"
570
 
571
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1236
572
  msgid "<small>(Only needed for CSV export.)</small>"
573
  msgstr "<small>(Behövs endast för CSV export.)</small>"
574
 
575
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1239
576
  msgid "Download file"
577
  msgstr "Ladda ner"
578
 
579
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1240
580
  msgid "Yes, I want to download the export file."
581
  msgstr "Ja, jag vill ladda ner exportfilen."
582
 
583
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1265
584
  msgid "General Plugin Options"
585
  msgstr "Allmänna inställningar"
586
 
587
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1269
588
  msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
589
  msgstr "Detta är globala inställningar.<br/>De kommer påverka alla tabeller eller tilläggets generella beteende."
590
 
591
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1276
592
  msgid "Frontend Options"
593
  msgstr "Gränssnittsalternativ"
594
 
595
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1280
596
  msgid "Enable Tablesorter-JavaScript?"
597
  msgstr "Aktivera Tablesorter-JavaScript?"
598
 
599
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1281
600
  msgid "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options)."
601
  msgstr "Ja, aktivera <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. Detta kan användas för att göra tabellerna sorterbara (kan aktiveras separat för varje tabell i dess inställningar)."
602
 
603
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1284
604
  msgid "Add custom CSS?"
605
  msgstr "Lägg till anpassad CSS?"
606
 
607
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1286
608
  msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag."
609
  msgstr "Ja, inkludera och ladda följande CSS-sträng på min sida inuti en [style]-HTML-tag."
610
 
611
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1291
612
  msgid "Enter custom CSS"
613
  msgstr "Ange anpassad CSS"
614
 
615
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1293
616
  #, php-format
617
  msgid "(You might get a better website performance, if you add the CSS styling to your theme's \"style.css\" <small>(located at %s)</small>) instead."
618
  msgstr "(Hemsidans prestanda kan förbättras om du lägger till CSS-stilen i temats \"style.css\" istället. <small>(finns i %s)</small>)"
619
 
620
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1294
621
  #, php-format
622
  msgid "See the <a href=\"%s\">plugin website</a> for styling examples or use one of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
623
  msgstr "Se <a href=\"%s\">tilläggets hemsida</a> för stylingexempel eller använd ett av följande: <a href=\"%s\">Exempelstil 1</a> <a href=\"%s\">Exempelstil 2</a>"
624
 
625
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1294
626
  msgid "Just copy the contents of a file into the textarea."
627
  msgstr "Kopiera filens innehåll och klistra in i textarean."
628
 
629
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1302
630
  msgid "Admin Options"
631
  msgstr "Adminalternativ"
632
 
633
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1306
634
  msgid "Uninstall Plugin upon Deactivation?"
635
  msgstr "Avinstallera tillägget vid inaktivering?"
636
 
637
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1307
638
  msgid "Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!"
639
  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!"
640
 
641
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1307
642
  msgid "<small>(This setting does not influence the \"Manually Uninstall Plugin\" button below!)</small>"
643
  msgstr "<small>(Denna inställning påverkar inte knappen \"Avinstallera tillägget manuellt\" nedan!)</small>"
644
 
645
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1317
646
  msgid "Save Options"
647
  msgstr "Spara"
648
 
649
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1323
650
  msgid "Manually Uninstall Plugin"
651
  msgstr "Avinstallera tillägget manuellt"
652
 
653
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1325
654
  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!"
655
  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!"
656
 
657
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1328
658
  msgid "Uninstall Plugin WP-Table Reloaded"
659
  msgstr "Avinstallera WP-Table Reloaded"
660
 
661
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1339
662
  msgid "Information about the plugin"
663
  msgstr "Information om tillägget"
664
 
665
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1345
666
  msgid "Plugin Purpose"
667
  msgstr "Tilläggets ändamål"
668
 
669
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1347
670
  msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
671
  msgstr "Med detta tillägg kan du skapa och hantera tabeller i adminpanelen i WordPress."
672
 
673
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1347
674
  msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
675
  msgstr "Dessa tabeller kan innehålla strängar, tal och även HTML (t.ex. för att inkludera bilder eller länkar)."
676
 
677
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1347
678
  msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
679
  msgstr "Du kan sedan visa dem i dina inlägg, på dina sidor eller i textwidgets genom att använda en snabbkod."
680
 
681
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1347
682
  msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
683
  msgstr "Om du vill visa dina tabeller någon annanstans i ditt tema kan du använda template tag funktionen."
684
 
685
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1352
686
  msgid "Usage"
687
  msgstr "Användning"
688
 
689
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1354
690
  msgid "At first you should add or import a table."
691
  msgstr "Du bör först lägga till eller importera en tabell."
692
 
693
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1354
694
  msgid "This means that you either let the plugin create an empty table for you or that you load an existing table from either a CSV, XML or HTML file."
695
  msgstr "Detta betyder att du antingen låter tillägget skapa en tom tabell åt dig eller att du laddar en existerande tabell från en CSV-, XML- eller HTML-fil."
696
 
697
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1354
698
  msgid "Then you can edit your data or change the structure of your table (e.g. by inserting or deleting rows or columns, swaping rows or columns or sorting them) and select specific table options like alternating row colors or whether to print the name or description, if you want."
699
  msgstr "Sedan kan du redigera din data eller ändra tabellens struktur (t.ex. genom att infoga eller radera rader och kolumner, byta plats på rader och kolumner eller sortera dem) och välja specifika tabellinställningar så som växlande radfärger eller att visa namn eller beskrivning, om du vill."
700
 
701
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1354
702
  msgid "To easily add a link or an image to a cell, use the provided buttons. Those will ask you for the URL and a title. Then you can click into a cell and the corresponding HTML will be added to it for you."
703
  msgstr "För att enkelt lägga till en länk eller en bild i en cell, använd tillhandahållna knappar. Du kommer tillfrågas om URL och en titel. Sedan kan du klicka i en cell och motsvarande HTML kommer att läggas till åt dig."
704
 
705
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1354
706
  msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them."
707
  msgstr "För att inkludera tabellen i dina inlägg, sidor eller textwidgets, skriv snabbkoden [table id=&lt;table-id&gt;] i dem."
708
 
709
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1354
710
  msgid "You can also select the desired table from a list (after clicking the button \"Table\" in the editor toolbar) and the corresponding shortcode will be added for you."
711
  msgstr "Du kan även välja önskad tabell från en lista (klicka på knappen \"Tabell\" i verktygsfältet i editorn) och motsvarande snabbkod kommer läggas till åt dig."
712
 
713
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1354
714
  msgid "You may also style your table via CSS. Example files are provided on the plugin website. Every table has the CSS class \"wp-table-reloaded\". Each table also has the class \"wp-table-reloaded-&lt;table-id&gt;\"."
715
  msgstr "Du kan även styla din tabell med hjälp av CSS. Exempelfiler finns på tilläggets hemsida. Varje tabell har CSS-class \"wp-table-reloaded\". Varje tabell har även class \"wp-table-reloaded-&lt;table-id&gt;\"."
716
 
717
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1354
718
  msgid "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 for example."
719
  msgstr "Du kan även använda class \"column-&lt;number&gt;\" och \"row-&lt;number&gt;\" för att ställa in individuell stil för rader och kolumner. Använd detta för att exempelvis ställa in kolumnbredd och textjustering."
720
 
721
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1359
722
  msgid "More Information and Documentation"
723
  msgstr "Mer Information och Dokumentation"
724
 
725
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1361
726
  msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
727
  msgstr "Mer information hittar du på <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">tilläggets hemsida</a> eller på dess sida i <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
728
 
729
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1361
730
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1456
731
  msgid "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentation</a> or find out how to get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
732
  msgstr "Se <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">dokumentation</a> eller ta reda på hur du får <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
733
 
734
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1366
735
  msgid "Author and Licence"
736
  msgstr "Författare och Licens"
737
 
738
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1368
739
  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."
740
  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."
741
 
742
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1368
743
  msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>a donation</strong></a> and rate the plugin in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
744
  msgstr "Om du gillar detta tillägg, var vänlig överväg <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">en donation</a> och betygsätt tillägget på <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
745
 
746
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1368
747
  msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
748
  msgstr "Donationer och bra betyg uppmuntrar mig att vidare utveckla tillägget och tillhandahålla oräkneliga timmar support. Valfritt belopp är uppskattat! Tack!"
749
 
750
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1373
751
  msgid "Credits and Thanks"
752
  msgstr "Medverkande och Tack"
753
 
754
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1376
755
  msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
756
  msgstr "Tack till <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> skaparen av originaltillägget wp-Table,"
757
 
758
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1377
759
  msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
760
  msgstr "Christian Bach för <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
761
 
762
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1378
763
  msgid "the submitters of translations:"
764
  msgstr "inskickade översättningar:"
765
 
766
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1379
767
  msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
768
  msgstr "Albanska (tack till <a href=\"http://www.romeolab.com/\">Romeo</a>)"
769
 
770
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1380
771
+ msgid "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/\">Rics</a>)"
772
+ msgstr "Brasiliansk-Portugisiska (tack till <a href=\"http://www.pensarics.com/\">Rics</a>)"
773
+
774
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1381
775
+ msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
776
+ msgstr "Tjeckiska (tack till <a href=\"http://separatista.net/\">Separatista</a>)"
777
 
778
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1382
779
  msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
780
  msgstr "Franska (tack till <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
781
 
782
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1383
783
+ msgid "Polish (thanks to Alex Kortan)"
784
+ msgstr "Polska (tack till Alex Kortan)"
785
+
786
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1384
787
  msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
788
  msgstr "Ryska (tack till <a href=\"http://wp-skins.info/\">Truper</a>)"
789
 
790
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1385
791
  msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
792
  msgstr "Spanska (tack till <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> och <a href=\"http://halles.cl/\">Matias Halles</a>)"
793
 
794
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1386
795
  msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
796
  msgstr "Svenska (tack till <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
797
 
798
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1387
799
  msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
800
  msgstr "Turkiska (tack till <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
801
 
802
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1388
803
  msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
804
  msgstr "och alla donatorer, bidragsgivare, anhängare, recensenter och användare av tillägget!"
805
 
806
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1394
807
  msgid "Debug and Version Information"
808
  msgstr "Debug- och Versionsinformation"
809
 
810
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1397
811
  msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
812
  msgstr "Du använder följande version av programvaran. <strong>Var vänlig ange denna information i felrapporter.</strong>"
813
 
814
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1442
815
  msgid "List Tables"
816
  msgstr "Visa tabeller"
817
 
818
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1447
819
  msgid "Plugin Options"
820
  msgstr "Inställningar"
821
 
822
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1448
823
  msgid "About the Plugin"
824
  msgstr "Om tillägget"
825
 
826
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1456
827
  msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
828
  msgstr "Mer information kan hittas på <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">tilläggets hemsida</a>."
829
 
830
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1682
831
  msgid "Do you really want to activate this? You should only do that right before uninstallation!"
832
  msgstr "Vill du verkligen aktivera det här? Du bör endast göra detta precis innan avinstallation!"
833
 
834
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1683
835
  msgid "URL of link to insert"
836
  msgstr "URL till länken som ska infogas"
837
 
838
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1684
839
  msgid "Text of link"
840
  msgstr "Länkens text"
841
 
842
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1685
843
  msgid "To insert the following link into a cell, just click the cell after closing this dialog."
844
  msgstr "För att infoga följande länk i en cell, klicka bara på cellen efter att denna ruta har stängts."
845
 
846
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1686
847
  msgid "URL of image to insert"
848
  msgstr "URL till bilden som ska infogas"
849
 
850
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1687
851
  msgid "''alt'' text of the image"
852
  msgstr "''alt'' bildens text"
853
 
854
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1688
855
  msgid "To insert the following image into a cell, just click the cell after closing this dialog."
856
  msgstr "För att infoga foljande bild i en cell, klicka bara på cellen efter att denna ruta har stängts."
857
 
858
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1689
859
  msgid "Do you want to copy the selected tables?"
860
  msgstr "Vill du kopiera valda tabeller?"
861
 
862
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1690
863
  msgid "The selected tables and all content will be erased. Do you really want to delete them?"
864
  msgstr "Valda tabeller och allt inehåll kommer raderas. Vill du verkligen radera dem?"
865
 
866
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1691
867
  msgid "Do you really want to import the selected tables from the wp-Table plugin?"
868
  msgstr "Vill du verkligen importera valda tabeller från wp-Table tillägget?"
869
 
870
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1692
871
  msgid "Do you want to copy this table?"
872
  msgstr "Vill du kopiera denna tabell?"
873
 
874
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1693
875
  msgid "The complete table and all content will be erased. Do you really want to delete it?"
876
  msgstr "Tabellen och dess inehåll kommer raderas. Vill du verkligen radera den?"
877
 
878
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1694
879
  msgid "Do you really want to delete this row?"
880
  msgstr "Vill du verkligen radera denna rad?"
881
 
882
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1695
883
  msgid "Do you really want to delete this column?"
884
  msgstr "Vill du verkligen radera denna kolumn?"
885
 
886
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1696
887
  msgid "Do you really want to import this table from the wp-Table plugin?"
888
  msgstr "Vill du verkligen importera denna tabell från wp-Table tillägget?"
889
 
890
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1697
891
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
892
  msgstr "Vill du verkligen avinstallera tillägget och radera ALL data?"
893
 
894
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1698
895
  msgid "Are you really sure?"
896
  msgstr "Är du riktigt säker?"
897
 
898
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1699
899
+ msgid "Do you really want to change the ID of the table?"
900
+ msgstr "Vill du verkligen ändra ID för denna tabell?"
901
+
902
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1748
903
  msgid "Table"
904
  msgstr "Tabell"
905
 
938
  msgid "| (pipe)"
939
  msgstr "| (pipe)"
940
 
941
+ #~ msgid "- or -"
942
+ #~ msgstr "- eller -"
943
+ #~ msgid "(upload will be preferred over pasting)"
944
+ #~ msgstr "(ladda upp föredras framför klistra in)"
945
  #~ msgid "Used Delimiter"
946
  #~ msgstr "Välj avgränsare"
947
  #~ msgid ""
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-05-18 13:29+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"
@@ -57,405 +57,452 @@ msgstr ""
57
  msgid "Table \"%s\" added successfully."
58
  msgstr ""
59
 
60
- #: wp-table-reloaded-admin.php:176
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  msgid "Table edited successfully."
62
  msgstr ""
63
 
64
- #: wp-table-reloaded-admin.php:192
65
  msgid "Rows swapped successfully."
66
  msgstr ""
67
 
68
- #: wp-table-reloaded-admin.php:211
69
  msgid "Columns swapped successfully."
70
  msgstr ""
71
 
72
- #: wp-table-reloaded-admin.php:229
73
  msgid "Table sorted successfully."
74
  msgstr ""
75
 
76
- #: wp-table-reloaded-admin.php:264 wp-table-reloaded-admin.php:314
 
 
 
 
 
 
 
 
 
 
 
 
77
  msgid "Copy of"
78
  msgstr ""
79
 
80
- #: wp-table-reloaded-admin.php:268
81
  msgid "Table copied successfully."
82
  msgid_plural "Tables copied successfully."
83
  msgstr[0] ""
84
  msgstr[1] ""
85
 
86
- #: wp-table-reloaded-admin.php:277
87
  msgid "Table deleted successfully."
88
  msgid_plural "Tables deleted successfully."
89
  msgstr[0] ""
90
  msgstr[1] ""
91
 
92
- #: wp-table-reloaded-admin.php:290 wp-table-reloaded-admin.php:448
93
- #: wp-table-reloaded-admin.php:469
94
  msgid "Table imported successfully."
95
  msgid_plural "Tables imported successfully."
96
  msgstr[0] ""
97
  msgstr[1] ""
98
 
99
- #: wp-table-reloaded-admin.php:297
100
  msgid "You did not select any tables!"
101
  msgstr ""
102
 
103
- #: wp-table-reloaded-admin.php:319
104
  #, php-format
105
  msgid "Table \"%s\" copied successfully."
106
  msgstr ""
107
 
108
- #: wp-table-reloaded-admin.php:338
109
  #, php-format
110
  msgid "Table \"%s\" deleted successfully."
111
  msgstr ""
112
 
113
- #: wp-table-reloaded-admin.php:348
114
  msgid "Row deleted successfully."
115
  msgstr ""
116
 
117
- #: wp-table-reloaded-admin.php:361
118
  msgid "Column deleted successfully."
119
  msgstr ""
120
 
121
- #: wp-table-reloaded-admin.php:366
122
  msgid "Delete failed."
123
  msgstr ""
124
 
125
- #: wp-table-reloaded-admin.php:391
126
  msgid "Row inserted successfully."
127
  msgstr ""
128
 
129
- #: wp-table-reloaded-admin.php:400
130
  msgid "Column inserted successfully."
131
  msgstr ""
132
 
133
- #: wp-table-reloaded-admin.php:403
134
  msgid "Insert failed."
135
  msgstr ""
136
 
137
- #: wp-table-reloaded-admin.php:431
 
138
  msgid "Imported Table"
139
  msgstr ""
140
 
141
- #: wp-table-reloaded-admin.php:432
 
 
 
 
 
142
  msgid "via form"
143
  msgstr ""
144
 
145
- #: wp-table-reloaded-admin.php:451
146
  msgid "Table could not be imported."
147
  msgstr ""
148
 
149
- #: wp-table-reloaded-admin.php:496
 
 
 
 
 
150
  #, php-format
151
  msgid "Table \"%s\" exported successfully."
152
  msgstr ""
153
 
154
- #: wp-table-reloaded-admin.php:524
155
  msgid "Options saved successfully."
156
  msgstr ""
157
 
158
  #. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
159
  #. Plugin Name of an extension
160
- #: wp-table-reloaded-admin.php:542
161
  msgid "WP-Table Reloaded"
162
  msgstr ""
163
 
164
- #: wp-table-reloaded-admin.php:543
165
  msgid "Plugin deactivated successfully."
166
  msgstr ""
167
 
168
- #: wp-table-reloaded-admin.php:544
169
  msgid ""
170
  "All tables, data and options were deleted. You may now remove the plugin's "
171
  "subfolder from your WordPress plugin folder."
172
  msgstr ""
173
 
174
- #: wp-table-reloaded-admin.php:560 wp-table-reloaded-admin.php:620
175
  msgid "List of Tables"
176
  msgstr ""
177
 
178
- #: wp-table-reloaded-admin.php:562 wp-table-reloaded-admin.php:623
179
  msgid "This is a list of all available tables."
180
  msgstr ""
181
 
182
- #: wp-table-reloaded-admin.php:562
183
  msgid "You may insert a table into a post or page here."
184
  msgstr ""
185
 
186
- #: wp-table-reloaded-admin.php:563
187
  msgid ""
188
  "Click the \"Insert\" link after the desired table and the corresponding "
189
  "shortcode will be inserted into the editor (<strong>[table id=&lt;"
190
  "the_table_ID&gt; /]</strong>)."
191
  msgstr ""
192
 
193
- #: wp-table-reloaded-admin.php:571 wp-table-reloaded-admin.php:635
194
- #: wp-table-reloaded-admin.php:1013
195
  msgid "ID"
196
  msgstr ""
197
 
198
- #: wp-table-reloaded-admin.php:572 wp-table-reloaded-admin.php:636
199
- #: wp-table-reloaded-admin.php:704 wp-table-reloaded-admin.php:753
200
- #: wp-table-reloaded-admin.php:1014
201
  msgid "Table Name"
202
  msgstr ""
203
 
204
- #: wp-table-reloaded-admin.php:573 wp-table-reloaded-admin.php:637
205
- #: wp-table-reloaded-admin.php:708 wp-table-reloaded-admin.php:757
206
- #: wp-table-reloaded-admin.php:1015
207
  msgid "Description"
208
  msgstr ""
209
 
210
- #: wp-table-reloaded-admin.php:574 wp-table-reloaded-admin.php:638
211
- #: wp-table-reloaded-admin.php:1016
212
  msgid "Action"
213
  msgstr ""
214
 
215
- #: wp-table-reloaded-admin.php:594
216
  msgid "Insert"
217
  msgstr ""
218
 
219
- #: wp-table-reloaded-admin.php:603 wp-table-reloaded-admin.php:684
220
- #: wp-table-reloaded-admin.php:1134
221
  msgid "No tables found."
222
  msgstr ""
223
 
224
- #: wp-table-reloaded-admin.php:623
225
  msgid "You may add, edit, copy or delete tables here."
226
  msgstr ""
227
 
228
- #: wp-table-reloaded-admin.php:624
229
  msgid ""
230
  "If you want to show a table in your pages, posts or text-widgets, use the "
231
  "shortcode <strong>[table id=&lt;the_table_ID&gt; /]</strong> or click the "
232
  "button \"Table\" in the editor toolbar."
233
  msgstr ""
234
 
235
- #: wp-table-reloaded-admin.php:664
236
  msgid "Edit"
237
  msgstr ""
238
 
239
- #: wp-table-reloaded-admin.php:665
240
  msgid "Copy"
241
  msgstr ""
242
 
243
- #: wp-table-reloaded-admin.php:666
244
  msgid "Export"
245
  msgstr ""
246
 
247
- #: wp-table-reloaded-admin.php:667
248
  msgid "Delete"
249
  msgstr ""
250
 
251
- #: wp-table-reloaded-admin.php:675 wp-table-reloaded-admin.php:1045
252
  msgid "Bulk actions:"
253
  msgstr ""
254
 
255
- #: wp-table-reloaded-admin.php:675
256
  msgid "Copy Tables"
257
  msgstr ""
258
 
259
- #: wp-table-reloaded-admin.php:675
260
  msgid "Delete Tables"
261
  msgstr ""
262
 
263
- #: wp-table-reloaded-admin.php:684 wp-table-reloaded-admin.php:1134
264
  #, php-format
265
  msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
266
  msgstr ""
267
 
268
- #: wp-table-reloaded-admin.php:692 wp-table-reloaded-admin.php:1320
269
  msgid "Add new Table"
270
  msgstr ""
271
 
272
- #: wp-table-reloaded-admin.php:696
273
  msgid ""
274
  "You can add a new table here. Just enter it's name, a description (optional) "
275
  "and the number of rows and columns.<br/>You may add, insert or delete rows "
276
  "and columns later."
277
  msgstr ""
278
 
279
- #: wp-table-reloaded-admin.php:705
280
  msgid "Enter Table Name"
281
  msgstr ""
282
 
283
- #: wp-table-reloaded-admin.php:709
284
  msgid "Enter Description"
285
  msgstr ""
286
 
287
- #: wp-table-reloaded-admin.php:712
288
  msgid "Number of Rows"
289
  msgstr ""
290
 
291
- #: wp-table-reloaded-admin.php:716
292
  msgid "Number of Columns"
293
  msgstr ""
294
 
295
- #: wp-table-reloaded-admin.php:723
296
  msgid "Add Table"
297
  msgstr ""
298
 
299
- #: wp-table-reloaded-admin.php:740
300
  #, php-format
301
  msgid "Edit Table \"%s\""
302
  msgstr ""
303
 
304
- #: wp-table-reloaded-admin.php:743
305
  msgid ""
306
  "You may edit the content of the table here. It is also possible to add or "
307
  "delete columns and rows."
308
  msgstr ""
309
 
310
- #: wp-table-reloaded-admin.php:744
311
  #, php-format
312
  msgid ""
313
  "If you want to show a table in your pages, posts or text-widgets, use this "
314
  "shortcode: <strong>[table id=%s /]</strong>"
315
  msgstr ""
316
 
317
- #: wp-table-reloaded-admin.php:749
318
  msgid "Table Information"
319
  msgstr ""
320
 
321
- #: wp-table-reloaded-admin.php:765 wp-table-reloaded-admin.php:931
 
 
 
 
322
  msgid "Update Changes"
323
  msgstr ""
324
 
325
- #: wp-table-reloaded-admin.php:766 wp-table-reloaded-admin.php:932
326
  msgid "Save and go back"
327
  msgstr ""
328
 
329
- #: wp-table-reloaded-admin.php:769 wp-table-reloaded-admin.php:935
330
  msgid "Cancel"
331
  msgstr ""
332
 
333
- #: wp-table-reloaded-admin.php:775
334
  msgid "Table Contents"
335
  msgstr ""
336
 
337
- #: wp-table-reloaded-admin.php:775 wp-table-reloaded-admin.php:831
338
- #: wp-table-reloaded-admin.php:900 wp-table-reloaded-admin.php:1271
339
  msgid "Hide"
340
  msgstr ""
341
 
342
- #: wp-table-reloaded-admin.php:775 wp-table-reloaded-admin.php:831
343
- #: wp-table-reloaded-admin.php:900 wp-table-reloaded-admin.php:1271
344
  msgid "Expand"
345
  msgstr ""
346
 
347
- #: wp-table-reloaded-admin.php:803
348
  msgid "Insert Row"
349
  msgstr ""
350
 
351
- #: wp-table-reloaded-admin.php:805
352
  msgid "Delete Row"
353
  msgstr ""
354
 
355
- #: wp-table-reloaded-admin.php:815
356
  msgid "Insert Column"
357
  msgstr ""
358
 
359
- #: wp-table-reloaded-admin.php:817
360
  msgid "Delete Column"
361
  msgstr ""
362
 
363
- #: wp-table-reloaded-admin.php:822
364
- msgid "Add Row"
 
365
  msgstr ""
366
 
367
- #: wp-table-reloaded-admin.php:822
368
- msgid "Add Column"
 
 
 
 
 
369
  msgstr ""
370
 
371
- #: wp-table-reloaded-admin.php:831
372
  msgid "Data Manipulation"
373
  msgstr ""
374
 
375
- #: wp-table-reloaded-admin.php:846
376
  #, php-format
377
  msgid "Swap rows %s and %s"
378
  msgstr ""
379
 
380
- #: wp-table-reloaded-admin.php:849 wp-table-reloaded-admin.php:869
381
  msgid "Swap"
382
  msgstr ""
383
 
384
- #: wp-table-reloaded-admin.php:866
385
  #, php-format
386
  msgid "Swap columns %s and %s"
387
  msgstr ""
388
 
389
- #: wp-table-reloaded-admin.php:872
390
  msgid "Insert Link"
391
  msgstr ""
392
 
393
- #: wp-table-reloaded-admin.php:872
394
  msgid "Insert Image"
395
  msgstr ""
396
 
397
- #: wp-table-reloaded-admin.php:883
398
  msgid "ascending"
399
  msgstr ""
400
 
401
- #: wp-table-reloaded-admin.php:884
402
  msgid "descending"
403
  msgstr ""
404
 
405
- #: wp-table-reloaded-admin.php:887
406
  #, php-format
407
  msgid "Sort table by column %s in %s order"
408
  msgstr ""
409
 
410
- #: wp-table-reloaded-admin.php:890
411
  msgid "Sort"
412
  msgstr ""
413
 
414
- #: wp-table-reloaded-admin.php:900
415
  msgid "Table Settings"
416
  msgstr ""
417
 
418
- #: wp-table-reloaded-admin.php:902
419
  msgid "These settings will only be used for this table."
420
  msgstr ""
421
 
422
- #: wp-table-reloaded-admin.php:905
423
  msgid "Alternating row colors"
424
  msgstr ""
425
 
426
- #: wp-table-reloaded-admin.php:906
427
  msgid "Every second row will have an alternating background color."
428
  msgstr ""
429
 
430
- #: wp-table-reloaded-admin.php:909
431
  msgid "Use Table Headline"
432
  msgstr ""
433
 
434
- #: wp-table-reloaded-admin.php:910
435
  msgid "The first row of your table will use the [th] tag."
436
  msgstr ""
437
 
438
- #: wp-table-reloaded-admin.php:913
439
  msgid "Print Table Name"
440
  msgstr ""
441
 
442
- #: wp-table-reloaded-admin.php:914
443
  msgid "The Table Name will be written above the table in a [h2] tag."
444
  msgstr ""
445
 
446
- #: wp-table-reloaded-admin.php:917
447
  msgid "Print Table Description"
448
  msgstr ""
449
 
450
- #: wp-table-reloaded-admin.php:918
451
  msgid "The Table Description will be written under the table."
452
  msgstr ""
453
 
454
- #: wp-table-reloaded-admin.php:921
455
  msgid "Use Tablesorter"
456
  msgstr ""
457
 
458
- #: wp-table-reloaded-admin.php:922
459
  msgid ""
460
  "You may sort a table using the <a href=\"http://www.tablesorter.com/"
461
  "\">Tablesorter-jQuery-Plugin</a>. <small>Attention: You must have "
@@ -463,151 +510,187 @@ msgid ""
463
  "Table Headline\" has to be enabled above for this to work!</small>"
464
  msgstr ""
465
 
466
- #: wp-table-reloaded-admin.php:937
467
  msgid "Other actions"
468
  msgstr ""
469
 
470
- #: wp-table-reloaded-admin.php:940
471
  msgid "Delete Table"
472
  msgstr ""
473
 
474
- #: wp-table-reloaded-admin.php:941 wp-table-reloaded-admin.php:1123
475
  msgid "Export Table"
476
  msgstr ""
477
 
478
- #: wp-table-reloaded-admin.php:952 wp-table-reloaded-admin.php:1321
479
  msgid "Import a Table"
480
  msgstr ""
481
 
482
- #: wp-table-reloaded-admin.php:956
483
  msgid ""
484
  "You may import a table from existing data here.<br/>It may be a CSV, XML or "
485
  "HTML file. It needs a certain structure though. Please consult the "
486
  "documentation."
487
  msgstr ""
488
 
489
- #: wp-table-reloaded-admin.php:963
490
  msgid "Select Import Format"
491
  msgstr ""
492
 
493
- #: wp-table-reloaded-admin.php:973
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
494
  msgid "Select File with Table to Import"
495
  msgstr ""
496
 
497
- #: wp-table-reloaded-admin.php:977
498
- msgid "- or -"
499
  msgstr ""
500
 
501
- #: wp-table-reloaded-admin.php:978
502
- msgid "(upload will be preferred over pasting)"
503
  msgstr ""
504
 
505
- #: wp-table-reloaded-admin.php:981
506
  msgid "Paste data with Table to Import"
507
  msgstr ""
508
 
509
- #: wp-table-reloaded-admin.php:987
510
  msgid "Import Table"
511
  msgstr ""
512
 
513
- #: wp-table-reloaded-admin.php:1000
514
  msgid "Import from original wp-Table plugin"
515
  msgstr ""
516
 
517
- #: wp-table-reloaded-admin.php:1037
518
  msgid "Import"
519
  msgstr ""
520
 
521
- #: wp-table-reloaded-admin.php:1045
522
  msgid "Import Tables"
523
  msgstr ""
524
 
525
- #: wp-table-reloaded-admin.php:1051
526
  msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
527
  msgstr ""
528
 
529
- #: wp-table-reloaded-admin.php:1070 wp-table-reloaded-admin.php:1322
530
  msgid "Export a Table"
531
  msgstr ""
532
 
533
- #: wp-table-reloaded-admin.php:1074
534
  msgid ""
535
  "You may export a table here. Just select the table, your desired export "
536
  "format and a delimiter (needed for CSV only).<br/>You may opt to download "
537
  "the export file. Otherwise it will be shown on this page."
538
  msgstr ""
539
 
540
- #: wp-table-reloaded-admin.php:1082
541
  msgid "Select Table to Export"
542
  msgstr ""
543
 
544
- #: wp-table-reloaded-admin.php:1097
545
  msgid "Select Export Format"
546
  msgstr ""
547
 
548
- #: wp-table-reloaded-admin.php:1107
549
  msgid "Select Delimiter to use"
550
  msgstr ""
551
 
552
- #: wp-table-reloaded-admin.php:1114
553
  msgid "<small>(Only needed for CSV export.)</small>"
554
  msgstr ""
555
 
556
- #: wp-table-reloaded-admin.php:1117
557
  msgid "Download file"
558
  msgstr ""
559
 
560
- #: wp-table-reloaded-admin.php:1118
561
  msgid "Yes, I want to download the export file."
562
  msgstr ""
563
 
564
- #: wp-table-reloaded-admin.php:1143
565
  msgid "General Plugin Options"
566
  msgstr ""
567
 
568
- #: wp-table-reloaded-admin.php:1147
569
  msgid ""
570
  "You may change these global options.<br/>They will effect all tables or the "
571
  "general plugin behaviour."
572
  msgstr ""
573
 
574
- #: wp-table-reloaded-admin.php:1154
575
  msgid "Frontend Options"
576
  msgstr ""
577
 
578
- #: wp-table-reloaded-admin.php:1158
579
  msgid "Enable Tablesorter-JavaScript?"
580
  msgstr ""
581
 
582
- #: wp-table-reloaded-admin.php:1159
583
  msgid ""
584
  "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery "
585
  "plugin</a>. This can be used to make tables sortable (can be activated for "
586
  "each table separately in its options)."
587
  msgstr ""
588
 
589
- #: wp-table-reloaded-admin.php:1162
590
  msgid "Add custom CSS?"
591
  msgstr ""
592
 
593
- #: wp-table-reloaded-admin.php:1164
594
  msgid ""
595
  "Yes, include and load the following CSS-snippet on my site inside a [style]-"
596
  "HTML-tag."
597
  msgstr ""
598
 
599
- #: wp-table-reloaded-admin.php:1169
600
  msgid "Enter custom CSS"
601
  msgstr ""
602
 
603
- #: wp-table-reloaded-admin.php:1171
604
  #, php-format
605
  msgid ""
606
  "(You might get a better website performance, if you add the CSS styling to "
607
  "your theme's \"style.css\" <small>(located at %s)</small>) instead."
608
  msgstr ""
609
 
610
- #: wp-table-reloaded-admin.php:1172
611
  #, php-format
612
  msgid ""
613
  "See the <a href=\"%s\">plugin website</a> for styling examples or use one of "
@@ -615,40 +698,40 @@ msgid ""
615
  "Style 2</a>"
616
  msgstr ""
617
 
618
- #: wp-table-reloaded-admin.php:1172
619
  msgid "Just copy the contents of a file into the textarea."
620
  msgstr ""
621
 
622
- #: wp-table-reloaded-admin.php:1180
623
  msgid "Admin Options"
624
  msgstr ""
625
 
626
- #: wp-table-reloaded-admin.php:1184
627
  msgid "Uninstall Plugin upon Deactivation?"
628
  msgstr ""
629
 
630
- #: wp-table-reloaded-admin.php:1185
631
  msgid ""
632
  "Yes, uninstall everything when the plugin is deactivated. Attention: You "
633
  "should only enable this checkbox directly before deactivating the plugin "
634
  "from the WordPress plugins page!"
635
  msgstr ""
636
 
637
- #: wp-table-reloaded-admin.php:1185
638
  msgid ""
639
  "<small>(This setting does not influence the \"Manually Uninstall Plugin\" "
640
  "button below!)</small>"
641
  msgstr ""
642
 
643
- #: wp-table-reloaded-admin.php:1195
644
  msgid "Save Options"
645
  msgstr ""
646
 
647
- #: wp-table-reloaded-admin.php:1201
648
  msgid "Manually Uninstall Plugin"
649
  msgstr ""
650
 
651
- #: wp-table-reloaded-admin.php:1203
652
  msgid ""
653
  "You may uninstall the plugin here. This <strong>will delete</strong> all "
654
  "tables, data, options, etc., that belong to the plugin, including all tables "
@@ -656,57 +739,57 @@ msgid ""
656
  "button if you know what you are doing!"
657
  msgstr ""
658
 
659
- #: wp-table-reloaded-admin.php:1206
660
  msgid "Uninstall Plugin WP-Table Reloaded"
661
  msgstr ""
662
 
663
- #: wp-table-reloaded-admin.php:1217
664
  msgid "Information about the plugin"
665
  msgstr ""
666
 
667
- #: wp-table-reloaded-admin.php:1223
668
  msgid "Plugin Purpose"
669
  msgstr ""
670
 
671
- #: wp-table-reloaded-admin.php:1225
672
  msgid ""
673
  "This plugin allows you to create and manage tables in the admin-area of "
674
  "WordPress."
675
  msgstr ""
676
 
677
- #: wp-table-reloaded-admin.php:1225
678
  msgid ""
679
  "Those tables may contain strings, numbers and even HTML (e.g. to include "
680
  "images or links)."
681
  msgstr ""
682
 
683
- #: wp-table-reloaded-admin.php:1225
684
  msgid ""
685
  "You can then show the tables in your posts, on your pages or in text widgets "
686
  "by using a shortcode."
687
  msgstr ""
688
 
689
- #: wp-table-reloaded-admin.php:1225
690
  msgid ""
691
  "If you want to show your tables anywhere else in your theme, you can use a "
692
  "template tag function."
693
  msgstr ""
694
 
695
- #: wp-table-reloaded-admin.php:1230
696
  msgid "Usage"
697
  msgstr ""
698
 
699
- #: wp-table-reloaded-admin.php:1232
700
  msgid "At first you should add or import a table."
701
  msgstr ""
702
 
703
- #: wp-table-reloaded-admin.php:1232
704
  msgid ""
705
  "This means that you either let the plugin create an empty table for you or "
706
  "that you load an existing table from either a CSV, XML or HTML file."
707
  msgstr ""
708
 
709
- #: wp-table-reloaded-admin.php:1232
710
  msgid ""
711
  "Then you can edit your data or change the structure of your table (e.g. by "
712
  "inserting or deleting rows or columns, swaping rows or columns or sorting "
@@ -714,45 +797,45 @@ msgid ""
714
  "whether to print the name or description, if you want."
715
  msgstr ""
716
 
717
- #: wp-table-reloaded-admin.php:1232
718
  msgid ""
719
  "To easily add a link or an image to a cell, use the provided buttons. Those "
720
  "will ask you for the URL and a title. Then you can click into a cell and the "
721
  "corresponding HTML will be added to it for you."
722
  msgstr ""
723
 
724
- #: wp-table-reloaded-admin.php:1232
725
  msgid ""
726
  "To include the table into your posts, pages or text widgets, write the "
727
  "shortcode [table id=&lt;table-id&gt;] into them."
728
  msgstr ""
729
 
730
- #: wp-table-reloaded-admin.php:1232
731
  msgid ""
732
  "You can also select the desired table from a list (after clicking the button "
733
  "\"Table\" in the editor toolbar) and the corresponding shortcode will be "
734
  "added for you."
735
  msgstr ""
736
 
737
- #: wp-table-reloaded-admin.php:1232
738
  msgid ""
739
  "You may also style your table via CSS. Example files are provided on the "
740
  "plugin website. Every table has the CSS class \"wp-table-reloaded\". Each "
741
  "table also has the class \"wp-table-reloaded-&lt;table-id&gt;\"."
742
  msgstr ""
743
 
744
- #: wp-table-reloaded-admin.php:1232
745
  msgid ""
746
  "You can also use the classes \"column-&lt;number&gt;\" and \"row-&lt;"
747
  "number&gt;\" to style rows and columns individually. Use this to style "
748
  "columns width and text alignment for example."
749
  msgstr ""
750
 
751
- #: wp-table-reloaded-admin.php:1237
752
  msgid "More Information and Documentation"
753
  msgstr ""
754
 
755
- #: wp-table-reloaded-admin.php:1239
756
  msgid ""
757
  "More information can be found on the <a href=\"http://tobias.baethge.com/"
758
  "wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a> or on "
@@ -760,7 +843,7 @@ msgid ""
760
  "reloaded/\">WordPress Plugin Directory</a>."
761
  msgstr ""
762
 
763
- #: wp-table-reloaded-admin.php:1239 wp-table-reloaded-admin.php:1333
764
  msgid ""
765
  "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-"
766
  "reloaded-english/documentation/\">documentation</a> or find out how to get "
@@ -768,17 +851,17 @@ msgid ""
768
  "english/support/\">support</a>."
769
  msgstr ""
770
 
771
- #: wp-table-reloaded-admin.php:1244
772
  msgid "Author and Licence"
773
  msgstr ""
774
 
775
- #: wp-table-reloaded-admin.php:1246
776
  msgid ""
777
  "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias "
778
  "B&auml;thge</a>. It is licenced as Free Software under GPL 2."
779
  msgstr ""
780
 
781
- #: wp-table-reloaded-admin.php:1246
782
  msgid ""
783
  "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/"
784
  "wordpress-plugins/donate/\"><strong>a donation</strong></a> and rate the "
@@ -786,180 +869,190 @@ msgid ""
786
  "reloaded/\">WordPress Plugin Directory</a>."
787
  msgstr ""
788
 
789
- #: wp-table-reloaded-admin.php:1246
790
  msgid ""
791
  "Donations and good ratings encourage me to further develop the plugin and to "
792
  "provide countless hours of support. Any amount is appreciated! Thanks!"
793
  msgstr ""
794
 
795
- #: wp-table-reloaded-admin.php:1251
796
  msgid "Credits and Thanks"
797
  msgstr ""
798
 
799
- #: wp-table-reloaded-admin.php:1254
800
  msgid ""
801
  "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for "
802
  "the original wp-Table plugin,"
803
  msgstr ""
804
 
805
- #: wp-table-reloaded-admin.php:1255
806
  msgid ""
807
  "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter "
808
  "jQuery plugin</a>,"
809
  msgstr ""
810
 
811
- #: wp-table-reloaded-admin.php:1256
812
  msgid "the submitters of translations:"
813
  msgstr ""
814
 
815
- #: wp-table-reloaded-admin.php:1257
816
  msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
817
  msgstr ""
818
 
819
- #: wp-table-reloaded-admin.php:1258
 
 
 
 
 
 
820
  msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
821
  msgstr ""
822
 
823
- #: wp-table-reloaded-admin.php:1259
824
  msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
825
  msgstr ""
826
 
827
- #: wp-table-reloaded-admin.php:1260
828
  msgid "Polish (thanks to Alex Kortan)"
829
  msgstr ""
830
 
831
- #: wp-table-reloaded-admin.php:1261
832
  msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
833
  msgstr ""
834
 
835
- #: wp-table-reloaded-admin.php:1262
836
  msgid ""
837
  "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro "
838
  "Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
839
  msgstr ""
840
 
841
- #: wp-table-reloaded-admin.php:1263
842
  msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
843
  msgstr ""
844
 
845
- #: wp-table-reloaded-admin.php:1264
846
  msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
847
  msgstr ""
848
 
849
- #: wp-table-reloaded-admin.php:1265
850
  msgid ""
851
  "and to all donors, contributors, supporters, reviewers and users of the "
852
  "plugin!"
853
  msgstr ""
854
 
855
- #: wp-table-reloaded-admin.php:1271
856
  msgid "Debug and Version Information"
857
  msgstr ""
858
 
859
- #: wp-table-reloaded-admin.php:1274
860
  msgid ""
861
  "You are using the following versions of the software. <strong>Please provide "
862
  "this information in bug reports.</strong>"
863
  msgstr ""
864
 
865
- #: wp-table-reloaded-admin.php:1319
866
  msgid "List Tables"
867
  msgstr ""
868
 
869
- #: wp-table-reloaded-admin.php:1324
870
  msgid "Plugin Options"
871
  msgstr ""
872
 
873
- #: wp-table-reloaded-admin.php:1325
874
  msgid "About the Plugin"
875
  msgstr ""
876
 
877
- #: wp-table-reloaded-admin.php:1333
878
  msgid ""
879
  "More information can be found on the <a href=\"http://tobias.baethge.com/"
880
  "wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
881
  msgstr ""
882
 
883
- #: wp-table-reloaded-admin.php:1542
884
  msgid ""
885
  "Do you really want to activate this? You should only do that right before "
886
  "uninstallation!"
887
  msgstr ""
888
 
889
- #: wp-table-reloaded-admin.php:1543
890
  msgid "URL of link to insert"
891
  msgstr ""
892
 
893
- #: wp-table-reloaded-admin.php:1544
894
  msgid "Text of link"
895
  msgstr ""
896
 
897
- #: wp-table-reloaded-admin.php:1545
898
  msgid ""
899
  "To insert the following link into a cell, just click the cell after closing "
900
  "this dialog."
901
  msgstr ""
902
 
903
- #: wp-table-reloaded-admin.php:1546
904
  msgid "URL of image to insert"
905
  msgstr ""
906
 
907
- #: wp-table-reloaded-admin.php:1547
908
  msgid "''alt'' text of the image"
909
  msgstr ""
910
 
911
- #: wp-table-reloaded-admin.php:1548
912
  msgid ""
913
  "To insert the following image into a cell, just click the cell after closing "
914
  "this dialog."
915
  msgstr ""
916
 
917
- #: wp-table-reloaded-admin.php:1549
918
  msgid "Do you want to copy the selected tables?"
919
  msgstr ""
920
 
921
- #: wp-table-reloaded-admin.php:1550
922
  msgid ""
923
  "The selected tables and all content will be erased. Do you really want to "
924
  "delete them?"
925
  msgstr ""
926
 
927
- #: wp-table-reloaded-admin.php:1551
928
  msgid ""
929
  "Do you really want to import the selected tables from the wp-Table plugin?"
930
  msgstr ""
931
 
932
- #: wp-table-reloaded-admin.php:1552
933
  msgid "Do you want to copy this table?"
934
  msgstr ""
935
 
936
- #: wp-table-reloaded-admin.php:1553
937
  msgid ""
938
  "The complete table and all content will be erased. Do you really want to "
939
  "delete it?"
940
  msgstr ""
941
 
942
- #: wp-table-reloaded-admin.php:1554
943
  msgid "Do you really want to delete this row?"
944
  msgstr ""
945
 
946
- #: wp-table-reloaded-admin.php:1555
947
  msgid "Do you really want to delete this column?"
948
  msgstr ""
949
 
950
- #: wp-table-reloaded-admin.php:1556
951
  msgid "Do you really want to import this table from the wp-Table plugin?"
952
  msgstr ""
953
 
954
- #: wp-table-reloaded-admin.php:1557
955
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
956
  msgstr ""
957
 
958
- #: wp-table-reloaded-admin.php:1558
959
  msgid "Are you really sure?"
960
  msgstr ""
961
 
962
- #: wp-table-reloaded-admin.php:1607
 
 
 
 
963
  msgid "Table"
964
  msgstr ""
965
 
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-06-09 09:55+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"
57
  msgid "Table \"%s\" added successfully."
58
  msgstr ""
59
 
60
+ #: wp-table-reloaded-admin.php:180
61
+ #, php-format
62
+ msgid ""
63
+ "Table edited successfully. This Table now has the ID %s. You'll need to "
64
+ "adjust existing shortcodes accordingly."
65
+ msgstr ""
66
+
67
+ #: wp-table-reloaded-admin.php:182
68
+ #, php-format
69
+ msgid ""
70
+ "The ID could not be changed from %s to %s, because there already is a Table "
71
+ "with that ID."
72
+ msgstr ""
73
+
74
+ #: wp-table-reloaded-admin.php:185
75
  msgid "Table edited successfully."
76
  msgstr ""
77
 
78
+ #: wp-table-reloaded-admin.php:208
79
  msgid "Rows swapped successfully."
80
  msgstr ""
81
 
82
+ #: wp-table-reloaded-admin.php:227
83
  msgid "Columns swapped successfully."
84
  msgstr ""
85
 
86
+ #: wp-table-reloaded-admin.php:245
87
  msgid "Table sorted successfully."
88
  msgstr ""
89
 
90
+ #: wp-table-reloaded-admin.php:258
91
+ msgid "Row added successfully."
92
+ msgid_plural "Rows added successfully."
93
+ msgstr[0] ""
94
+ msgstr[1] ""
95
+
96
+ #: wp-table-reloaded-admin.php:270
97
+ msgid "Column added successfully."
98
+ msgid_plural "Columns added successfully."
99
+ msgstr[0] ""
100
+ msgstr[1] ""
101
+
102
+ #: wp-table-reloaded-admin.php:305 wp-table-reloaded-admin.php:352
103
  msgid "Copy of"
104
  msgstr ""
105
 
106
+ #: wp-table-reloaded-admin.php:309
107
  msgid "Table copied successfully."
108
  msgid_plural "Tables copied successfully."
109
  msgstr[0] ""
110
  msgstr[1] ""
111
 
112
+ #: wp-table-reloaded-admin.php:315
113
  msgid "Table deleted successfully."
114
  msgid_plural "Tables deleted successfully."
115
  msgstr[0] ""
116
  msgstr[1] ""
117
 
118
+ #: wp-table-reloaded-admin.php:328 wp-table-reloaded-admin.php:511
119
+ #: wp-table-reloaded-admin.php:538
120
  msgid "Table imported successfully."
121
  msgid_plural "Tables imported successfully."
122
  msgstr[0] ""
123
  msgstr[1] ""
124
 
125
+ #: wp-table-reloaded-admin.php:335
126
  msgid "You did not select any tables!"
127
  msgstr ""
128
 
129
+ #: wp-table-reloaded-admin.php:357
130
  #, php-format
131
  msgid "Table \"%s\" copied successfully."
132
  msgstr ""
133
 
134
+ #: wp-table-reloaded-admin.php:373
135
  #, php-format
136
  msgid "Table \"%s\" deleted successfully."
137
  msgstr ""
138
 
139
+ #: wp-table-reloaded-admin.php:383
140
  msgid "Row deleted successfully."
141
  msgstr ""
142
 
143
+ #: wp-table-reloaded-admin.php:396
144
  msgid "Column deleted successfully."
145
  msgstr ""
146
 
147
+ #: wp-table-reloaded-admin.php:401
148
  msgid "Delete failed."
149
  msgstr ""
150
 
151
+ #: wp-table-reloaded-admin.php:426
152
  msgid "Row inserted successfully."
153
  msgstr ""
154
 
155
+ #: wp-table-reloaded-admin.php:435
156
  msgid "Column inserted successfully."
157
  msgstr ""
158
 
159
+ #: wp-table-reloaded-admin.php:438
160
  msgid "Insert failed."
161
  msgstr ""
162
 
163
+ #: wp-table-reloaded-admin.php:466 wp-table-reloaded-admin.php:475
164
+ #: wp-table-reloaded-admin.php:485
165
  msgid "Imported Table"
166
  msgstr ""
167
 
168
+ #: wp-table-reloaded-admin.php:467 wp-table-reloaded-admin.php:486
169
+ #, php-format
170
+ msgid "from %s"
171
+ msgstr ""
172
+
173
+ #: wp-table-reloaded-admin.php:476
174
  msgid "via form"
175
  msgstr ""
176
 
177
+ #: wp-table-reloaded-admin.php:495 wp-table-reloaded-admin.php:520
178
  msgid "Table could not be imported."
179
  msgstr ""
180
 
181
+ #: wp-table-reloaded-admin.php:507
182
+ #, php-format
183
+ msgid "Table %s (%s) replaced successfully."
184
+ msgstr ""
185
+
186
+ #: wp-table-reloaded-admin.php:565
187
  #, php-format
188
  msgid "Table \"%s\" exported successfully."
189
  msgstr ""
190
 
191
+ #: wp-table-reloaded-admin.php:593
192
  msgid "Options saved successfully."
193
  msgstr ""
194
 
195
  #. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
196
  #. Plugin Name of an extension
197
+ #: wp-table-reloaded-admin.php:611
198
  msgid "WP-Table Reloaded"
199
  msgstr ""
200
 
201
+ #: wp-table-reloaded-admin.php:612
202
  msgid "Plugin deactivated successfully."
203
  msgstr ""
204
 
205
+ #: wp-table-reloaded-admin.php:613
206
  msgid ""
207
  "All tables, data and options were deleted. You may now remove the plugin's "
208
  "subfolder from your WordPress plugin folder."
209
  msgstr ""
210
 
211
+ #: wp-table-reloaded-admin.php:629 wp-table-reloaded-admin.php:689
212
  msgid "List of Tables"
213
  msgstr ""
214
 
215
+ #: wp-table-reloaded-admin.php:631 wp-table-reloaded-admin.php:692
216
  msgid "This is a list of all available tables."
217
  msgstr ""
218
 
219
+ #: wp-table-reloaded-admin.php:631
220
  msgid "You may insert a table into a post or page here."
221
  msgstr ""
222
 
223
+ #: wp-table-reloaded-admin.php:632
224
  msgid ""
225
  "Click the \"Insert\" link after the desired table and the corresponding "
226
  "shortcode will be inserted into the editor (<strong>[table id=&lt;"
227
  "the_table_ID&gt; /]</strong>)."
228
  msgstr ""
229
 
230
+ #: wp-table-reloaded-admin.php:640 wp-table-reloaded-admin.php:704
231
+ #: wp-table-reloaded-admin.php:1135
232
  msgid "ID"
233
  msgstr ""
234
 
235
+ #: wp-table-reloaded-admin.php:641 wp-table-reloaded-admin.php:705
236
+ #: wp-table-reloaded-admin.php:773 wp-table-reloaded-admin.php:826
237
+ #: wp-table-reloaded-admin.php:1136
238
  msgid "Table Name"
239
  msgstr ""
240
 
241
+ #: wp-table-reloaded-admin.php:642 wp-table-reloaded-admin.php:706
242
+ #: wp-table-reloaded-admin.php:777 wp-table-reloaded-admin.php:830
243
+ #: wp-table-reloaded-admin.php:1137
244
  msgid "Description"
245
  msgstr ""
246
 
247
+ #: wp-table-reloaded-admin.php:643 wp-table-reloaded-admin.php:707
248
+ #: wp-table-reloaded-admin.php:1138
249
  msgid "Action"
250
  msgstr ""
251
 
252
+ #: wp-table-reloaded-admin.php:663
253
  msgid "Insert"
254
  msgstr ""
255
 
256
+ #: wp-table-reloaded-admin.php:672 wp-table-reloaded-admin.php:753
257
+ #: wp-table-reloaded-admin.php:1256
258
  msgid "No tables found."
259
  msgstr ""
260
 
261
+ #: wp-table-reloaded-admin.php:692
262
  msgid "You may add, edit, copy or delete tables here."
263
  msgstr ""
264
 
265
+ #: wp-table-reloaded-admin.php:693
266
  msgid ""
267
  "If you want to show a table in your pages, posts or text-widgets, use the "
268
  "shortcode <strong>[table id=&lt;the_table_ID&gt; /]</strong> or click the "
269
  "button \"Table\" in the editor toolbar."
270
  msgstr ""
271
 
272
+ #: wp-table-reloaded-admin.php:733
273
  msgid "Edit"
274
  msgstr ""
275
 
276
+ #: wp-table-reloaded-admin.php:734
277
  msgid "Copy"
278
  msgstr ""
279
 
280
+ #: wp-table-reloaded-admin.php:735
281
  msgid "Export"
282
  msgstr ""
283
 
284
+ #: wp-table-reloaded-admin.php:736
285
  msgid "Delete"
286
  msgstr ""
287
 
288
+ #: wp-table-reloaded-admin.php:744 wp-table-reloaded-admin.php:1167
289
  msgid "Bulk actions:"
290
  msgstr ""
291
 
292
+ #: wp-table-reloaded-admin.php:744
293
  msgid "Copy Tables"
294
  msgstr ""
295
 
296
+ #: wp-table-reloaded-admin.php:744
297
  msgid "Delete Tables"
298
  msgstr ""
299
 
300
+ #: wp-table-reloaded-admin.php:753 wp-table-reloaded-admin.php:1256
301
  #, php-format
302
  msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
303
  msgstr ""
304
 
305
+ #: wp-table-reloaded-admin.php:761 wp-table-reloaded-admin.php:1443
306
  msgid "Add new Table"
307
  msgstr ""
308
 
309
+ #: wp-table-reloaded-admin.php:765
310
  msgid ""
311
  "You can add a new table here. Just enter it's name, a description (optional) "
312
  "and the number of rows and columns.<br/>You may add, insert or delete rows "
313
  "and columns later."
314
  msgstr ""
315
 
316
+ #: wp-table-reloaded-admin.php:774
317
  msgid "Enter Table Name"
318
  msgstr ""
319
 
320
+ #: wp-table-reloaded-admin.php:778
321
  msgid "Enter Description"
322
  msgstr ""
323
 
324
+ #: wp-table-reloaded-admin.php:781
325
  msgid "Number of Rows"
326
  msgstr ""
327
 
328
+ #: wp-table-reloaded-admin.php:785
329
  msgid "Number of Columns"
330
  msgstr ""
331
 
332
+ #: wp-table-reloaded-admin.php:792
333
  msgid "Add Table"
334
  msgstr ""
335
 
336
+ #: wp-table-reloaded-admin.php:809
337
  #, php-format
338
  msgid "Edit Table \"%s\""
339
  msgstr ""
340
 
341
+ #: wp-table-reloaded-admin.php:812
342
  msgid ""
343
  "You may edit the content of the table here. It is also possible to add or "
344
  "delete columns and rows."
345
  msgstr ""
346
 
347
+ #: wp-table-reloaded-admin.php:813
348
  #, php-format
349
  msgid ""
350
  "If you want to show a table in your pages, posts or text-widgets, use this "
351
  "shortcode: <strong>[table id=%s /]</strong>"
352
  msgstr ""
353
 
354
+ #: wp-table-reloaded-admin.php:818
355
  msgid "Table Information"
356
  msgstr ""
357
 
358
+ #: wp-table-reloaded-admin.php:822
359
+ msgid "Table ID"
360
+ msgstr ""
361
+
362
+ #: wp-table-reloaded-admin.php:838 wp-table-reloaded-admin.php:1014
363
  msgid "Update Changes"
364
  msgstr ""
365
 
366
+ #: wp-table-reloaded-admin.php:839 wp-table-reloaded-admin.php:1015
367
  msgid "Save and go back"
368
  msgstr ""
369
 
370
+ #: wp-table-reloaded-admin.php:842 wp-table-reloaded-admin.php:1018
371
  msgid "Cancel"
372
  msgstr ""
373
 
374
+ #: wp-table-reloaded-admin.php:848
375
  msgid "Table Contents"
376
  msgstr ""
377
 
378
+ #: wp-table-reloaded-admin.php:848 wp-table-reloaded-admin.php:914
379
+ #: wp-table-reloaded-admin.php:983 wp-table-reloaded-admin.php:1394
380
  msgid "Hide"
381
  msgstr ""
382
 
383
+ #: wp-table-reloaded-admin.php:848 wp-table-reloaded-admin.php:914
384
+ #: wp-table-reloaded-admin.php:983 wp-table-reloaded-admin.php:1394
385
  msgid "Expand"
386
  msgstr ""
387
 
388
+ #: wp-table-reloaded-admin.php:877
389
  msgid "Insert Row"
390
  msgstr ""
391
 
392
+ #: wp-table-reloaded-admin.php:879
393
  msgid "Delete Row"
394
  msgstr ""
395
 
396
+ #: wp-table-reloaded-admin.php:889
397
  msgid "Insert Column"
398
  msgstr ""
399
 
400
+ #: wp-table-reloaded-admin.php:891
401
  msgid "Delete Column"
402
  msgstr ""
403
 
404
+ #: wp-table-reloaded-admin.php:901
405
+ #, php-format
406
+ msgid "Add %s row(s)"
407
  msgstr ""
408
 
409
+ #: wp-table-reloaded-admin.php:902 wp-table-reloaded-admin.php:904
410
+ msgid "Add"
411
+ msgstr ""
412
+
413
+ #: wp-table-reloaded-admin.php:903
414
+ #, php-format
415
+ msgid "Add %s column(s)"
416
  msgstr ""
417
 
418
+ #: wp-table-reloaded-admin.php:914
419
  msgid "Data Manipulation"
420
  msgstr ""
421
 
422
+ #: wp-table-reloaded-admin.php:929
423
  #, php-format
424
  msgid "Swap rows %s and %s"
425
  msgstr ""
426
 
427
+ #: wp-table-reloaded-admin.php:932 wp-table-reloaded-admin.php:952
428
  msgid "Swap"
429
  msgstr ""
430
 
431
+ #: wp-table-reloaded-admin.php:949
432
  #, php-format
433
  msgid "Swap columns %s and %s"
434
  msgstr ""
435
 
436
+ #: wp-table-reloaded-admin.php:955
437
  msgid "Insert Link"
438
  msgstr ""
439
 
440
+ #: wp-table-reloaded-admin.php:955
441
  msgid "Insert Image"
442
  msgstr ""
443
 
444
+ #: wp-table-reloaded-admin.php:966
445
  msgid "ascending"
446
  msgstr ""
447
 
448
+ #: wp-table-reloaded-admin.php:967
449
  msgid "descending"
450
  msgstr ""
451
 
452
+ #: wp-table-reloaded-admin.php:970
453
  #, php-format
454
  msgid "Sort table by column %s in %s order"
455
  msgstr ""
456
 
457
+ #: wp-table-reloaded-admin.php:973
458
  msgid "Sort"
459
  msgstr ""
460
 
461
+ #: wp-table-reloaded-admin.php:983
462
  msgid "Table Settings"
463
  msgstr ""
464
 
465
+ #: wp-table-reloaded-admin.php:985
466
  msgid "These settings will only be used for this table."
467
  msgstr ""
468
 
469
+ #: wp-table-reloaded-admin.php:988
470
  msgid "Alternating row colors"
471
  msgstr ""
472
 
473
+ #: wp-table-reloaded-admin.php:989
474
  msgid "Every second row will have an alternating background color."
475
  msgstr ""
476
 
477
+ #: wp-table-reloaded-admin.php:992
478
  msgid "Use Table Headline"
479
  msgstr ""
480
 
481
+ #: wp-table-reloaded-admin.php:993
482
  msgid "The first row of your table will use the [th] tag."
483
  msgstr ""
484
 
485
+ #: wp-table-reloaded-admin.php:996
486
  msgid "Print Table Name"
487
  msgstr ""
488
 
489
+ #: wp-table-reloaded-admin.php:997
490
  msgid "The Table Name will be written above the table in a [h2] tag."
491
  msgstr ""
492
 
493
+ #: wp-table-reloaded-admin.php:1000
494
  msgid "Print Table Description"
495
  msgstr ""
496
 
497
+ #: wp-table-reloaded-admin.php:1001
498
  msgid "The Table Description will be written under the table."
499
  msgstr ""
500
 
501
+ #: wp-table-reloaded-admin.php:1004
502
  msgid "Use Tablesorter"
503
  msgstr ""
504
 
505
+ #: wp-table-reloaded-admin.php:1005
506
  msgid ""
507
  "You may sort a table using the <a href=\"http://www.tablesorter.com/"
508
  "\">Tablesorter-jQuery-Plugin</a>. <small>Attention: You must have "
510
  "Table Headline\" has to be enabled above for this to work!</small>"
511
  msgstr ""
512
 
513
+ #: wp-table-reloaded-admin.php:1020
514
  msgid "Other actions"
515
  msgstr ""
516
 
517
+ #: wp-table-reloaded-admin.php:1023
518
  msgid "Delete Table"
519
  msgstr ""
520
 
521
+ #: wp-table-reloaded-admin.php:1024 wp-table-reloaded-admin.php:1245
522
  msgid "Export Table"
523
  msgstr ""
524
 
525
+ #: wp-table-reloaded-admin.php:1035 wp-table-reloaded-admin.php:1444
526
  msgid "Import a Table"
527
  msgstr ""
528
 
529
+ #: wp-table-reloaded-admin.php:1039
530
  msgid ""
531
  "You may import a table from existing data here.<br/>It may be a CSV, XML or "
532
  "HTML file. It needs a certain structure though. Please consult the "
533
  "documentation."
534
  msgstr ""
535
 
536
+ #: wp-table-reloaded-admin.php:1046
537
  msgid "Select Import Format"
538
  msgstr ""
539
 
540
+ #: wp-table-reloaded-admin.php:1056
541
+ msgid "Add or Replace Table?"
542
+ msgstr ""
543
+
544
+ #: wp-table-reloaded-admin.php:1058
545
+ msgid "Add as new Table"
546
+ msgstr ""
547
+
548
+ #: wp-table-reloaded-admin.php:1059
549
+ msgid "Replace existing Table"
550
+ msgstr ""
551
+
552
+ #: wp-table-reloaded-admin.php:1063
553
+ msgid "Select existing Table to Replace"
554
+ msgstr ""
555
+
556
+ #: wp-table-reloaded-admin.php:1078
557
+ msgid "Select source for import"
558
+ msgstr ""
559
+
560
+ #: wp-table-reloaded-admin.php:1080
561
+ msgid "File upload"
562
+ msgstr ""
563
+
564
+ #: wp-table-reloaded-admin.php:1082
565
+ msgid "URL"
566
+ msgstr ""
567
+
568
+ #: wp-table-reloaded-admin.php:1084
569
+ msgid "Manual input"
570
+ msgstr ""
571
+
572
+ #: wp-table-reloaded-admin.php:1085
573
+ msgid "File on server"
574
+ msgstr ""
575
+
576
+ #: wp-table-reloaded-admin.php:1089
577
  msgid "Select File with Table to Import"
578
  msgstr ""
579
 
580
+ #: wp-table-reloaded-admin.php:1094
581
+ msgid "URL to import table from"
582
  msgstr ""
583
 
584
+ #: wp-table-reloaded-admin.php:1099
585
+ msgid "Path to file on server"
586
  msgstr ""
587
 
588
+ #: wp-table-reloaded-admin.php:1103
589
  msgid "Paste data with Table to Import"
590
  msgstr ""
591
 
592
+ #: wp-table-reloaded-admin.php:1109
593
  msgid "Import Table"
594
  msgstr ""
595
 
596
+ #: wp-table-reloaded-admin.php:1122
597
  msgid "Import from original wp-Table plugin"
598
  msgstr ""
599
 
600
+ #: wp-table-reloaded-admin.php:1159
601
  msgid "Import"
602
  msgstr ""
603
 
604
+ #: wp-table-reloaded-admin.php:1167
605
  msgid "Import Tables"
606
  msgstr ""
607
 
608
+ #: wp-table-reloaded-admin.php:1173
609
  msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
610
  msgstr ""
611
 
612
+ #: wp-table-reloaded-admin.php:1192 wp-table-reloaded-admin.php:1445
613
  msgid "Export a Table"
614
  msgstr ""
615
 
616
+ #: wp-table-reloaded-admin.php:1196
617
  msgid ""
618
  "You may export a table here. Just select the table, your desired export "
619
  "format and a delimiter (needed for CSV only).<br/>You may opt to download "
620
  "the export file. Otherwise it will be shown on this page."
621
  msgstr ""
622
 
623
+ #: wp-table-reloaded-admin.php:1204
624
  msgid "Select Table to Export"
625
  msgstr ""
626
 
627
+ #: wp-table-reloaded-admin.php:1219
628
  msgid "Select Export Format"
629
  msgstr ""
630
 
631
+ #: wp-table-reloaded-admin.php:1229
632
  msgid "Select Delimiter to use"
633
  msgstr ""
634
 
635
+ #: wp-table-reloaded-admin.php:1236
636
  msgid "<small>(Only needed for CSV export.)</small>"
637
  msgstr ""
638
 
639
+ #: wp-table-reloaded-admin.php:1239
640
  msgid "Download file"
641
  msgstr ""
642
 
643
+ #: wp-table-reloaded-admin.php:1240
644
  msgid "Yes, I want to download the export file."
645
  msgstr ""
646
 
647
+ #: wp-table-reloaded-admin.php:1265
648
  msgid "General Plugin Options"
649
  msgstr ""
650
 
651
+ #: wp-table-reloaded-admin.php:1269
652
  msgid ""
653
  "You may change these global options.<br/>They will effect all tables or the "
654
  "general plugin behaviour."
655
  msgstr ""
656
 
657
+ #: wp-table-reloaded-admin.php:1276
658
  msgid "Frontend Options"
659
  msgstr ""
660
 
661
+ #: wp-table-reloaded-admin.php:1280
662
  msgid "Enable Tablesorter-JavaScript?"
663
  msgstr ""
664
 
665
+ #: wp-table-reloaded-admin.php:1281
666
  msgid ""
667
  "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery "
668
  "plugin</a>. This can be used to make tables sortable (can be activated for "
669
  "each table separately in its options)."
670
  msgstr ""
671
 
672
+ #: wp-table-reloaded-admin.php:1284
673
  msgid "Add custom CSS?"
674
  msgstr ""
675
 
676
+ #: wp-table-reloaded-admin.php:1286
677
  msgid ""
678
  "Yes, include and load the following CSS-snippet on my site inside a [style]-"
679
  "HTML-tag."
680
  msgstr ""
681
 
682
+ #: wp-table-reloaded-admin.php:1291
683
  msgid "Enter custom CSS"
684
  msgstr ""
685
 
686
+ #: wp-table-reloaded-admin.php:1293
687
  #, php-format
688
  msgid ""
689
  "(You might get a better website performance, if you add the CSS styling to "
690
  "your theme's \"style.css\" <small>(located at %s)</small>) instead."
691
  msgstr ""
692
 
693
+ #: wp-table-reloaded-admin.php:1294
694
  #, php-format
695
  msgid ""
696
  "See the <a href=\"%s\">plugin website</a> for styling examples or use one of "
698
  "Style 2</a>"
699
  msgstr ""
700
 
701
+ #: wp-table-reloaded-admin.php:1294
702
  msgid "Just copy the contents of a file into the textarea."
703
  msgstr ""
704
 
705
+ #: wp-table-reloaded-admin.php:1302
706
  msgid "Admin Options"
707
  msgstr ""
708
 
709
+ #: wp-table-reloaded-admin.php:1306
710
  msgid "Uninstall Plugin upon Deactivation?"
711
  msgstr ""
712
 
713
+ #: wp-table-reloaded-admin.php:1307
714
  msgid ""
715
  "Yes, uninstall everything when the plugin is deactivated. Attention: You "
716
  "should only enable this checkbox directly before deactivating the plugin "
717
  "from the WordPress plugins page!"
718
  msgstr ""
719
 
720
+ #: wp-table-reloaded-admin.php:1307
721
  msgid ""
722
  "<small>(This setting does not influence the \"Manually Uninstall Plugin\" "
723
  "button below!)</small>"
724
  msgstr ""
725
 
726
+ #: wp-table-reloaded-admin.php:1317
727
  msgid "Save Options"
728
  msgstr ""
729
 
730
+ #: wp-table-reloaded-admin.php:1323
731
  msgid "Manually Uninstall Plugin"
732
  msgstr ""
733
 
734
+ #: wp-table-reloaded-admin.php:1325
735
  msgid ""
736
  "You may uninstall the plugin here. This <strong>will delete</strong> all "
737
  "tables, data, options, etc., that belong to the plugin, including all tables "
739
  "button if you know what you are doing!"
740
  msgstr ""
741
 
742
+ #: wp-table-reloaded-admin.php:1328
743
  msgid "Uninstall Plugin WP-Table Reloaded"
744
  msgstr ""
745
 
746
+ #: wp-table-reloaded-admin.php:1339
747
  msgid "Information about the plugin"
748
  msgstr ""
749
 
750
+ #: wp-table-reloaded-admin.php:1345
751
  msgid "Plugin Purpose"
752
  msgstr ""
753
 
754
+ #: wp-table-reloaded-admin.php:1347
755
  msgid ""
756
  "This plugin allows you to create and manage tables in the admin-area of "
757
  "WordPress."
758
  msgstr ""
759
 
760
+ #: wp-table-reloaded-admin.php:1347
761
  msgid ""
762
  "Those tables may contain strings, numbers and even HTML (e.g. to include "
763
  "images or links)."
764
  msgstr ""
765
 
766
+ #: wp-table-reloaded-admin.php:1347
767
  msgid ""
768
  "You can then show the tables in your posts, on your pages or in text widgets "
769
  "by using a shortcode."
770
  msgstr ""
771
 
772
+ #: wp-table-reloaded-admin.php:1347
773
  msgid ""
774
  "If you want to show your tables anywhere else in your theme, you can use a "
775
  "template tag function."
776
  msgstr ""
777
 
778
+ #: wp-table-reloaded-admin.php:1352
779
  msgid "Usage"
780
  msgstr ""
781
 
782
+ #: wp-table-reloaded-admin.php:1354
783
  msgid "At first you should add or import a table."
784
  msgstr ""
785
 
786
+ #: wp-table-reloaded-admin.php:1354
787
  msgid ""
788
  "This means that you either let the plugin create an empty table for you or "
789
  "that you load an existing table from either a CSV, XML or HTML file."
790
  msgstr ""
791
 
792
+ #: wp-table-reloaded-admin.php:1354
793
  msgid ""
794
  "Then you can edit your data or change the structure of your table (e.g. by "
795
  "inserting or deleting rows or columns, swaping rows or columns or sorting "
797
  "whether to print the name or description, if you want."
798
  msgstr ""
799
 
800
+ #: wp-table-reloaded-admin.php:1354
801
  msgid ""
802
  "To easily add a link or an image to a cell, use the provided buttons. Those "
803
  "will ask you for the URL and a title. Then you can click into a cell and the "
804
  "corresponding HTML will be added to it for you."
805
  msgstr ""
806
 
807
+ #: wp-table-reloaded-admin.php:1354
808
  msgid ""
809
  "To include the table into your posts, pages or text widgets, write the "
810
  "shortcode [table id=&lt;table-id&gt;] into them."
811
  msgstr ""
812
 
813
+ #: wp-table-reloaded-admin.php:1354
814
  msgid ""
815
  "You can also select the desired table from a list (after clicking the button "
816
  "\"Table\" in the editor toolbar) and the corresponding shortcode will be "
817
  "added for you."
818
  msgstr ""
819
 
820
+ #: wp-table-reloaded-admin.php:1354
821
  msgid ""
822
  "You may also style your table via CSS. Example files are provided on the "
823
  "plugin website. Every table has the CSS class \"wp-table-reloaded\". Each "
824
  "table also has the class \"wp-table-reloaded-&lt;table-id&gt;\"."
825
  msgstr ""
826
 
827
+ #: wp-table-reloaded-admin.php:1354
828
  msgid ""
829
  "You can also use the classes \"column-&lt;number&gt;\" and \"row-&lt;"
830
  "number&gt;\" to style rows and columns individually. Use this to style "
831
  "columns width and text alignment for example."
832
  msgstr ""
833
 
834
+ #: wp-table-reloaded-admin.php:1359
835
  msgid "More Information and Documentation"
836
  msgstr ""
837
 
838
+ #: wp-table-reloaded-admin.php:1361
839
  msgid ""
840
  "More information can be found on the <a href=\"http://tobias.baethge.com/"
841
  "wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a> or on "
843
  "reloaded/\">WordPress Plugin Directory</a>."
844
  msgstr ""
845
 
846
+ #: wp-table-reloaded-admin.php:1361 wp-table-reloaded-admin.php:1456
847
  msgid ""
848
  "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-"
849
  "reloaded-english/documentation/\">documentation</a> or find out how to get "
851
  "english/support/\">support</a>."
852
  msgstr ""
853
 
854
+ #: wp-table-reloaded-admin.php:1366
855
  msgid "Author and Licence"
856
  msgstr ""
857
 
858
+ #: wp-table-reloaded-admin.php:1368
859
  msgid ""
860
  "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias "
861
  "B&auml;thge</a>. It is licenced as Free Software under GPL 2."
862
  msgstr ""
863
 
864
+ #: wp-table-reloaded-admin.php:1368
865
  msgid ""
866
  "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/"
867
  "wordpress-plugins/donate/\"><strong>a donation</strong></a> and rate the "
869
  "reloaded/\">WordPress Plugin Directory</a>."
870
  msgstr ""
871
 
872
+ #: wp-table-reloaded-admin.php:1368
873
  msgid ""
874
  "Donations and good ratings encourage me to further develop the plugin and to "
875
  "provide countless hours of support. Any amount is appreciated! Thanks!"
876
  msgstr ""
877
 
878
+ #: wp-table-reloaded-admin.php:1373
879
  msgid "Credits and Thanks"
880
  msgstr ""
881
 
882
+ #: wp-table-reloaded-admin.php:1376
883
  msgid ""
884
  "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for "
885
  "the original wp-Table plugin,"
886
  msgstr ""
887
 
888
+ #: wp-table-reloaded-admin.php:1377
889
  msgid ""
890
  "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter "
891
  "jQuery plugin</a>,"
892
  msgstr ""
893
 
894
+ #: wp-table-reloaded-admin.php:1378
895
  msgid "the submitters of translations:"
896
  msgstr ""
897
 
898
+ #: wp-table-reloaded-admin.php:1379
899
  msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
900
  msgstr ""
901
 
902
+ #: wp-table-reloaded-admin.php:1380
903
+ msgid ""
904
+ "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/\">Rics</"
905
+ "a>)"
906
+ msgstr ""
907
+
908
+ #: wp-table-reloaded-admin.php:1381
909
  msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
910
  msgstr ""
911
 
912
+ #: wp-table-reloaded-admin.php:1382
913
  msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
914
  msgstr ""
915
 
916
+ #: wp-table-reloaded-admin.php:1383
917
  msgid "Polish (thanks to Alex Kortan)"
918
  msgstr ""
919
 
920
+ #: wp-table-reloaded-admin.php:1384
921
  msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
922
  msgstr ""
923
 
924
+ #: wp-table-reloaded-admin.php:1385
925
  msgid ""
926
  "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro "
927
  "Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
928
  msgstr ""
929
 
930
+ #: wp-table-reloaded-admin.php:1386
931
  msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
932
  msgstr ""
933
 
934
+ #: wp-table-reloaded-admin.php:1387
935
  msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
936
  msgstr ""
937
 
938
+ #: wp-table-reloaded-admin.php:1388
939
  msgid ""
940
  "and to all donors, contributors, supporters, reviewers and users of the "
941
  "plugin!"
942
  msgstr ""
943
 
944
+ #: wp-table-reloaded-admin.php:1394
945
  msgid "Debug and Version Information"
946
  msgstr ""
947
 
948
+ #: wp-table-reloaded-admin.php:1397
949
  msgid ""
950
  "You are using the following versions of the software. <strong>Please provide "
951
  "this information in bug reports.</strong>"
952
  msgstr ""
953
 
954
+ #: wp-table-reloaded-admin.php:1442
955
  msgid "List Tables"
956
  msgstr ""
957
 
958
+ #: wp-table-reloaded-admin.php:1447
959
  msgid "Plugin Options"
960
  msgstr ""
961
 
962
+ #: wp-table-reloaded-admin.php:1448
963
  msgid "About the Plugin"
964
  msgstr ""
965
 
966
+ #: wp-table-reloaded-admin.php:1456
967
  msgid ""
968
  "More information can be found on the <a href=\"http://tobias.baethge.com/"
969
  "wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
970
  msgstr ""
971
 
972
+ #: wp-table-reloaded-admin.php:1682
973
  msgid ""
974
  "Do you really want to activate this? You should only do that right before "
975
  "uninstallation!"
976
  msgstr ""
977
 
978
+ #: wp-table-reloaded-admin.php:1683
979
  msgid "URL of link to insert"
980
  msgstr ""
981
 
982
+ #: wp-table-reloaded-admin.php:1684
983
  msgid "Text of link"
984
  msgstr ""
985
 
986
+ #: wp-table-reloaded-admin.php:1685
987
  msgid ""
988
  "To insert the following link into a cell, just click the cell after closing "
989
  "this dialog."
990
  msgstr ""
991
 
992
+ #: wp-table-reloaded-admin.php:1686
993
  msgid "URL of image to insert"
994
  msgstr ""
995
 
996
+ #: wp-table-reloaded-admin.php:1687
997
  msgid "''alt'' text of the image"
998
  msgstr ""
999
 
1000
+ #: wp-table-reloaded-admin.php:1688
1001
  msgid ""
1002
  "To insert the following image into a cell, just click the cell after closing "
1003
  "this dialog."
1004
  msgstr ""
1005
 
1006
+ #: wp-table-reloaded-admin.php:1689
1007
  msgid "Do you want to copy the selected tables?"
1008
  msgstr ""
1009
 
1010
+ #: wp-table-reloaded-admin.php:1690
1011
  msgid ""
1012
  "The selected tables and all content will be erased. Do you really want to "
1013
  "delete them?"
1014
  msgstr ""
1015
 
1016
+ #: wp-table-reloaded-admin.php:1691
1017
  msgid ""
1018
  "Do you really want to import the selected tables from the wp-Table plugin?"
1019
  msgstr ""
1020
 
1021
+ #: wp-table-reloaded-admin.php:1692
1022
  msgid "Do you want to copy this table?"
1023
  msgstr ""
1024
 
1025
+ #: wp-table-reloaded-admin.php:1693
1026
  msgid ""
1027
  "The complete table and all content will be erased. Do you really want to "
1028
  "delete it?"
1029
  msgstr ""
1030
 
1031
+ #: wp-table-reloaded-admin.php:1694
1032
  msgid "Do you really want to delete this row?"
1033
  msgstr ""
1034
 
1035
+ #: wp-table-reloaded-admin.php:1695
1036
  msgid "Do you really want to delete this column?"
1037
  msgstr ""
1038
 
1039
+ #: wp-table-reloaded-admin.php:1696
1040
  msgid "Do you really want to import this table from the wp-Table plugin?"
1041
  msgstr ""
1042
 
1043
+ #: wp-table-reloaded-admin.php:1697
1044
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
1045
  msgstr ""
1046
 
1047
+ #: wp-table-reloaded-admin.php:1698
1048
  msgid "Are you really sure?"
1049
  msgstr ""
1050
 
1051
+ #: wp-table-reloaded-admin.php:1699
1052
+ msgid "Do you really want to change the ID of the table?"
1053
+ msgstr ""
1054
+
1055
+ #: wp-table-reloaded-admin.php:1748
1056
  msgid "Table"
1057
  msgstr ""
1058
 
php/arraysort.class.php CHANGED
@@ -3,7 +3,7 @@
3
  File Name: WP-Table Reloaded - array sort 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.2
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
3
  File Name: WP-Table Reloaded - array sort 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.3
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
php/wp-table-reloaded-export.class.php CHANGED
@@ -3,7 +3,7 @@
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.2
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
@@ -12,7 +12,7 @@ Author URI: http://tobias.baethge.com/
12
  class WP_Table_Reloaded_Export {
13
 
14
  // ###################################################################################################################
15
- var $export_class_version = '1.2';
16
 
17
  var $export_formats = array();
18
  var $delimiters = array();
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.3
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
12
  class WP_Table_Reloaded_Export {
13
 
14
  // ###################################################################################################################
15
+ var $export_class_version = '1.3';
16
 
17
  var $export_formats = array();
18
  var $delimiters = array();
php/wp-table-reloaded-import.class.php CHANGED
@@ -3,7 +3,7 @@
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.2
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
@@ -12,7 +12,7 @@ Author URI: http://tobias.baethge.com/
12
  class WP_Table_Reloaded_Import {
13
 
14
  // ###################################################################################################################
15
- var $import_class_version = '1.2';
16
 
17
  // possible import formats
18
  var $import_formats = array();
@@ -69,10 +69,18 @@ class WP_Table_Reloaded_Import {
69
 
70
  $parseCSV = $this->create_class_instance( 'parseCSV', 'parsecsv.class.php' );
71
 
72
- if ( 'form-field' == $this->import_from )
73
- $temp_data = $this->import_data;
74
- elseif ( 'file-upload' == $this->import_from )
75
- $temp_data = file_get_contents( $this->tempname );
 
 
 
 
 
 
 
 
76
 
77
  $parseCSV->heading = false; // means: treat first row like all others
78
  $parseCSV->encoding( 'ISO-8859-1', 'UTF-8' ); // might need to play with this a little or offer an option
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.3
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
12
  class WP_Table_Reloaded_Import {
13
 
14
  // ###################################################################################################################
15
+ var $import_class_version = '1.3';
16
 
17
  // possible import formats
18
  var $import_formats = array();
69
 
70
  $parseCSV = $this->create_class_instance( 'parseCSV', 'parsecsv.class.php' );
71
 
72
+ switch ( $this->import_from ) {
73
+ case 'form-field':
74
+ case 'url':
75
+ $temp_data = $this->import_data;
76
+ break;
77
+ case 'file-upload':
78
+ case 'server':
79
+ $temp_data = file_get_contents( $this->tempname );
80
+ break;
81
+ default:
82
+ exit; // this should never happen
83
+ }
84
 
85
  $parseCSV->heading = false; // means: treat first row like all others
86
  $parseCSV->encoding( 'ISO-8859-1', 'UTF-8' ); // might need to play with this a little or offer an option
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.2.1
8
 
9
  WP-Table Reloaded enables you to create and manage tables in your WP's admin area. No HTML knowledge is needed. A comfortable backend allows to easily edit table data. You can include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML.
10
 
@@ -75,7 +75,7 @@ In short: WordPress 2.5 or higher
75
  = Languages and Localization? =
76
 
77
  The plugin currently includes the following languages:
78
- Albanian, Czech, English, French, German, Polish, 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.
@@ -111,11 +111,49 @@ I kindly ask you for link somewhere on your website http://tobias.baethge.com/.
111
 
112
  == Changelog ==
113
 
114
- * 1.2.1: fixed syntax errors that appeared for some users, added Polish language file
115
- * 1.2: editor toolbar button to insert tables; bulk actions; improved CSS and JS loading and performance; template tag function; new CSV import/export class; table specific settings can be overwritten by shortcode parameters; new language: Czech; fixed a few minor bugs; smaller enhancements and text corrections
116
- * 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
117
- * 1.0(.1): Language files, more import/export (including directly from wp-Table!), shortcode supported in text widgets
118
- * 0.9.2: fixed bug with plugin deactivation hook, added missing css-file
119
- * 0.9.1: first good release with all mentioned functions working well
120
- * 0.9 beta 1b: small bug which prevented showing of tables (but still not everything implemented)
121
- * 0.9 beta 1: First release (not everything functional)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.3
8
 
9
  WP-Table Reloaded enables you to create and manage tables in your WP's admin area. No HTML knowledge is needed. A comfortable backend allows to easily edit table data. You can include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML.
10
 
75
  = Languages and Localization? =
76
 
77
  The plugin currently includes the following languages:
78
+ Albanian, Belorussian, Brazilian Portuguese, Czech, English, French, German, Polish, 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.
111
 
112
  == Changelog ==
113
 
114
+ = Version 1.3 =
115
+ * fixed bug with shortcode in text widgets for WP 2.8
116
+ * added Brazilian Portuguese language file
117
+ * fixed small bug with "Table" button in editor toolbar
118
+ * table ID can now be changed and existing tables can be replaced upon import
119
+ * possibility to add multiple rows/columns; import from URLs/webserver
120
+ * WordPress shortcodes are supported within table cells
121
+ * inputs are now textareas to allow easier editing of larger texts
122
+
123
+ = Version 1.2.1 =
124
+ * fixed syntax errors that appeared for some users
125
+ * added Polish language file
126
+
127
+ = Version 1.2 =
128
+ * editor toolbar button to insert tables
129
+ * bulk actions
130
+ * improved CSS and JS loading and performance
131
+ * template tag function; new CSV import/export class
132
+ * table specific settings can be overwritten by shortcode parameters
133
+ * new language: Czech
134
+ * fixed a few minor bugs
135
+ * smaller enhancements and text corrections
136
+
137
+ = Version 1.1 =
138
+ * changed way of CSS handling (database option instead of file)
139
+ * fixed bug for users with PHP4 (certain function doesn't exist there)
140
+ * added two additional shortcode parameters
141
+ * added buttons to easily add links and images
142
+
143
+ = Version 1.0(.1) =
144
+ * Language files
145
+ * more import/export (including directly from wp-Table!)
146
+ * shortcode supported in text widgets
147
+
148
+ = Version 0.9.2 =
149
+ * fixed bug with plugin deactivation hook
150
+ * added missing css-file
151
+
152
+ = Version 0.9.1 =
153
+ * first good release with all mentioned functions working well
154
+
155
+ = Version 0.9 beta 1b =
156
+ * small bug which prevented showing of tables (but still not everything implemented)
157
+
158
+ = Version 0.9 beta 1 =
159
+ * First release (not everything functional)
screenshot-3.png CHANGED
Binary file
screenshot-4.png CHANGED
Binary file
wp-table-reloaded-admin.php CHANGED
@@ -3,7 +3,7 @@
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: Description: This plugin allows you to create and easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML.
6
- Version: 1.2.1
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
@@ -13,7 +13,7 @@ define( 'WP_TABLE_RELOADED_TEXTDOMAIN', 'wp-table-reloaded' );
13
  class WP_Table_Reloaded_Admin {
14
 
15
  // ###################################################################################################################
16
- var $plugin_version = '1.2.1';
17
  // nonce for security of links/forms, try to prevent "CSRF"
18
  var $nonce_base = 'wp-table-reloaded-nonce';
19
  // names for the options which are stored in the WP database
@@ -168,13 +168,28 @@ class WP_Table_Reloaded_Admin {
168
  case 'update':
169
  case 'save_back':
170
  $table = $_POST['table']; // careful here to not miss any stuff!!! (options, etc.)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
171
  $table['options']['alternating_row_colors'] = isset( $_POST['table']['options']['alternating_row_colors'] );
172
  $table['options']['first_row_th'] = isset( $_POST['table']['options']['first_row_th'] );
173
  $table['options']['print_name'] = isset( $_POST['table']['options']['print_name'] );
174
  $table['options']['print_description'] = isset( $_POST['table']['options']['print_description'] );
175
  $table['options']['use_tablesorter'] = isset( $_POST['table']['options']['use_tablesorter'] );
176
  $this->save_table( $table );
177
- $message = __( 'Table edited successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
178
  break;
179
  case 'swap_rows':
180
  $table_id = $_POST['table']['id'];
@@ -229,6 +244,31 @@ class WP_Table_Reloaded_Admin {
229
  $this->save_table( $table );
230
  $message = __( 'Table sorted successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
231
  break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
232
  default:
233
  $this->do_action_list();
234
  }
@@ -270,11 +310,8 @@ class WP_Table_Reloaded_Admin {
270
  break;
271
  case 'delete': // see do_action_delete for explanations
272
  foreach ( $_POST['tables'] as $table_id ) {
273
- $this->tables[ $table_id ] = ( isset( $this->tables[ $table_id ] ) ) ? $this->tables[ $table_id ] : $this->optionname['table'] . '_' . $table_id;
274
- delete_option( $this->tables[ $table_id ] );
275
- unset( $this->tables[ $table_id ] );
276
  }
277
- $this->update_tables();
278
  $message = __ngettext( 'Table deleted successfully.', 'Tables deleted successfully.', count( $_POST['tables'] ), WP_TABLE_RELOADED_TEXTDOMAIN );
279
  break;
280
  case 'wp_table_import': // see do_action_import for explanations
@@ -332,10 +369,7 @@ class WP_Table_Reloaded_Admin {
332
 
333
  switch( $_GET['item'] ) {
334
  case 'table':
335
- $this->tables[ $table_id ] = ( isset( $this->tables[ $table_id ] ) ) ? $this->tables[ $table_id ] : $this->optionname['table'] . '_' . $table_id;
336
- delete_option( $this->tables[ $table_id ] );
337
- unset( $this->tables[ $table_id ] );
338
- $this->update_tables();
339
  $this->print_success_message( sprintf( __( 'Table "%s" deleted successfully.', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->safe_output( $table['name'] ) ) );
340
  $this->do_action_list();
341
  break;
@@ -413,11 +447,11 @@ class WP_Table_Reloaded_Admin {
413
  // ###################################################################################################################
414
  function do_action_import() {
415
  $this->import_instance = $this->create_class_instance( 'WP_Table_Reloaded_Import', 'wp-table-reloaded-import.class.php' );
416
- if ( isset( $_POST['submit'] ) && ( isset( $_FILES['import_file'] ) || isset( $_POST['import_data'] ) ) ) {
417
  check_admin_referer( $this->get_nonce( 'import' ) );
418
 
419
  // do import
420
- if ( false == empty( $_FILES['import_file']['tmp_name'] ) ) {
421
  $this->import_instance->tempname = $_FILES['import_file']['tmp_name'];
422
  $this->import_instance->filename = $_FILES['import_file']['name'];
423
  $this->import_instance->mimetype = $_FILES['import_file']['type'];
@@ -427,7 +461,16 @@ class WP_Table_Reloaded_Admin {
427
  $error = $this->import_instance->error;
428
  $imported_table = $this->import_instance->imported_table;
429
  $this->import_instance->unlink_uploaded_file();
430
- } elseif ( isset( $_POST['import_data'] ) ) {
 
 
 
 
 
 
 
 
 
431
  $this->import_instance->tempname = '';
432
  $this->import_instance->filename = __( 'Imported Table', WP_TABLE_RELOADED_TEXTDOMAIN );
433
  $this->import_instance->mimetype = __( 'via form', WP_TABLE_RELOADED_TEXTDOMAIN );
@@ -437,16 +480,41 @@ class WP_Table_Reloaded_Admin {
437
  $this->import_instance->import_table();
438
  $error = $this->import_instance->error;
439
  $imported_table = $this->import_instance->imported_table;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
440
  }
441
 
442
  $table = array_merge( $this->default_table, $imported_table );
443
 
444
- $table['id'] = $this->get_new_table_id();
 
 
 
 
 
 
 
 
 
 
445
 
446
  $this->save_table( $table );
447
 
448
  if ( false == $error ) {
449
- $this->print_success_message( __( 'Table imported successfully.', WP_TABLE_RELOADED_TEXTDOMAIN ) );
450
  $this->print_edit_table_form( $table['id'] );
451
  } else {
452
  $this->print_success_message( __( 'Table could not be imported.', WP_TABLE_RELOADED_TEXTDOMAIN ) );
@@ -590,9 +658,9 @@ class WP_Table_Reloaded_Admin {
590
 
591
  echo "<tr{$bg_style}>\n";
592
  echo "\t<th scope=\"row\">{$id}</th>";
593
- echo "<td>{$name}</td>";
594
- echo "<td>{$description}</td>";
595
- echo "<td><a class=\"send_table_to_editor\" title=\"{$id}\" href=\"#\" style=\"color:#21759B;\">" . __( 'Insert', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a></td>\n";
596
  echo "</tr>\n";
597
  }
598
  ?>
@@ -738,7 +806,7 @@ class WP_Table_Reloaded_Admin {
738
  $rows = count( $table['data'] );
739
  $cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
740
 
741
- $this->print_page_header( sprintf( __( 'Edit Table "%s"', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->safe_output( $table['name'] ) ) );
742
  $this->print_submenu_navigation( 'edit' );
743
  ?>
744
  <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 />
@@ -750,6 +818,10 @@ class WP_Table_Reloaded_Admin {
750
  <h3 class="hndle"><span><?php _e( 'Table Information', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span></h3>
751
  <div class="inside">
752
  <table class="wp-table-reloaded-options">
 
 
 
 
753
  <tr valign="top">
754
  <th scope="row"><label for="table[name]"><?php _e( 'Table Name', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
755
  <td><input type="text" name="table[name]" id="table[name]" value="<?php echo $this->safe_output( $table['name'] ); ?>" style="width:250px" /></td>
@@ -797,7 +869,8 @@ class WP_Table_Reloaded_Admin {
797
  foreach ( $table_row as $col_idx => $cell_content ) {
798
  $cell_content = $this->safe_output( $cell_content );
799
  $cell_name = "table[data][{$row_idx}][{$col_idx}]";
800
- echo "\t<td><input type=\"text\" name=\"{$cell_name}\" value=\"{$cell_content}\" /></td>\n";
 
801
  }
802
  $insert_row_url = $this->get_action_url( array( 'action' => 'insert', 'table_id' => $table['id'], 'item' => 'row', 'element_id' => $row_idx ), true );
803
  $delete_row_url = $this->get_action_url( array( 'action' => 'delete', 'table_id' => $table['id'], 'item' => 'row', 'element_id' => $row_idx ), true );
@@ -818,9 +891,18 @@ class WP_Table_Reloaded_Admin {
818
  echo " | <a class=\"delete_column_link\" href=\"{$delete_col_url}\">" . __('Delete Column', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
819
  echo "</td>\n";
820
  }
821
- $add_row_url = $this->get_action_url( array( 'action' => 'insert', 'table_id' => $table['id'],'item' => 'row', 'element_id' => $rows ), true ); // number of $rows is equal to new row's id
822
- $add_col_url = $this->get_action_url( array( 'action' => 'insert', 'table_id' => $table['id'],'item' => 'col', 'element_id' => $cols ), true ); // number of $cols is equal to new col's id
823
- echo "\t<td><a href=\"{$add_row_url}\">" . __( 'Add Row', WP_TABLE_RELOADED_TEXTDOMAIN )."</a> | <a href=\"{$add_col_url}\">" . __( 'Add Column', WP_TABLE_RELOADED_TEXTDOMAIN )."</a></td>\n";
 
 
 
 
 
 
 
 
 
824
  echo "</tr>";
825
  ?>
826
  </tbody>
@@ -970,15 +1052,54 @@ class WP_Table_Reloaded_Admin {
970
  ?>
971
  </select></td>
972
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
973
  <tr valign="top" class="tr-import-file">
974
  <th scope="row"><label for="import_file"><?php _e( 'Select File with Table to Import', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
975
  <td><input name="import_file" id="import_file" type="file" /></td>
976
  </tr>
977
- <tr valign="top">
978
- <th scope="row" style="text-align:center;"><strong><?php _e( '- or -', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></strong></th>
979
- <td><small><?php _e( '(upload will be preferred over pasting)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></td>
 
 
 
 
 
 
980
  </tr>
981
- <tr valign="top" class="tr-import-data">
982
  <th scope="row" style="vertical-align:top;"><label for="import_data"><?php _e( 'Paste data with Table to Import', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
983
  <td><textarea name="import_data" id="import_data" rows="15" cols="40" style="width:600px;height:300px;"></textarea></td>
984
  </tr>
@@ -1256,6 +1377,8 @@ class WP_Table_Reloaded_Admin {
1256
  <?php _e( 'Christian Bach for the <a href="http://www.tablesorter.com/">Tablesorter jQuery plugin</a>,', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/>
1257
  <?php _e( 'the submitters of translations:', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1258
  <br/>&middot; <?php _e( 'Albanian (thanks to <a href="http://www.romeolab.com/">Romeo</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
 
 
1259
  <br/>&middot; <?php _e( 'Czech (thanks to <a href="http://separatista.net/">Separatista</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1260
  <br/>&middot; <?php _e( 'French (thanks to <a href="http://ultratrailer.net/">Yin-Yin</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1261
  <br/>&middot; <?php _e( 'Polish (thanks to Alex Kortan)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
@@ -1345,9 +1468,18 @@ TEXT;
1345
  // ######################################### ####################################################
1346
  // ###################################################################################################################
1347
 
 
 
 
 
 
 
1348
  // ###################################################################################################################
1349
  function get_new_table_id() {
1350
- $this->options['last_id'] = $this->options['last_id'] + 1;
 
 
 
1351
  $this->update_options();
1352
  return $this->options['last_id'];
1353
  }
@@ -1358,7 +1490,6 @@ TEXT;
1358
  return array_fill( 0, $num_rows, array_fill( 0, $num_cols, $default_cell_content ) );
1359
  }
1360
 
1361
-
1362
  // ###################################################################################################################
1363
  function update_options() {
1364
  update_option( $this->optionname['options'], $this->options );
@@ -1366,6 +1497,7 @@ TEXT;
1366
 
1367
  // ###################################################################################################################
1368
  function update_tables() {
 
1369
  update_option( $this->optionname['tables'], $this->tables );
1370
  }
1371
 
@@ -1389,6 +1521,14 @@ TEXT;
1389
  }
1390
  }
1391
 
 
 
 
 
 
 
 
 
1392
  // ###################################################################################################################
1393
  // need to clean this up and find out what's really necessary
1394
  function prepare_download( $filename, $filesize, $filetype ) {
@@ -1537,7 +1677,7 @@ TEXT;
1537
  function add_manage_page_js() {
1538
  $jsfile = 'admin-script.js';
1539
  if ( file_exists( WP_TABLE_RELOADED_ABSPATH . 'admin/' . $jsfile ) ) {
1540
- wp_register_script( 'wp-table-reloaded-admin-js', WP_TABLE_RELOADED_URL . 'admin/' . $jsfile, array( 'jquery' ) );
1541
  // add all strings to translate here
1542
  wp_localize_script( 'wp-table-reloaded-admin-js', 'WP_Table_Reloaded_Admin', array(
1543
  'str_UninstallCheckboxActivation' => __( 'Do you really want to activate this? You should only do that right before uninstallation!', WP_TABLE_RELOADED_TEXTDOMAIN ),
@@ -1556,7 +1696,8 @@ TEXT;
1556
  'str_DeleteColumnLink' => __( 'Do you really want to delete this column?', WP_TABLE_RELOADED_TEXTDOMAIN ),
1557
  'str_ImportwpTableLink' => __( 'Do you really want to import this table from the wp-Table plugin?', WP_TABLE_RELOADED_TEXTDOMAIN ),
1558
  'str_UninstallPluginLink_1' => __( 'Do you really want to uninstall the plugin and delete ALL data?', WP_TABLE_RELOADED_TEXTDOMAIN ),
1559
- 'str_UninstallPluginLink_2' => __( 'Are you really sure?', WP_TABLE_RELOADED_TEXTDOMAIN )
 
1560
  ) );
1561
  wp_print_scripts( 'wp-table-reloaded-admin-js' );
1562
  }
@@ -1568,7 +1709,7 @@ TEXT;
1568
  $cssfile = 'admin-style.css';
1569
  if ( file_exists( WP_TABLE_RELOADED_ABSPATH . 'admin/' . $cssfile ) ) {
1570
  if ( function_exists( 'wp_enqueue_style' ) )
1571
- wp_enqueue_style( 'wp-table-reloaded-admin-css', WP_TABLE_RELOADED_URL . 'admin/' . $cssfile );
1572
  else
1573
  add_action( 'admin_head', array( &$this, 'print_admin_style' ) );
1574
  }
@@ -1602,7 +1743,7 @@ TEXT;
1602
 
1603
  $jsfile = 'admin-editor-buttons-script.js';
1604
  if ( file_exists( WP_TABLE_RELOADED_ABSPATH . 'admin/' . $jsfile ) ) {
1605
- wp_register_script( 'wp-table-reloaded-admin-editor-buttons-js', WP_TABLE_RELOADED_URL . 'admin/' . $jsfile, array( 'jquery', 'thickbox' ) );
1606
  // add all strings to translate here
1607
  wp_localize_script( 'wp-table-reloaded-admin-editor-buttons-js', 'WP_Table_Reloaded_Admin', array(
1608
  'str_EditorButtonCaption' => __( 'Table', WP_TABLE_RELOADED_TEXTDOMAIN ),
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: Description: This plugin allows you to create and easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML.
6
+ Version: 1.3
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
13
  class WP_Table_Reloaded_Admin {
14
 
15
  // ###################################################################################################################
16
+ var $plugin_version = '1.3';
17
  // nonce for security of links/forms, try to prevent "CSRF"
18
  var $nonce_base = 'wp-table-reloaded-nonce';
19
  // names for the options which are stored in the WP database
168
  case 'update':
169
  case 'save_back':
170
  $table = $_POST['table']; // careful here to not miss any stuff!!! (options, etc.)
171
+ // do we want to change the ID?
172
+ $new_table_id = ( isset( $_POST['table_id'] ) ) ? $_POST['table_id'] : $table['id'] ;
173
+ if ( $new_table_id != $table['id'] && is_numeric( $new_table_id ) && ( 0 < $new_table_id ) ) {
174
+ if ( false === $this->table_exists( $new_table_id ) ) {
175
+ // delete table with old ID
176
+ $old_table_id = $table['id'];
177
+ $this->delete_table( $old_table_id );
178
+ // set new table ID
179
+ $table['id'] = $new_table_id;
180
+ $message = sprintf( __( "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly.", WP_TABLE_RELOADED_TEXTDOMAIN ), $new_table_id );
181
+ } else {
182
+ $message = sprintf( __( 'The ID could not be changed from %s to %s, because there already is a Table with that ID.', WP_TABLE_RELOADED_TEXTDOMAIN ), $table['id'], $new_table_id );
183
+ }
184
+ } else {
185
+ $message = __( 'Table edited successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
186
+ }
187
  $table['options']['alternating_row_colors'] = isset( $_POST['table']['options']['alternating_row_colors'] );
188
  $table['options']['first_row_th'] = isset( $_POST['table']['options']['first_row_th'] );
189
  $table['options']['print_name'] = isset( $_POST['table']['options']['print_name'] );
190
  $table['options']['print_description'] = isset( $_POST['table']['options']['print_description'] );
191
  $table['options']['use_tablesorter'] = isset( $_POST['table']['options']['use_tablesorter'] );
192
  $this->save_table( $table );
 
193
  break;
194
  case 'swap_rows':
195
  $table_id = $_POST['table']['id'];
244
  $this->save_table( $table );
245
  $message = __( 'Table sorted successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
246
  break;
247
+ case 'insert_rows':
248
+ $table_id = $_POST['table']['id'];
249
+ $number = ( isset( $_POST['insert']['row']['number'] ) && ( 0 < isset( $_POST['insert']['row']['number'] ) ) ) ? $_POST['insert']['row']['number'] : 1;
250
+ $row_id = $_POST['insert']['row']['id'];
251
+ $table = $this->load_table( $table_id );
252
+ $rows = count( $table['data'] );
253
+ $cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
254
+ // init new empty row (with all columns) and insert it before row with key $row_id
255
+ $new_rows = $this->create_empty_table( $number, $cols, '' );
256
+ array_splice( $table['data'], $row_id, 0, $new_rows );
257
+ $this->save_table( $table );
258
+ $message = __ngettext( 'Row added successfully.', 'Rows added successfully.', $number, WP_TABLE_RELOADED_TEXTDOMAIN );
259
+ break;
260
+ case 'insert_cols':
261
+ $table_id = $_POST['table']['id'];
262
+ $number = ( isset( $_POST['insert']['col']['number'] ) && ( 0 < isset( $_POST['insert']['col']['number'] ) ) ) ? $_POST['insert']['col']['number'] : 1;
263
+ $col_id = $_POST['insert']['col']['id'];
264
+ $table = $this->load_table( $table_id );
265
+ // init new empty row (with all columns) and insert it before row with key $row_id
266
+ $new_col = array_fill( 0, $number, '' );
267
+ foreach ( $table['data'] as $row_idx => $row )
268
+ array_splice( $table['data'][$row_idx], $col_id, 0, $new_col );
269
+ $this->save_table( $table );
270
+ $message = __ngettext( 'Column added successfully.', 'Columns added successfully.', $number, WP_TABLE_RELOADED_TEXTDOMAIN );
271
+ break;
272
  default:
273
  $this->do_action_list();
274
  }
310
  break;
311
  case 'delete': // see do_action_delete for explanations
312
  foreach ( $_POST['tables'] as $table_id ) {
313
+ $this->delete_table( $table_id );
 
 
314
  }
 
315
  $message = __ngettext( 'Table deleted successfully.', 'Tables deleted successfully.', count( $_POST['tables'] ), WP_TABLE_RELOADED_TEXTDOMAIN );
316
  break;
317
  case 'wp_table_import': // see do_action_import for explanations
369
 
370
  switch( $_GET['item'] ) {
371
  case 'table':
372
+ $this->delete_table( $table_id );
 
 
 
373
  $this->print_success_message( sprintf( __( 'Table "%s" deleted successfully.', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->safe_output( $table['name'] ) ) );
374
  $this->do_action_list();
375
  break;
447
  // ###################################################################################################################
448
  function do_action_import() {
449
  $this->import_instance = $this->create_class_instance( 'WP_Table_Reloaded_Import', 'wp-table-reloaded-import.class.php' );
450
+ if ( isset( $_POST['submit'] ) && isset( $_POST['import_from'] ) ) {
451
  check_admin_referer( $this->get_nonce( 'import' ) );
452
 
453
  // do import
454
+ if ( 'file-upload' == $_POST['import_from'] && false === empty( $_FILES['import_file']['tmp_name'] ) ) {
455
  $this->import_instance->tempname = $_FILES['import_file']['tmp_name'];
456
  $this->import_instance->filename = $_FILES['import_file']['name'];
457
  $this->import_instance->mimetype = $_FILES['import_file']['type'];
461
  $error = $this->import_instance->error;
462
  $imported_table = $this->import_instance->imported_table;
463
  $this->import_instance->unlink_uploaded_file();
464
+ } elseif ( 'server' == $_POST['import_from'] && false === empty( $_POST['import_server'] ) ) {
465
+ $this->import_instance->tempname = $_POST['import_server'];
466
+ $this->import_instance->filename = __( 'Imported Table', WP_TABLE_RELOADED_TEXTDOMAIN );
467
+ $this->import_instance->mimetype = sprintf( __( 'from %s', WP_TABLE_RELOADED_TEXTDOMAIN ), $_POST['import_server'] );
468
+ $this->import_instance->import_from = 'server';
469
+ $this->import_instance->import_format = $_POST['import_format'];
470
+ $this->import_instance->import_table();
471
+ $error = $this->import_instance->error;
472
+ $imported_table = $this->import_instance->imported_table;
473
+ } elseif ( 'form-field' == $_POST['import_from'] && false === empty( $_POST['import_data'] ) ) {
474
  $this->import_instance->tempname = '';
475
  $this->import_instance->filename = __( 'Imported Table', WP_TABLE_RELOADED_TEXTDOMAIN );
476
  $this->import_instance->mimetype = __( 'via form', WP_TABLE_RELOADED_TEXTDOMAIN );
480
  $this->import_instance->import_table();
481
  $error = $this->import_instance->error;
482
  $imported_table = $this->import_instance->imported_table;
483
+ } elseif ( 'url' == $_POST['import_from'] && false === empty( $_POST['import_url'] ) ) {
484
+ $this->import_instance->tempname = '';
485
+ $this->import_instance->filename = __( 'Imported Table', WP_TABLE_RELOADED_TEXTDOMAIN );
486
+ $this->import_instance->mimetype = sprintf( __( 'from %s', WP_TABLE_RELOADED_TEXTDOMAIN ), $_POST['import_url'] );
487
+ $this->import_instance->import_from = 'url';
488
+ $url = clean_url( $_POST['import_url'] );
489
+ $this->import_instance->import_data = wp_remote_retrieve_body( wp_remote_get( $url ) );
490
+ $this->import_instance->import_format = $_POST['import_format'];
491
+ $this->import_instance->import_table();
492
+ $error = $this->import_instance->error;
493
+ $imported_table = $this->import_instance->imported_table;
494
+ } else { // no valid data submitted
495
+ $this->print_success_message( __( 'Table could not be imported.', WP_TABLE_RELOADED_TEXTDOMAIN ) );
496
+ $this->print_import_table_form();
497
+ exit;
498
  }
499
 
500
  $table = array_merge( $this->default_table, $imported_table );
501
 
502
+ if ( isset( $_POST['import_addreplace'] ) && isset( $_POST['import_addreplace_table'] ) && ( 'replace' == $_POST['import_addreplace'] ) && $this->table_exists( $_POST['import_addreplace_table'] ) ) {
503
+ $existing_table = $this->load_table( $_POST['import_addreplace_table'] );
504
+ $table['id'] = $existing_table['id'];
505
+ $table['name'] = $existing_table['name'];
506
+ $table['description'] = $existing_table['description'];
507
+ $success_message = sprintf( __( 'Table %s (%s) replaced successfully.', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->safe_output( $table['name'] ), $this->safe_output( $table['id'] ) );
508
+ unset( $existing_table );
509
+ } else {
510
+ $table['id'] = $this->get_new_table_id();
511
+ $success_message = sprintf( __( 'Table imported successfully.', WP_TABLE_RELOADED_TEXTDOMAIN ) );
512
+ }
513
 
514
  $this->save_table( $table );
515
 
516
  if ( false == $error ) {
517
+ $this->print_success_message( $success_message );
518
  $this->print_edit_table_form( $table['id'] );
519
  } else {
520
  $this->print_success_message( __( 'Table could not be imported.', WP_TABLE_RELOADED_TEXTDOMAIN ) );
658
 
659
  echo "<tr{$bg_style}>\n";
660
  echo "\t<th scope=\"row\">{$id}</th>";
661
+ echo "<td style=\"vertical-align:baseline;\">{$name}</td>";
662
+ echo "<td style=\"vertical-align:baseline;\">{$description}</td>";
663
+ echo "<td style=\"vertical-align:baseline;\"><a class=\"send_table_to_editor\" title=\"{$id}\" href=\"#\" style=\"color:#21759B;\">" . __( 'Insert', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a></td>\n";
664
  echo "</tr>\n";
665
  }
666
  ?>
806
  $rows = count( $table['data'] );
807
  $cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
808
 
809
+ $this->print_page_header( sprintf( __( 'Edit Table "%s"', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->safe_output( $table['name'] ) ) . " (ID " . $this->safe_output( $table['id'] ) . ")" );
810
  $this->print_submenu_navigation( 'edit' );
811
  ?>
812
  <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 />
818
  <h3 class="hndle"><span><?php _e( 'Table Information', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span></h3>
819
  <div class="inside">
820
  <table class="wp-table-reloaded-options">
821
+ <tr valign="top">
822
+ <th scope="row"><label for="table_id"><?php _e( 'Table ID', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
823
+ <td><input type="text" name="table_id" id="table_id" value="<?php echo $this->safe_output( $table['id'] ); ?>" style="width:250px" /></td>
824
+ </tr>
825
  <tr valign="top">
826
  <th scope="row"><label for="table[name]"><?php _e( 'Table Name', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
827
  <td><input type="text" name="table[name]" id="table[name]" value="<?php echo $this->safe_output( $table['name'] ); ?>" style="width:250px" /></td>
869
  foreach ( $table_row as $col_idx => $cell_content ) {
870
  $cell_content = $this->safe_output( $cell_content );
871
  $cell_name = "table[data][{$row_idx}][{$col_idx}]";
872
+ //echo "\t<td><input type=\"text\" name=\"{$cell_name}\" value=\"{$cell_content}\" /></td>\n";
873
+ echo "\t<td><textarea rows=\"1\" cols=\"22\" name=\"{$cell_name}\">{$cell_content}</textarea></td>\n";
874
  }
875
  $insert_row_url = $this->get_action_url( array( 'action' => 'insert', 'table_id' => $table['id'], 'item' => 'row', 'element_id' => $row_idx ), true );
876
  $delete_row_url = $this->get_action_url( array( 'action' => 'delete', 'table_id' => $table['id'], 'item' => 'row', 'element_id' => $row_idx ), true );
891
  echo " | <a class=\"delete_column_link\" href=\"{$delete_col_url}\">" . __('Delete Column', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
892
  echo "</td>\n";
893
  }
894
+
895
+ // add rows/columns buttons
896
+ echo "\t<td><input type=\"hidden\" name=\"insert[row][id]\" value=\"{$rows}\" /><input type=\"hidden\" name=\"insert[col][id]\" value=\"{$cols}\" />";
897
+
898
+ $row_insert = '<input type="text" name="insert[row][number]" value="1" style="width:30px" />';
899
+ $col_insert = '<input type="text" name="insert[col][number]" value="1" style="width:30px" />';
900
+ ?>
901
+ <?php echo sprintf( __( 'Add %s row(s)', WP_TABLE_RELOADED_TEXTDOMAIN ), $row_insert ); ?>
902
+ <input type="submit" name="submit[insert_rows]" class="button-primary" value="<?php _e( 'Add', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" /><br/>
903
+ <?php echo sprintf( __( 'Add %s column(s)', WP_TABLE_RELOADED_TEXTDOMAIN ), $col_insert ); ?>
904
+ <input type="submit" name="submit[insert_cols]" class="button-primary" value="<?php _e( 'Add', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" /></td>
905
+ <?php
906
  echo "</tr>";
907
  ?>
908
  </tbody>
1052
  ?>
1053
  </select></td>
1054
  </tr>
1055
+ <tr valign="top" class="tr-import-addreplace">
1056
+ <th scope="row" style="min-width:350px;"><?php _e( 'Add or Replace Table?', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
1057
+ <td>
1058
+ <input name="import_addreplace" id="import_addreplace_add" type="radio" value="add" <?php echo ( 'replace' != $_POST['import_from'] ) ? 'checked="checked" ': '' ; ?>/> <label for="import_addreplace_add"><?php _e( 'Add as new Table', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label>
1059
+ <input name="import_addreplace" id="import_addreplace_replace" type="radio" value="replace" <?php echo ( 'replace' == $_POST['import_from'] ) ? 'checked="checked" ': '' ; ?>/> <label for="import_addreplace_replace"><?php _e( 'Replace existing Table', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label>
1060
+ </td>
1061
+ </tr>
1062
+ <tr valign="top" class="tr-import-addreplace-table">
1063
+ <th scope="row"><label for="import_addreplace_table"><?php _e( 'Select existing Table to Replace', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
1064
+ <td><select id="import_addreplace_table" name="import_addreplace_table">
1065
+ <?php
1066
+ foreach ( $this->tables as $id => $tableoptionname ) {
1067
+ // get name and description to show in list
1068
+ $table = $this->load_table( $id );
1069
+ $name = $this->safe_output( $table['name'] );
1070
+ //$description = $this->safe_output( $table['description'] );
1071
+ unset( $table );
1072
+ echo "<option" . ( ( $id == $_POST['import_replace_table'] ) ? ' selected="selected"': '' ) . " value=\"{$id}\">{$name} (ID {$id})</option>";
1073
+ }
1074
+ ?>
1075
+ </select></td>
1076
+ </tr>
1077
+ <tr valign="top" class="tr-import-from">
1078
+ <th scope="row" style="min-width:350px;"><?php _e( 'Select source for import', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
1079
+ <td>
1080
+ <input name="import_from" id="import_from_file" type="radio" value="file-upload" <?php echo ( ( 'url' == $_POST['import_from'] ) || ( 'form-field' == $_POST['import_from'] ) || ( 'server' == $_POST['import_from'] ))? '' :'checked="checked" ' ; ?>/> <label for="import_from_file"><?php _e( 'File upload', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label>
1081
+ <?php if ( version_compare( '2.7', $wp_version, '>=') ) { ?>
1082
+ <input name="import_from" id="import_from_url" type="radio" value="url" <?php echo ( 'url' == $_POST['import_from'] ) ? 'checked="checked" ': '' ; ?>/> <label for="import_from_url"><?php _e( 'URL', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label>
1083
+ <?php } ?>
1084
+ <input name="import_from" id="import_from_field" type="radio" value="form-field" <?php echo ( 'form-field' == $_POST['import_from'] ) ? 'checked="checked" ': '' ; ?>/> <label for="import_from_field"><?php _e( 'Manual input', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label>
1085
+ <input name="import_from" id="import_from_server" type="radio" value="server" <?php echo ( 'server' == $_POST['import_from'] ) ? 'checked="checked" ': '' ; ?>/> <label for="import_from_server"><?php _e( 'File on server', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label>
1086
+ </td>
1087
+ </tr>
1088
  <tr valign="top" class="tr-import-file">
1089
  <th scope="row"><label for="import_file"><?php _e( 'Select File with Table to Import', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
1090
  <td><input name="import_file" id="import_file" type="file" /></td>
1091
  </tr>
1092
+ <?php if ( version_compare( '2.7', $wp_version, '>=') ) { ?>
1093
+ <tr valign="top" class="tr-import-url">
1094
+ <th scope="row"><label for="import_url"><?php _e( 'URL to import table from', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
1095
+ <td><input type="text" name="import_url" id="import_url" style="width:400px;" value="<?php echo ( isset( $_POST['import_url'] ) ) ? $_POST['import_url'] : 'http://' ; ?>" /></td>
1096
+ </tr>
1097
+ <?php } ?>
1098
+ <tr valign="top" class="tr-import-server">
1099
+ <th scope="row"><label for="import_server"><?php _e( 'Path to file on server', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
1100
+ <td><input type="text" name="import_server" id="import_server" style="width:400px;" value="<?php echo ( isset( $_POST['import_server'] ) ) ? $_POST['import_server'] : '' ; ?>" /></td>
1101
  </tr>
1102
+ <tr valign="top" class="tr-import-field">
1103
  <th scope="row" style="vertical-align:top;"><label for="import_data"><?php _e( 'Paste data with Table to Import', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
1104
  <td><textarea name="import_data" id="import_data" rows="15" cols="40" style="width:600px;height:300px;"></textarea></td>
1105
  </tr>
1377
  <?php _e( 'Christian Bach for the <a href="http://www.tablesorter.com/">Tablesorter jQuery plugin</a>,', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/>
1378
  <?php _e( 'the submitters of translations:', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1379
  <br/>&middot; <?php _e( 'Albanian (thanks to <a href="http://www.romeolab.com/">Romeo</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1380
+ <br/>&middot; <?php _e( 'Belorussian (thanks to <a href="http://www.fatcow.com/">Marcis Gasuns</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1381
+ <br/>&middot; <?php _e( 'Brazilian Portugues (thanks to <a href="http://www.pensarics.com/">Rics</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1382
  <br/>&middot; <?php _e( 'Czech (thanks to <a href="http://separatista.net/">Separatista</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1383
  <br/>&middot; <?php _e( 'French (thanks to <a href="http://ultratrailer.net/">Yin-Yin</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1384
  <br/>&middot; <?php _e( 'Polish (thanks to Alex Kortan)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1468
  // ######################################### ####################################################
1469
  // ###################################################################################################################
1470
 
1471
+ // ###################################################################################################################
1472
+ // check, if given table id really exists
1473
+ function table_exists( $table_id ) {
1474
+ return isset( $this->tables[ $table_id ] );
1475
+ }
1476
+
1477
  // ###################################################################################################################
1478
  function get_new_table_id() {
1479
+ // need to check new ID, because a higher one might have been used by manually changing an existing ID
1480
+ do {
1481
+ $this->options['last_id'] = $this->options['last_id'] + 1;
1482
+ } while ( $this->table_exists( $this->options['last_id'] ) );
1483
  $this->update_options();
1484
  return $this->options['last_id'];
1485
  }
1490
  return array_fill( 0, $num_rows, array_fill( 0, $num_cols, $default_cell_content ) );
1491
  }
1492
 
 
1493
  // ###################################################################################################################
1494
  function update_options() {
1495
  update_option( $this->optionname['options'], $this->options );
1497
 
1498
  // ###################################################################################################################
1499
  function update_tables() {
1500
+ ksort( $this->tables, SORT_NUMERIC ); // sort for table IDs, as one with a small ID might have been appended
1501
  update_option( $this->optionname['tables'], $this->tables );
1502
  }
1503
 
1521
  }
1522
  }
1523
 
1524
+ // ###################################################################################################################
1525
+ function delete_table( $table_id ) {
1526
+ $this->tables[ $table_id ] = ( isset( $this->tables[ $table_id ] ) ) ? $this->tables[ $table_id ] : $this->optionname['table'] . '_' . $table_id;
1527
+ delete_option( $this->tables[ $table_id ] );
1528
+ unset( $this->tables[ $table_id ] );
1529
+ $this->update_tables();
1530
+ }
1531
+
1532
  // ###################################################################################################################
1533
  // need to clean this up and find out what's really necessary
1534
  function prepare_download( $filename, $filesize, $filetype ) {
1677
  function add_manage_page_js() {
1678
  $jsfile = 'admin-script.js';
1679
  if ( file_exists( WP_TABLE_RELOADED_ABSPATH . 'admin/' . $jsfile ) ) {
1680
+ wp_register_script( 'wp-table-reloaded-admin-js', WP_TABLE_RELOADED_URL . 'admin/' . $jsfile, array( 'jquery' ), $this->plugin_version );
1681
  // add all strings to translate here
1682
  wp_localize_script( 'wp-table-reloaded-admin-js', 'WP_Table_Reloaded_Admin', array(
1683
  'str_UninstallCheckboxActivation' => __( 'Do you really want to activate this? You should only do that right before uninstallation!', WP_TABLE_RELOADED_TEXTDOMAIN ),
1696
  'str_DeleteColumnLink' => __( 'Do you really want to delete this column?', WP_TABLE_RELOADED_TEXTDOMAIN ),
1697
  'str_ImportwpTableLink' => __( 'Do you really want to import this table from the wp-Table plugin?', WP_TABLE_RELOADED_TEXTDOMAIN ),
1698
  'str_UninstallPluginLink_1' => __( 'Do you really want to uninstall the plugin and delete ALL data?', WP_TABLE_RELOADED_TEXTDOMAIN ),
1699
+ 'str_UninstallPluginLink_2' => __( 'Are you really sure?', WP_TABLE_RELOADED_TEXTDOMAIN ),
1700
+ 'str_ChangeTableID' => __( 'Do you really want to change the ID of the table?', WP_TABLE_RELOADED_TEXTDOMAIN )
1701
  ) );
1702
  wp_print_scripts( 'wp-table-reloaded-admin-js' );
1703
  }
1709
  $cssfile = 'admin-style.css';
1710
  if ( file_exists( WP_TABLE_RELOADED_ABSPATH . 'admin/' . $cssfile ) ) {
1711
  if ( function_exists( 'wp_enqueue_style' ) )
1712
+ wp_enqueue_style( 'wp-table-reloaded-admin-css', WP_TABLE_RELOADED_URL . 'admin/' . $cssfile, array(), $this->plugin_version );
1713
  else
1714
  add_action( 'admin_head', array( &$this, 'print_admin_style' ) );
1715
  }
1743
 
1744
  $jsfile = 'admin-editor-buttons-script.js';
1745
  if ( file_exists( WP_TABLE_RELOADED_ABSPATH . 'admin/' . $jsfile ) ) {
1746
+ wp_register_script( 'wp-table-reloaded-admin-editor-buttons-js', WP_TABLE_RELOADED_URL . 'admin/' . $jsfile, array( 'jquery', 'thickbox' ), $this->plugin_version );
1747
  // add all strings to translate here
1748
  wp_localize_script( 'wp-table-reloaded-admin-editor-buttons-js', 'WP_Table_Reloaded_Admin', array(
1749
  'str_EditorButtonCaption' => __( 'Table', WP_TABLE_RELOADED_TEXTDOMAIN ),
wp-table-reloaded-frontend.php CHANGED
@@ -3,7 +3,7 @@
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: Description: This plugin allows you to create and easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML.
6
- Version: 1.2.1
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
@@ -103,7 +103,11 @@ class WP_Table_Reloaded_Frontend {
103
  // handle [table id=<the_table_id> /] in widget texts
104
  function handle_widget_filter( $text ) {
105
  // pattern to search for in widget text (only our plugin's shortcode!)
106
- $pattern = '\[(' . preg_quote( $this->shortcode ) . ')\b(.*?)(?:(\/))?\](?:(.+?)\[\/\1\])?';
 
 
 
 
107
  // search for it, if found, handle as if it were a shortcode
108
  return preg_replace_callback( '/'.$pattern.'/s', 'do_shortcode_tag', $text );
109
  }
@@ -162,7 +166,7 @@ class WP_Table_Reloaded_Frontend {
162
  foreach( $row as $col_idx => $cell_content ) {
163
  $col_class = ' class="column-' . ( $col_idx + 1 ) . '"';
164
  $width_style = ( !empty( $output_options['column_widths'][$col_idx] ) ) ? " style=\"width:{$output_options['column_widths'][$col_idx]};\"" : '';
165
- $cell_content = $this->safe_output( $cell_content );
166
  $output .= "<th{$col_class}{$width_style}>" . "{$cell_content}" . "</th>";
167
  }
168
  $output .= "\n\t</tr>\n";
@@ -174,7 +178,7 @@ class WP_Table_Reloaded_Frontend {
174
  foreach( $row as $col_idx => $cell_content ) {
175
  $col_class = ' class="column-' . ( $col_idx + 1 ) . '"';
176
  $width_style = ( !empty( $output_options['column_widths'][$col_idx] ) ) ? " style=\"width:{$output_options['column_widths'][$col_idx]};\"" : '';
177
- $cell_content = $this->safe_output( $cell_content );
178
  $output .= "<td{$col_class}{$width_style}>" . "{$cell_content}" . "</td>";
179
  }
180
  $output .= "\n\t</tr>\n";
@@ -183,7 +187,7 @@ class WP_Table_Reloaded_Frontend {
183
  $output .= "\t<tr{$row_class}>\n\t\t";
184
  foreach( $row as $col_idx => $cell_content ) {
185
  $col_class = ' class="column-' . ( $col_idx + 1 ) . '"';
186
- $cell_content = $this->safe_output( $cell_content );
187
  $output .= "<td{$col_class}>" . "{$cell_content}" . "</td>";
188
  }
189
  $output .= "\n\t</tr>\n";
@@ -211,7 +215,7 @@ class WP_Table_Reloaded_Frontend {
211
 
212
  // ###################################################################################################################
213
  function safe_output( $string ) {
214
- return stripslashes( $string );
215
  }
216
 
217
  // ###################################################################################################################
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: Description: This plugin allows you to create and easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML.
6
+ Version: 1.3
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
103
  // handle [table id=<the_table_id> /] in widget texts
104
  function handle_widget_filter( $text ) {
105
  // pattern to search for in widget text (only our plugin's shortcode!)
106
+ if ( version_compare( $GLOBALS['wp_version'], '2.8alpha', '>=') ) {
107
+ $pattern = '(.?)\[(' . preg_quote( $this->shortcode ) . ')\b(.*?)(?:(\/))?\](?:(.+?)\[\/\2\])?(.?)';
108
+ } else {
109
+ $pattern = '\[(' . preg_quote( $this->shortcode ) . ')\b(.*?)(?:(\/))?\](?:(.+?)\[\/\1\])?';
110
+ }
111
  // search for it, if found, handle as if it were a shortcode
112
  return preg_replace_callback( '/'.$pattern.'/s', 'do_shortcode_tag', $text );
113
  }
166
  foreach( $row as $col_idx => $cell_content ) {
167
  $col_class = ' class="column-' . ( $col_idx + 1 ) . '"';
168
  $width_style = ( !empty( $output_options['column_widths'][$col_idx] ) ) ? " style=\"width:{$output_options['column_widths'][$col_idx]};\"" : '';
169
+ $cell_content = do_shortcode( $this->safe_output( $cell_content ) );
170
  $output .= "<th{$col_class}{$width_style}>" . "{$cell_content}" . "</th>";
171
  }
172
  $output .= "\n\t</tr>\n";
178
  foreach( $row as $col_idx => $cell_content ) {
179
  $col_class = ' class="column-' . ( $col_idx + 1 ) . '"';
180
  $width_style = ( !empty( $output_options['column_widths'][$col_idx] ) ) ? " style=\"width:{$output_options['column_widths'][$col_idx]};\"" : '';
181
+ $cell_content = do_shortcode( $this->safe_output( $cell_content ) );
182
  $output .= "<td{$col_class}{$width_style}>" . "{$cell_content}" . "</td>";
183
  }
184
  $output .= "\n\t</tr>\n";
187
  $output .= "\t<tr{$row_class}>\n\t\t";
188
  foreach( $row as $col_idx => $cell_content ) {
189
  $col_class = ' class="column-' . ( $col_idx + 1 ) . '"';
190
+ $cell_content = do_shortcode( $this->safe_output( $cell_content ) );
191
  $output .= "<td{$col_class}>" . "{$cell_content}" . "</td>";
192
  }
193
  $output .= "\n\t</tr>\n";
215
 
216
  // ###################################################################################################################
217
  function safe_output( $string ) {
218
+ return nl2br( stripslashes( $string ) );
219
  }
220
 
221
  // ###################################################################################################################
wp-table-reloaded.php CHANGED
@@ -3,7 +3,7 @@
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 easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML.
6
- Version: 1.2.1
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
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 easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML.
6
+ Version: 1.3
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */