WP-Table Reloaded - Version 1.2

Version Description

Download this release

Release Info

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

Code changes from version 1.1 to 1.2

admin/admin-editor-buttons-script.js ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ jQuery(document).ready(function($){
2
+
3
+ var editor_toolbar = $("#ed_toolbar");
4
+
5
+ if ( editor_toolbar ) {
6
+ var theButton = document.createElement('input');
7
+ theButton.type = 'button';
8
+ theButton.value = WP_Table_Reloaded_Admin.str_EditorButtonCaption;
9
+ theButton.className = 'ed_button';
10
+ theButton.title = WP_Table_Reloaded_Admin.str_EditorButtonCaption;
11
+ theButton.id = 'ed_button_wp_table_reloaded';
12
+ editor_toolbar.append( theButton );
13
+ $("#ed_button_wp_table_reloaded").click( wp_table_reloaded_button_click );
14
+ }
15
+
16
+ function wp_table_reloaded_button_click() {
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
+
23
+ $("#TB_ajaxContent").width("100%").height("100%")
24
+ .click(function(event) {
25
+ var $target = $(event.target);
26
+ if ( $target.is('a.send_table_to_editor') ) {
27
+ var table_id = $target.attr('title');
28
+ send_to_editor( '[table id=' + table_id + ' /]' );
29
+ }
30
+ return false;
31
+ });
32
+
33
+ return false;
34
+ }
35
+
36
+ });
admin/admin-script.js CHANGED
@@ -1,11 +1,6 @@
1
  jQuery(document).ready(function($){
2
- $("#import_format").change(function () {
3
- if ( 'csv' == $(this).val() )
4
- $(".tr-import-delimiter").css('display','table-row');
5
- else
6
- $(".tr-import-delimiter").css('display','none');
7
- })
8
- .change();
9
 
10
  $("#export_format").change(function () {
11
  if ( 'csv' == $(this).val() )
@@ -17,9 +12,9 @@ jQuery(document).ready(function($){
17
 
18
  $("#options_use_custom_css input").click(function () {
19
  if( $('#options_use_custom_css input:checked').val() ) {
20
- $('#options_custom_css textarea').removeAttr("disabled");
21
  } else {
22
- $('#options_custom_css textarea').attr("disabled", true);
23
  }
24
  return true;
25
  });
@@ -37,4 +32,83 @@ jQuery(document).ready(function($){
37
  $($(this).parent().get(0)).toggleClass('closed');
38
  } );
39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  });
1
  jQuery(document).ready(function($){
2
+
3
+ // WP_Table_Reloaded_Admin object will contain all localized strings
 
 
 
 
 
4
 
5
  $("#export_format").change(function () {
6
  if ( 'csv' == $(this).val() )
12
 
13
  $("#options_use_custom_css input").click(function () {
14
  if( $('#options_use_custom_css input:checked').val() ) {
15
+ $('#options_custom_css').removeAttr("disabled");
16
  } else {
17
+ $('#options_custom_css').attr("disabled", true);
18
  }
19
  return true;
20
  });
32
  $($(this).parent().get(0)).toggleClass('closed');
33
  } );
34
 
35
+ $("#options_uninstall input").click(function () {
36
+ if( $('#options_uninstall input:checked').val() ) {
37
+ return confirm( WP_Table_Reloaded_Admin.str_UninstallCheckboxActivation );
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 () {
51
+ var link_url = prompt( WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertURL + ':', 'http://' );
52
+ if ( link_url ) {
53
+ var link_text = prompt( WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertText + ':', WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertText );
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
+ }
61
+ return false;
62
+ });
63
+
64
+ $("#a-insert-image").click(function () {
65
+ var image_url = prompt( WP_Table_Reloaded_Admin.str_DataManipulationImageInsertURL + ':', 'http://' );
66
+ if ( image_url ) {
67
+ var image_alt = prompt( WP_Table_Reloaded_Admin.str_DataManipulationImageInsertAlt + ':', '' );
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
+ }
75
+ return false;
76
+ });
77
+
78
+ $("input.bulk_copy_tables").click(function () {
79
+ return confirm( WP_Table_Reloaded_Admin.str_BulkCopyTablesLink );
80
+ });
81
+
82
+ $("input.bulk_delete_tables").click(function () {
83
+ return confirm( WP_Table_Reloaded_Admin.str_BulkDeleteTablesLink );
84
+ });
85
+
86
+ $("input.bulk_wp_table_import_tables").click(function () {
87
+ return confirm( WP_Table_Reloaded_Admin.str_BulkImportwpTableTablesLink );
88
+ });
89
+
90
+ $("a.copy_table_link").click(function () {
91
+ return confirm( WP_Table_Reloaded_Admin.str_CopyTableLink );
92
+ });
93
+
94
+ $("a.delete_table_link").click(function () {
95
+ return confirm( WP_Table_Reloaded_Admin.str_DeleteTableLink );
96
+ });
97
+
98
+ $("a.delete_row_link").click(function () {
99
+ return confirm( WP_Table_Reloaded_Admin.str_DeleteRowLink );
100
+ });
101
+
102
+ $("a.delete_column_link").click(function () {
103
+ return confirm( WP_Table_Reloaded_Admin.str_DeleteColumnLink );
104
+ });
105
+
106
+ $("a.import_wptable_link").click(function () {
107
+ return confirm( WP_Table_Reloaded_Admin.str_ImportwpTableLink );
108
+ });
109
+
110
+ $("a.uninstall_plugin_link").click(function () {
111
+ if ( confirm( WP_Table_Reloaded_Admin.str_UninstallPluginLink_1 ) ) { return confirm( WP_Table_Reloaded_Admin.str_UninstallPluginLink_2 ); } else { return false; }
112
+ });
113
+
114
  });
admin/admin-style.css CHANGED
@@ -1,8 +1,10 @@
1
- /********************************************
2
- * This CSS file belongs to the Admin part *
3
- * of WP-Table Reloaded 1.0.1! PLEASE DO NOT *
4
- * make any changes here! Thank you! *
5
- ********************************************/
 
 
6
 
7
  table.wp-table-reloaded-options td {
8
  padding: 5px 0px 5px 0px;
@@ -15,5 +17,38 @@ table.wp-table-reloaded-options th {
15
  vertical-align: middle;
16
  }
17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  /* overwrite 980px max-width in WP < 2.7 */
19
- div.wrap { max-width: 100%!important; }
 
 
 
 
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
+
7
+ /* OWN PLUGIN STYLES */
8
 
9
  table.wp-table-reloaded-options td {
10
  padding: 5px 0px 5px 0px;
17
  vertical-align: middle;
18
  }
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] {
28
+ width:100%;
29
+ }
30
+
31
+ .hide_link, .expand_link {
32
+ position: absolute;
33
+ right: 10px;
34
+ font-weight: normal;
35
+ cursor: pointer;
36
+ padding: 0px!important;
37
+ }
38
+
39
+ .postbox h3.hndle {
40
+ cursor: pointer!important;
41
+ }
42
+
43
+ div.postbox .expand_link { display: none; }
44
+ div.closed .expand_link { display: inline!important; }
45
+ div.closed .hide_link { display: none; }
46
+
47
+ /* OVERRIDE EXISTING WP STYLES */
48
+
49
  /* overwrite 980px max-width in WP < 2.7 */
50
+ div.wrap { max-width: 100%!important; }
51
+
52
+ .widefat tbody th.check-column {
53
+ padding: 0!important;
54
+ }
languages/wp-table-reloaded-cs_CZ.mo ADDED
Binary file
languages/wp-table-reloaded-cs_CZ.po ADDED
@@ -0,0 +1,891 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=3; plural=n>=2 && n<=4 ? 1 : n==1 ? 0 : 2;\n"
13
+ "X-Poedit-Language: Czech\n"
14
+ "X-Poedit-Country: CZECH REPUBLIC\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e\n"
17
+
18
+ #: php/wp-table-reloaded-export.class.php:30
19
+ #: php/wp-table-reloaded-import.class.php:38
20
+ msgid "CSV - Character-Separated Values"
21
+ msgstr "CSV - Character-Separated Values (hodnoty oddělené čárkami)"
22
+
23
+ #: php/wp-table-reloaded-export.class.php:31
24
+ #: php/wp-table-reloaded-import.class.php:39
25
+ msgid "HTML - Hypertext Markup Language"
26
+ msgstr "HTML - Hypertext Markup Language (značkovací jazyk pro hypertext)"
27
+
28
+ #: php/wp-table-reloaded-export.class.php:32
29
+ #: php/wp-table-reloaded-import.class.php:40
30
+ msgid "XML - eXtended Markup Language"
31
+ msgstr "XML - eXtended Markup Language (rozšiřitelný značkovací jazyk)"
32
+
33
+ #: php/wp-table-reloaded-export.class.php:35
34
+ msgid "; (semicolon)"
35
+ msgstr "; (středník)"
36
+
37
+ #: php/wp-table-reloaded-export.class.php:36
38
+ msgid ", (comma)"
39
+ msgstr ", (čárka)"
40
+
41
+ #: php/wp-table-reloaded-export.class.php:37
42
+ msgid ": (colon)"
43
+ msgstr ": (dvojtečka)"
44
+
45
+ #: php/wp-table-reloaded-export.class.php:38
46
+ msgid ". (dot)"
47
+ msgstr ". (tečka)"
48
+
49
+ #: php/wp-table-reloaded-export.class.php:39
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
+
876
+ #. Plugin URI of an extension
877
+ msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
878
+ msgstr "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
879
+
880
+ #. Description of an extension
881
+ msgid "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."
882
+ msgstr "Pomocí tohoto pluginu můžete jednoduše vytvářet a upravovat tabulky přímo v administraci Wordpressu. Pomocí příjemného rozhraní lze také snadno manipulovat s daty v tabulce. Jednotlivé tabulky můžete vkládat do Vašich příspěvků, stránek nebo textových widgetů jednoduše pomocí zkráceného zápisu nebo speciální šablonové funkce. Tabulky mohou být importovány a exportovány z/do formátů CSV, XML a HTML."
883
+
884
+ #. Author of an extension
885
+ msgid "Tobias B&auml;thge"
886
+ msgstr "Tobias B&auml;thge"
887
+
888
+ #. Author URI of an extension
889
+ msgid "http://tobias.baethge.com/"
890
+ msgstr "http://tobias.baethge.com/"
891
+
languages/wp-table-reloaded-de_DE.mo CHANGED
Binary file
languages/wp-table-reloaded-de_DE.po CHANGED
@@ -14,669 +14,859 @@ msgstr ""
14
  "X-Poedit-Basepath: \n"
15
  "X-Poedit-SearchPath-0: ."
16
 
17
- #: wp-table-reloaded-admin.php:137
18
  #, php-format
19
  msgid "Table \"%s\" added successfully."
20
  msgstr "Tabelle \"%s\" erfolgreich angelegt."
21
 
22
- #: wp-table-reloaded-admin.php:160
23
  msgid "Table edited successfully."
24
  msgstr "Tabelle erfolgreich bearbeitet."
25
 
26
- #: wp-table-reloaded-admin.php:176
27
  msgid "Rows swapped successfully."
28
  msgstr "Zeilen erfolgreich getauscht."
29
 
30
- #: wp-table-reloaded-admin.php:195
31
  msgid "Columns swapped successfully."
32
  msgstr "Spalten erfolgreich getauscht."
33
 
34
- #: wp-table-reloaded-admin.php:229
35
  #, php-format
36
  msgid "Table \"%s\" copied successfully."
37
  msgstr "Tabelle \"%s\" erfolgreich kopiert."
38
 
39
- #: wp-table-reloaded-admin.php:248
40
  #, php-format
41
  msgid "Table \"%s\" deleted successfully."
42
  msgstr "Tabelle \"%s\" erfolgreich gelöscht."
43
 
44
- #: wp-table-reloaded-admin.php:258
45
  msgid "Row deleted successfully."
46
  msgstr "Zeile erfolgreich gelöscht."
47
 
48
- #: wp-table-reloaded-admin.php:271
49
  msgid "Column deleted successfully."
50
  msgstr "Spalte erfolgreich gelöscht."
51
 
52
- #: wp-table-reloaded-admin.php:276
53
  msgid "Delete failed."
54
  msgstr "Löschen fehlgeschlagen."
55
 
56
- #: wp-table-reloaded-admin.php:300
57
  msgid "Row inserted successfully."
58
  msgstr "Zeile erfolgreich eingefügt."
59
 
60
- #: wp-table-reloaded-admin.php:309
61
  msgid "Column inserted successfully."
62
  msgstr "Spalte erfolgreich eingefügt."
63
 
64
- #: wp-table-reloaded-admin.php:312
65
  msgid "Insert failed."
66
  msgstr "Einfügen fehlgeschlagen."
67
 
68
- #: wp-table-reloaded-admin.php:358
69
- #: wp-table-reloaded-admin.php:379
70
  msgid "Table imported successfully."
71
  msgstr "Tabelle erfolgreich importiert."
72
 
73
- #: wp-table-reloaded-admin.php:405
74
  #, php-format
75
  msgid "Table \"%s\" exported successfully."
76
  msgstr "Tabelle \"%s\" erfolgreich exportiert."
77
 
78
- #: wp-table-reloaded-admin.php:433
79
  msgid "Options saved successfully."
80
  msgstr "Einstellungen erfolgreich gespeichert."
81
 
82
- #: wp-table-reloaded-admin.php:471
 
83
  msgid "List of Tables"
84
  msgstr "Liste der Tabellen"
85
 
86
- #: wp-table-reloaded-admin.php:474
87
- msgid "This is a list of all available tables. You may add, edit, copy or delete tables here."
88
- msgstr "Dies ist eine Liste aller verfügbaren Tabellen. Hier kannst du Tabellen hinzufügen, bearbeiten, kopieren oder löschen."
89
-
90
- #: wp-table-reloaded-admin.php:483
91
- #: wp-table-reloaded-admin.php:887
92
  msgid "ID"
93
  msgstr "ID"
94
 
95
- #: wp-table-reloaded-admin.php:484
96
- #: wp-table-reloaded-admin.php:544
97
- #: wp-table-reloaded-admin.php:594
98
- #: wp-table-reloaded-admin.php:888
 
99
  msgid "Table Name"
100
  msgstr "Name der Tabelle"
101
 
102
- #: wp-table-reloaded-admin.php:485
103
- #: wp-table-reloaded-admin.php:548
104
- #: wp-table-reloaded-admin.php:598
105
- #: wp-table-reloaded-admin.php:889
 
106
  msgid "Description"
107
  msgstr "Beschreibung"
108
 
109
- #: wp-table-reloaded-admin.php:486
110
- #: wp-table-reloaded-admin.php:890
 
111
  msgid "Action"
112
  msgstr "Aktion"
113
 
114
- #: wp-table-reloaded-admin.php:511
115
  msgid "Edit"
116
  msgstr "Bearbeiten"
117
 
118
- #: wp-table-reloaded-admin.php:512
119
  msgid "Do you want to copy this table?"
120
  msgstr "Möchtest du diese Tabelle kopieren?"
121
 
122
- #: wp-table-reloaded-admin.php:512
123
  msgid "Copy"
124
  msgstr "Kopieren"
125
 
126
- #: wp-table-reloaded-admin.php:513
127
  msgid "Export"
128
  msgstr "Exportieren"
129
 
130
- #: wp-table-reloaded-admin.php:514
131
- #: wp-table-reloaded-admin.php:807
132
  msgid "The complete table and all content will be erased. Do you really want to delete it?"
133
  msgstr "Die gesamte Tabelle und alle Inhalte werden gelöscht. Möchtest du dies wirklich?"
134
 
135
- #: wp-table-reloaded-admin.php:514
136
  msgid "Delete"
137
  msgstr "Löschen"
138
 
139
- #: wp-table-reloaded-admin.php:524
140
- #: wp-table-reloaded-admin.php:1001
 
141
  msgid "No tables found."
142
  msgstr "Keine Tabellen gefunden."
143
 
144
- #: wp-table-reloaded-admin.php:524
145
- #: wp-table-reloaded-admin.php:1001
146
  #, php-format
147
  msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
148
  msgstr "Du kannst eine <a href=\"%s\">anlegen</a> oder <a href=\"%s\">importieren</a>!"
149
 
150
- #: wp-table-reloaded-admin.php:532
151
- #: wp-table-reloaded-admin.php:1171
152
  msgid "Add new Table"
153
  msgstr "Neue Tabelle anlegen"
154
 
155
- #: wp-table-reloaded-admin.php:536
156
  msgid "You can add a new table here. Just enter it's name, a description (optional) and the number of rows and columns.<br/>You may add, insert or delete rows and columns later."
157
  msgstr "Hier kannst du eine neue Tabelle anlegen. Gib einfach ihren Namen, eine (optionale) Beschreibung und die Anzahl der Zeilen und Spalten ein.<br/>Du kannst später auch Zeilen oder Spalten hinzufügen, einfügen oder löschen."
158
 
159
- #: wp-table-reloaded-admin.php:552
160
  msgid "Number of Rows"
161
  msgstr "Anzahl Zeilen"
162
 
163
- #: wp-table-reloaded-admin.php:556
164
  msgid "Number of Columns"
165
  msgstr "Anzahl Spalten"
166
 
167
- #: wp-table-reloaded-admin.php:563
168
  msgid "Add Table"
169
  msgstr "Tabelle anlegen"
170
 
171
- #: wp-table-reloaded-admin.php:584
172
  msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
173
  msgstr "Hier kannst du die Inhalte der Tabelle bearbeiten. Außerdem können Zeilen oder Spalten hinzugefügt, gelöscht oder getauscht werden."
174
 
175
- #: wp-table-reloaded-admin.php:590
176
  msgid "Table Information"
177
  msgstr "Informationen über die Tabelle"
178
 
179
- #: wp-table-reloaded-admin.php:616
180
  msgid "Table Contents"
181
  msgstr "Inhalte der Tabelle"
182
 
183
- #: wp-table-reloaded-admin.php:644
184
  msgid "Insert Row"
185
  msgstr "Zeile einfügen"
186
 
187
- #: wp-table-reloaded-admin.php:646
188
  msgid "Do you really want to delete this row?"
189
  msgstr "Möchtest du diese Zeile wirklich löschen?"
190
 
191
- #: wp-table-reloaded-admin.php:646
192
  msgid "Delete Row"
193
  msgstr "Zeile löschen"
194
 
195
- #: wp-table-reloaded-admin.php:656
196
  msgid "Insert Column"
197
  msgstr "Spalte einfügen"
198
 
199
- #: wp-table-reloaded-admin.php:658
200
  msgid "Do you really want to delete this column?"
201
  msgstr "Möchtest du diese Spalte wirklich löschen?"
202
 
203
- #: wp-table-reloaded-admin.php:658
204
  msgid "Delete Column"
205
  msgstr "Spalte löschen"
206
 
207
- #: wp-table-reloaded-admin.php:663
208
  msgid "Add Row"
209
  msgstr "Zeile hinzufügen"
210
 
211
- #: wp-table-reloaded-admin.php:663
212
  msgid "Add Column"
213
  msgstr "Spalte hinzufügen"
214
 
215
- #: wp-table-reloaded-admin.php:690
216
- #: wp-table-reloaded-admin.php:710
217
  msgid "Swap"
218
  msgstr "Tauschen"
219
 
220
- #: wp-table-reloaded-admin.php:767
221
  msgid "Table Settings"
222
  msgstr "Einstellungen zur Tabelle"
223
 
224
- #: wp-table-reloaded-admin.php:769
225
  msgid "These settings will only be used for this table."
226
  msgstr "Diese Einstellungen gelten nur für diese Tabelle."
227
 
228
- #: wp-table-reloaded-admin.php:772
229
  msgid "Alternating row colors"
230
  msgstr "alternierende Zeilenfarben"
231
 
232
- #: wp-table-reloaded-admin.php:773
233
  msgid "Every second row will have an alternating background color."
234
  msgstr "Jede zweite Zeile bekommt eine alternierende Hintergrundfarbe."
235
 
236
- #: wp-table-reloaded-admin.php:776
237
  msgid "Use Table Headline"
238
  msgstr "Tabellenüberschrift"
239
 
240
- #: wp-table-reloaded-admin.php:777
241
  msgid "The first row of your table will use the [th] tag."
242
  msgstr "Die erste Zeile der Tabelle wird mit dem HTML-Tag [th] markiert."
243
 
244
- #: wp-table-reloaded-admin.php:780
245
  msgid "Print Table Name"
246
  msgstr "Tabellennamen ausgeben"
247
 
248
- #: wp-table-reloaded-admin.php:781
249
  msgid "The Table Name will be written above the table in a [h2] tag."
250
  msgstr "Der Name der Tabelle wird in einem [h2]-HTML-Tag über die Tabelle geschrieben."
251
 
252
- #: wp-table-reloaded-admin.php:784
253
  msgid "Print Table Description"
254
  msgstr "Tabellenbeschreibung ausgeben"
255
 
256
- #: wp-table-reloaded-admin.php:785
257
  msgid "The Table Description will be written under the table."
258
  msgstr "Die Tabellenbeschreibung wird unter die Tabelle geschrieben."
259
 
260
- #: wp-table-reloaded-admin.php:788
261
  msgid "Use Tablesorter"
262
  msgstr "Tablesorter benutzen"
263
 
264
- #: wp-table-reloaded-admin.php:789
265
  msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. <small>Attention: You must have Tablesorter enabled on the \"Plugin Options\" page and the option \"Use Table Headline\" has to be enabled above for this to work!</small>"
266
  msgstr "Eine Tabelle kann dynamisch mit dem <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> sortiert werden. <small>Achtung: Tablesorter muss auf der Seite \\"Plugin-Einstellungen\\" aktiviert sein! Außerdem muss die \\"Tabellenüberschrift\\" (mit [th]) (siehe oben) aktiviert sein!</small>"
267
 
268
- #: wp-table-reloaded-admin.php:606
269
- #: wp-table-reloaded-admin.php:798
270
  msgid "Update Changes"
271
  msgstr "Änderungen speichern"
272
 
273
- #: wp-table-reloaded-admin.php:607
274
- #: wp-table-reloaded-admin.php:799
275
  msgid "Save and go back"
276
  msgstr "Speichern und zurück"
277
 
278
- #: wp-table-reloaded-admin.php:610
279
- #: wp-table-reloaded-admin.php:802
280
  msgid "Cancel"
281
  msgstr "Abbrechen"
282
 
283
- #: wp-table-reloaded-admin.php:804
284
  msgid "Other actions"
285
  msgstr "Andere Aktionen"
286
 
287
- #: wp-table-reloaded-admin.php:807
288
  msgid "Delete Table"
289
  msgstr "Tabelle löschen"
290
 
291
- #: wp-table-reloaded-admin.php:808
292
- #: wp-table-reloaded-admin.php:990
293
  msgid "Export Table"
294
  msgstr "Tabelle exportieren"
295
 
296
- #: wp-table-reloaded-admin.php:819
297
- #: wp-table-reloaded-admin.php:1172
298
  msgid "Import a Table"
299
  msgstr "Eine Tabelle importieren"
300
 
301
- #: wp-table-reloaded-admin.php:850
302
  msgid "Select File with Table to Import"
303
  msgstr "Datei mit den zu importierenden Inhalten auswählen"
304
 
305
- #: wp-table-reloaded-admin.php:840
306
- msgid "Used Delimiter"
307
- msgstr "Verwendetes Trennzeichen"
308
-
309
- #: wp-table-reloaded-admin.php:864
310
  msgid "Import Table"
311
  msgstr "Tabelle importieren"
312
 
313
- #: wp-table-reloaded-admin.php:937
314
- #: wp-table-reloaded-admin.php:1173
315
  msgid "Export a Table"
316
  msgstr "Eine Tabelle exportieren"
317
 
318
- #: wp-table-reloaded-admin.php:949
319
  msgid "Select Table to Export"
320
  msgstr "zu exportierende Tabelle auswählen"
321
 
322
- #: wp-table-reloaded-admin.php:964
323
  msgid "Select Export Format"
324
  msgstr "gewünschtes Export-Format"
325
 
326
- #: wp-table-reloaded-admin.php:974
327
  msgid "Select Delimiter to use"
328
  msgstr "zu verwendendes Trennzeichen"
329
 
330
- #: wp-table-reloaded-admin.php:1010
331
  msgid "General Plugin Options"
332
  msgstr "Plugin-Einstellungen"
333
 
334
- #: wp-table-reloaded-admin.php:1014
335
  msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
336
  msgstr "Hier können allgemeine Plugin-Einstellungen geändert werden<br/>Diese beeinflussen alle Tabellen oder das allgemeine Verhalten des Plugins."
337
 
338
- #: wp-table-reloaded-admin.php:1046
339
  msgid "Uninstall Plugin upon Deactivation?"
340
  msgstr "Plugin beim Deaktivieren deinstallieren?"
341
 
342
- #: wp-table-reloaded-admin.php:1025
343
  msgid "Enable Tablesorter-JavaScript?"
344
  msgstr "Tablesorter-JavaScript aktivieren?"
345
 
346
- #: wp-table-reloaded-admin.php:1026
347
- msgid "Yes, enable <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> to be used to make table sortable (can be changed for every table separatly)."
348
- msgstr "Ja, Nutzung des <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugins</a> ermöglichen, um eine Tabelle sortierbar machen (kann für jede Tabelle separat aktiviert werden)."
349
-
350
- #: wp-table-reloaded-admin.php:1057
351
  msgid "Save Options"
352
  msgstr "Einstellungen speichern"
353
 
354
- #: wp-table-reloaded-admin.php:1078
355
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
356
  msgstr "Möchtest du das Plugin wirklich deinstallieren und ALLE Daten löschen?"
357
 
358
- #: wp-table-reloaded-admin.php:1078
359
  msgid "Are you really sure?"
360
  msgstr "Bist du wirklich sicher?"
361
 
362
- #: wp-table-reloaded-admin.php:1088
363
  msgid "Information about the plugin"
364
  msgstr "Informationen über das Plugin"
365
 
366
- #: wp-table-reloaded-admin.php:1184
367
- msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a>. A documentation and certain support and help request possibilities will be available soon."
368
- msgstr "Mehr Informationen sind auf der <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">Webseite des Plugins</a> zu finden. Eine Dokumentation und Hilfe- und Unterstützungsmöglichkeiten sind bald verfügbar."
369
-
370
- #: wp-table-reloaded-admin.php:1116
371
  msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. It is licenced as Free Software under GPL 2."
372
  msgstr "Dieses Plugin wurde von <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a> programmiert. Es ist als Freie Software unter der GPL v2 lizenziert."
373
 
374
- #: wp-table-reloaded-admin.php:1170
375
  msgid "List Tables"
376
  msgstr "Liste der Tabellen"
377
 
378
- #: wp-table-reloaded-admin.php:1175
379
  msgid "Plugin Options"
380
  msgstr "Plugin-Einstellungen"
381
 
382
- #: wp-table-reloaded-admin.php:1176
383
  msgid "About the Plugin"
384
  msgstr "Über das Plugin"
385
 
386
  #: php/wp-table-reloaded-export.class.php:30
387
- #: php/wp-table-reloaded-import.class.php:41
388
  msgid "CSV - Character-Separated Values"
389
  msgstr "CSV - Character-Separated Values"
390
 
391
  #: php/wp-table-reloaded-export.class.php:32
392
- #: php/wp-table-reloaded-import.class.php:43
393
  msgid "XML - eXtended Markup Language"
394
  msgstr "XML - eXtended Markup Language"
395
 
396
  #: php/wp-table-reloaded-export.class.php:35
397
- #: php/wp-table-reloaded-import.class.php:36
398
  msgid "; (semicolon)"
399
  msgstr "; (Semikolon)"
400
 
401
  #: php/wp-table-reloaded-export.class.php:36
402
- #: php/wp-table-reloaded-import.class.php:37
403
  msgid ", (comma)"
404
  msgstr ", (Komma)"
405
 
406
  #: php/wp-table-reloaded-export.class.php:37
407
- #: php/wp-table-reloaded-import.class.php:38
408
  msgid ": (colon)"
409
  msgstr ": (Doppelpunkt)"
410
 
411
- #: wp-table-reloaded-admin.php:1078
412
  msgid "Uninstall Plugin WP-Table Reloaded"
413
  msgstr "Plugin WP-Table Reloaded deinstallieren"
414
 
415
  #: php/wp-table-reloaded-export.class.php:31
416
- #: php/wp-table-reloaded-import.class.php:42
417
  msgid "HTML - Hypertext Markup Language"
418
  msgstr "HTML - Hypertext Markup Language"
419
 
420
- #: wp-table-reloaded-admin.php:224
 
421
  msgid "Copy of"
422
  msgstr "Kopie von"
423
 
424
- #: wp-table-reloaded-admin.php:340
425
  msgid "Imported Table"
426
  msgstr "Importierte Tabelle"
427
 
428
- #: wp-table-reloaded-admin.php:341
429
  msgid "via form"
430
  msgstr "via Eingabefeld"
431
 
432
- #: wp-table-reloaded-admin.php:361
433
  msgid "Table could not be imported."
434
  msgstr "Tabelle konnte nicht importiert werden."
435
 
436
- #: wp-table-reloaded-admin.php:451
437
  msgid "WP-Table Reloaded"
438
  msgstr "WP-Table Reloaded"
439
 
440
- #: wp-table-reloaded-admin.php:452
441
  msgid "Plugin deactivated successfully."
442
  msgstr "Plugin erfolgreich deaktiviert."
443
 
444
- #: wp-table-reloaded-admin.php:453
445
  msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
446
  msgstr "Alle Tabellen, Daten und Einstellungen wurden gelöscht. Du kannst jetzt den Ordner des Plugins aus deinem WordPress Plugin-Ordner löschen."
447
 
448
- #: wp-table-reloaded-admin.php:475
449
- msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode: <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
450
- msgstr "Wenn Du eine Tabelle in einem Beitrag, auf einer Seite oder in einem Text-Widgets anzeigen möchtest, verwende den Shortcode: <strong>[table id=&lt;ID-der-Tabelle&gt; /]</strong>"
451
-
452
- #: wp-table-reloaded-admin.php:545
453
  msgid "Enter Table Name"
454
  msgstr "Tabellennamen eingeben"
455
 
456
- #: wp-table-reloaded-admin.php:549
457
  msgid "Enter Description"
458
  msgstr "Beschreibung eingeben"
459
 
460
- #: wp-table-reloaded-admin.php:830
461
  msgid "Select Import Format"
462
  msgstr "Import-Format wählen"
463
 
464
- #: wp-table-reloaded-admin.php:847
465
- #: wp-table-reloaded-admin.php:981
466
  msgid "<small>(Only needed for CSV export.)</small>"
467
  msgstr "<small>(Nur für CSV-Export benötigt.)</small>"
468
 
469
- #: wp-table-reloaded-admin.php:854
470
  msgid "- or -"
471
  msgstr "- oder -"
472
 
473
- #: wp-table-reloaded-admin.php:855
474
  msgid "(upload will be preferred over pasting)"
475
  msgstr "(Hochladen hat Vorrang vor manueller Eingabe)"
476
 
477
- #: wp-table-reloaded-admin.php:858
478
  msgid "Paste data with Table to Import"
479
  msgstr "zu importierende Tabelle einfügen"
480
 
481
- #: wp-table-reloaded-admin.php:910
482
  msgid "Import"
483
  msgstr "Import"
484
 
485
- #: wp-table-reloaded-admin.php:941
486
  msgid "You may export a table here. Just select the table, your desired export format and a delimiter (needed for CSV only).<br/>You may opt to download the export file. Otherwise it will be shown on this page."
487
  msgstr "Hier kann eine Tabelle exportiert werden. Einfach Tabelle, gewünschtes Export-Format und Trennzeichen (nur für CSV) auswählen.<br/>Du kannst wählen, ob du die Export-Datei downloaden oder anzeigen lassen möchtest."
488
 
489
- #: wp-table-reloaded-admin.php:984
490
  msgid "Download file"
491
  msgstr "Datei downloaden"
492
 
493
- #: wp-table-reloaded-admin.php:985
494
  msgid "Yes, I want to download the export file."
495
  msgstr "Ja, ich möchte die Export-Datei downloaden."
496
 
497
- #: wp-table-reloaded-admin.php:1021
498
  msgid "Frontend Options"
499
  msgstr "Darstellungsoptionen"
500
 
501
- #: wp-table-reloaded-admin.php:1042
502
  msgid "Admin Options"
503
  msgstr "Verwaltungseinstellungen"
504
 
505
- #: wp-table-reloaded-admin.php:1047
506
- msgid "Yes, uninstall everything when plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page! (It does not influence the \"Manually Uninstall Plugin\" button below!)"
507
- msgstr "Ja, alles deinstallieren, wenn Plugin deaktiviert wird. Achtung: Du solltest dieses Kästchen erst direkt vor der Deaktivierung des Plugins auf der WordPress-Plugin-Seite aktivieren! (Es hat keinen Einfluss auf die Schaltfläche zur manuellen Deinstallation unten auf dieser Seite!)"
508
-
509
- #: wp-table-reloaded-admin.php:1073
510
  msgid "Manually Uninstall Plugin"
511
  msgstr "Manuelle Plugin-Deinstallation"
512
 
513
- #: wp-table-reloaded-admin.php:1075
514
  msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported.<br/> Be very careful with this and only click the button if you know what you are doing!"
515
  msgstr "Hier kannst du das Plugin deinstallieren. Dies <strong>löscht</strong> alle Tabellen, Daten, Einstellungen, etc. die zum Plugin gehören, inklusive aller angelegter oder importierter Tabellen! Sei hiermit vorsichtig und klicke die Schaltfläche nur, wenn du weißt, was du tust!"
516
 
517
- #: wp-table-reloaded-admin.php:1094
518
  msgid "Plugin Purpose"
519
  msgstr "Zweck des Plugins"
520
 
521
- #: wp-table-reloaded-admin.php:1096
522
- msgid "This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode."
523
- msgstr "Dieses Plugin erlaubt die Erstellung und Verwaltung von Tabellen im Administrationsbereich von WordPress. Die Tabellen können dann mittels eines Shortcodes in Beiträgen, auf Seiten und in Text-Widgets angezeigt werden."
524
-
525
- #: wp-table-reloaded-admin.php:1101
526
  msgid "Usage"
527
  msgstr "Benutzung"
528
 
529
- #: wp-table-reloaded-admin.php:1103
530
- msgid "At first you should add or import a table. Then edit your data and select the options you want. To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them. You may then style your table via CSS. Every table has the CSS-class \"wp-table-reloaded\". A table also has the class \"wp-table-reloaded-&lt;table-id&gt;\". You can also use the classes \"column-&lt;number&gt;\" and \"row-&lt;number&gt;\" to style rows and columns individually. Use this to style columns width and text alignment."
531
- msgstr "Zuerst sollest du eine Tabelle anlegen oder importieren. Dann kannst du die Daten editieren und gewünschte Darstellungsoptionen aktivieren. Um die Tabelle in einem Beitrag, auf einer Seite oder in einem Text-Widget anzuzeigen, füge dort den Shortcode [table id=&lt;ID-der-Tabelle&gt;] ein. Du kannst die Tabelle dann mittels CSS stylen. Jede Tabelle hat die CSS-Klasse \"wp-table-reloaded\". Jede Tabelle hat außerdem eine Klasse \"wp-table-reloaded-&lt;ID-der-Tabelle&gt;\". Du kannst die Klassen \"column-&lt;Nummer&gt;\" und \"row-&lt;Nummer&gt;\" nutzen, um Zeilen und Spalten individuell zu stylen. Dies kann für die Textausrichtung oder Spaltenbreite genutzt werden."
532
-
533
- #: wp-table-reloaded-admin.php:1107
534
  msgid "More Information and Documentation"
535
  msgstr "Weitere Informationen und Dokumentation"
536
 
537
- #: wp-table-reloaded-admin.php:1109
538
- msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. A documentation and certain support and help request possibilities will be available soon."
539
- msgstr "Weitere Informationen findest du auf der <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">Website des Plugins</a> oder auf seiner Seite im <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory.</a> Eine Dokumentation und bestimmte Unterstützungs- und Hilfemöglichkeiten werden in Kürze verfügbar sein."
540
-
541
- #: wp-table-reloaded-admin.php:1114
542
  msgid "Author and Licence"
543
  msgstr "Autor und Lizenz"
544
 
545
- #: wp-table-reloaded-admin.php:1116
546
- msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">donating</a> or rating it at the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. Thanks!"
547
- msgstr "Wenn dir das Plugin gefällt, kannst du gerne etwas <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">spenden</a> oder das Plugin auf seiner Seite im <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a> bewerten. Danke!"
548
-
549
- #: wp-table-reloaded-admin.php:1121
550
  msgid "Credits and Thanks"
551
  msgstr "Danksagungen"
552
 
553
- #: wp-table-reloaded-admin.php:1133
554
- msgid "and all contributors, supporters, reviewers and users of the plugin!"
555
- msgstr "und alle Unterstützer, Reviewer und Nutzer des Plugins!"
556
-
557
- #: wp-table-reloaded-admin.php:687
558
  #, php-format
559
  msgid "Swap rows %s and %s"
560
  msgstr "Tausche die Zeilen %s und %s"
561
 
562
- #: wp-table-reloaded-admin.php:707
563
  #, php-format
564
  msgid "Swap columns %s and %s"
565
  msgstr "Tausche die Spalten %s und %s"
566
 
567
- #: wp-table-reloaded-admin.php:1125
568
- msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
569
- msgstr "Christian Bach für das <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
570
-
571
- #: wp-table-reloaded-admin.php:877
572
  msgid "Import from original wp-Table plugin"
573
  msgstr "Import von Tabellen aus dem Plugin wp-Table"
574
 
575
- #: wp-table-reloaded-admin.php:910
576
  msgid "Do you really want to import this table from the wp-Table plugin?"
577
  msgstr "Möchtest du diese Tabelle wirklich aus dem Plugin wp-Table importieren?"
578
 
579
- #: wp-table-reloaded-admin.php:918
580
  msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
581
  msgstr "Das Plugin wp-Table von Alex Rabe scheint installiert zu sein, es wurden jedoch keine Tabellen gefunden."
582
 
583
- #: wp-table-reloaded-admin.php:1067
584
  msgid "Do you really want to activate this? You should only do that right before uninstallation!"
585
  msgstr "Möchtest du diese Option wirklich aktivieren? Du solltest dies erst unmittelbar vor der Deaktivierung zum Zwecke der Deinstallation tun!"
586
 
587
- #: wp-table-reloaded-admin.php:1124
588
  msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
589
  msgstr "Danke an <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> für das Plugin wp-Table,"
590
 
591
- #: wp-table-reloaded-admin.php:1126
592
  msgid "the submitters of translations:"
593
  msgstr "die Übersetzer:"
594
 
595
- #: wp-table-reloaded-admin.php:1127
596
  msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
597
  msgstr "Albanisch (danke an <a href=\"http://www.romeolab.com/\">Romeo</a>)"
598
 
599
- #: wp-table-reloaded-admin.php:1128
600
  msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
601
  msgstr "Französisch (danke an <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
602
 
603
- #: wp-table-reloaded-admin.php:1129
604
  msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
605
  msgstr "Russisch (danke an <a href=\"http://wp-skins.info/\">Truper</a>)"
606
 
607
- #: wp-table-reloaded-admin.php:1130
608
- msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>)"
609
- msgstr "Spanisch (danke an <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>)"
610
-
611
- #: wp-table-reloaded-admin.php:1131
612
  msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
613
  msgstr "Schwedisch (danke an <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
614
 
615
- #: wp-table-reloaded-admin.php:1132
616
  msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
617
  msgstr "Türkisch (danke an <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
618
 
619
- #: wp-table-reloaded-admin.php:1029
620
  msgid "Add custom CSS?"
621
  msgstr "Eigenes CSS hinzufügen?"
622
 
623
- #: wp-table-reloaded-admin.php:1030
624
- #, php-format
625
- msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag. (If you do not want this, just add your CSS styling to your theme's \"style.css\" <small>(located at %s)</small>.) (See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin website</a> for examples.)"
626
- msgstr "Ja, lade den folgenden CSS-Code mittels eines [style]-HTML-Tags. (Falls du das nicht möchtest, füge deinen CSS-Code einfach in die Datei \"style.css\" deines Themes hinzu <small>(Datei: %s)</small>.) (Für Beispiele besuche die <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-deutsch/\">Webseite des Plugins</a>.)"
627
-
628
- #: wp-table-reloaded-admin.php:1034
629
  msgid "Enter custom CSS"
630
  msgstr "Eigenes CSS eingeben"
631
 
632
- #: wp-table-reloaded-admin.php:580
633
  #, php-format
634
  msgid "Edit Table \"%s\""
635
  msgstr "Bearbeite Tabelle \"%s\""
636
 
637
- #: wp-table-reloaded-admin.php:585
638
  #, php-format
639
  msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
640
  msgstr "Wenn du diese Tabelle in einem Beitrag, auf einer Seite oder in einem Text-Widget anzeigen möchtest, für dort einfach den Shortcode <strong>[table id=%s /]</strong> ein."
641
 
642
- #: wp-table-reloaded-admin.php:672
643
  msgid "Data Manipulation"
644
  msgstr "Bearbeitungsfunktionen"
645
 
646
- #: wp-table-reloaded-admin.php:714
647
  msgid "Insert Link"
648
  msgstr "Link einfügen"
649
 
650
- #: wp-table-reloaded-admin.php:714
651
  msgid "Insert Image"
652
  msgstr "Bild einfügen"
653
 
654
- #: wp-table-reloaded-admin.php:732
655
  msgid "URL of link to insert"
656
  msgstr "URL des einzufügenden Links"
657
 
658
- #: wp-table-reloaded-admin.php:734
659
- #: wp-table-reloaded-admin.php:734
660
  msgid "Text of link"
661
  msgstr "Text des Links"
662
 
663
- #: wp-table-reloaded-admin.php:737
664
  msgid "To insert the following link into a cell, just click the cell after closing this dialog."
665
  msgstr "Um den folgenden Link in eine Tabellenzelle einzufügen, klicke einfach auf diese."
666
 
667
- #: wp-table-reloaded-admin.php:746
668
  msgid "URL of image to insert"
669
  msgstr "URL des einzufügenden Bildes"
670
 
671
- #: wp-table-reloaded-admin.php:748
672
- msgid "\"alt\" text of the image"
673
- msgstr "Alternativtext (\"alt\") des Bildes:"
674
-
675
- #: wp-table-reloaded-admin.php:751
676
  msgid "To insert the following image into a cell, just click the cell after closing this dialog."
677
  msgstr "Um das folgende Bild in eine Tabellenzelle einzufügen, klicke einfach auf diese."
678
 
679
- #: wp-table-reloaded-admin.php:823
680
  msgid "You may import a table from existing data here.<br/>It may be a CSV, XML or HTML file. It needs a certain structure though. Please consult the documentation."
681
  msgstr "Hier kannst du eine Tabelle aus existierenden Daten importieren.<br/>Dies kann eine CSV-, XML- oder HTML-Datei sein. Sie benötigt jedoch eine bestimmte Struktur. Bitte lies bei Problemen die Dokumentation."
682
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  "X-Poedit-Basepath: \n"
15
  "X-Poedit-SearchPath-0: ."
16
 
17
+ #: wp-table-reloaded-admin.php:150
18
  #, php-format
19
  msgid "Table \"%s\" added successfully."
20
  msgstr "Tabelle \"%s\" erfolgreich angelegt."
21
 
22
+ #: wp-table-reloaded-admin.php:173
23
  msgid "Table edited successfully."
24
  msgstr "Tabelle erfolgreich bearbeitet."
25
 
26
+ #: wp-table-reloaded-admin.php:189
27
  msgid "Rows swapped successfully."
28
  msgstr "Zeilen erfolgreich getauscht."
29
 
30
+ #: wp-table-reloaded-admin.php:208
31
  msgid "Columns swapped successfully."
32
  msgstr "Spalten erfolgreich getauscht."
33
 
34
+ #: wp-table-reloaded-admin.php:315
35
  #, php-format
36
  msgid "Table \"%s\" copied successfully."
37
  msgstr "Tabelle \"%s\" erfolgreich kopiert."
38
 
39
+ #: wp-table-reloaded-admin.php:334
40
  #, php-format
41
  msgid "Table \"%s\" deleted successfully."
42
  msgstr "Tabelle \"%s\" erfolgreich gelöscht."
43
 
44
+ #: wp-table-reloaded-admin.php:344
45
  msgid "Row deleted successfully."
46
  msgstr "Zeile erfolgreich gelöscht."
47
 
48
+ #: wp-table-reloaded-admin.php:357
49
  msgid "Column deleted successfully."
50
  msgstr "Spalte erfolgreich gelöscht."
51
 
52
+ #: wp-table-reloaded-admin.php:362
53
  msgid "Delete failed."
54
  msgstr "Löschen fehlgeschlagen."
55
 
56
+ #: wp-table-reloaded-admin.php:386
57
  msgid "Row inserted successfully."
58
  msgstr "Zeile erfolgreich eingefügt."
59
 
60
+ #: wp-table-reloaded-admin.php:395
61
  msgid "Column inserted successfully."
62
  msgstr "Spalte erfolgreich eingefügt."
63
 
64
+ #: wp-table-reloaded-admin.php:398
65
  msgid "Insert failed."
66
  msgstr "Einfügen fehlgeschlagen."
67
 
68
+ #: wp-table-reloaded-admin.php:442
69
+ #: wp-table-reloaded-admin.php:463
70
  msgid "Table imported successfully."
71
  msgstr "Tabelle erfolgreich importiert."
72
 
73
+ #: wp-table-reloaded-admin.php:489
74
  #, php-format
75
  msgid "Table \"%s\" exported successfully."
76
  msgstr "Tabelle \"%s\" erfolgreich exportiert."
77
 
78
+ #: wp-table-reloaded-admin.php:517
79
  msgid "Options saved successfully."
80
  msgstr "Einstellungen erfolgreich gespeichert."
81
 
82
+ #: wp-table-reloaded-admin.php:553
83
+ #: wp-table-reloaded-admin.php:613
84
  msgid "List of Tables"
85
  msgstr "Liste der Tabellen"
86
 
87
+ #: wp-table-reloaded-admin.php:564
88
+ #: wp-table-reloaded-admin.php:628
89
+ #: wp-table-reloaded-admin.php:1008
 
 
 
90
  msgid "ID"
91
  msgstr "ID"
92
 
93
+ #: wp-table-reloaded-admin.php:565
94
+ #: wp-table-reloaded-admin.php:629
95
+ #: wp-table-reloaded-admin.php:697
96
+ #: wp-table-reloaded-admin.php:746
97
+ #: wp-table-reloaded-admin.php:1009
98
  msgid "Table Name"
99
  msgstr "Name der Tabelle"
100
 
101
+ #: wp-table-reloaded-admin.php:566
102
+ #: wp-table-reloaded-admin.php:630
103
+ #: wp-table-reloaded-admin.php:701
104
+ #: wp-table-reloaded-admin.php:750
105
+ #: wp-table-reloaded-admin.php:1010
106
  msgid "Description"
107
  msgstr "Beschreibung"
108
 
109
+ #: wp-table-reloaded-admin.php:567
110
+ #: wp-table-reloaded-admin.php:631
111
+ #: wp-table-reloaded-admin.php:1011
112
  msgid "Action"
113
  msgstr "Aktion"
114
 
115
+ #: wp-table-reloaded-admin.php:657
116
  msgid "Edit"
117
  msgstr "Bearbeiten"
118
 
119
+ #: wp-table-reloaded-admin.php:1543
120
  msgid "Do you want to copy this table?"
121
  msgstr "Möchtest du diese Tabelle kopieren?"
122
 
123
+ #: wp-table-reloaded-admin.php:658
124
  msgid "Copy"
125
  msgstr "Kopieren"
126
 
127
+ #: wp-table-reloaded-admin.php:659
128
  msgid "Export"
129
  msgstr "Exportieren"
130
 
131
+ #: wp-table-reloaded-admin.php:1544
 
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:660
136
  msgid "Delete"
137
  msgstr "Löschen"
138
 
139
+ #: wp-table-reloaded-admin.php:596
140
+ #: wp-table-reloaded-admin.php:677
141
+ #: wp-table-reloaded-admin.php:1129
142
  msgid "No tables found."
143
  msgstr "Keine Tabellen gefunden."
144
 
145
+ #: wp-table-reloaded-admin.php:677
146
+ #: wp-table-reloaded-admin.php:1129
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:685
152
+ #: wp-table-reloaded-admin.php:1312
153
  msgid "Add new Table"
154
  msgstr "Neue Tabelle anlegen"
155
 
156
+ #: wp-table-reloaded-admin.php:689
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:705
161
  msgid "Number of Rows"
162
  msgstr "Anzahl Zeilen"
163
 
164
+ #: wp-table-reloaded-admin.php:709
165
  msgid "Number of Columns"
166
  msgstr "Anzahl Spalten"
167
 
168
+ #: wp-table-reloaded-admin.php:716
169
  msgid "Add Table"
170
  msgstr "Tabelle anlegen"
171
 
172
+ #: wp-table-reloaded-admin.php:736
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:742
177
  msgid "Table Information"
178
  msgstr "Informationen über die Tabelle"
179
 
180
+ #: wp-table-reloaded-admin.php:768
181
  msgid "Table Contents"
182
  msgstr "Inhalte der Tabelle"
183
 
184
+ #: wp-table-reloaded-admin.php:796
185
  msgid "Insert Row"
186
  msgstr "Zeile einfügen"
187
 
188
+ #: wp-table-reloaded-admin.php:1545
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:798
193
  msgid "Delete Row"
194
  msgstr "Zeile löschen"
195
 
196
+ #: wp-table-reloaded-admin.php:808
197
  msgid "Insert Column"
198
  msgstr "Spalte einfügen"
199
 
200
+ #: wp-table-reloaded-admin.php:1546
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:810
205
  msgid "Delete Column"
206
  msgstr "Spalte löschen"
207
 
208
+ #: wp-table-reloaded-admin.php:815
209
  msgid "Add Row"
210
  msgstr "Zeile hinzufügen"
211
 
212
+ #: wp-table-reloaded-admin.php:815
213
  msgid "Add Column"
214
  msgstr "Spalte hinzufügen"
215
 
216
+ #: wp-table-reloaded-admin.php:842
217
+ #: wp-table-reloaded-admin.php:862
218
  msgid "Swap"
219
  msgstr "Tauschen"
220
 
221
+ #: wp-table-reloaded-admin.php:895
222
  msgid "Table Settings"
223
  msgstr "Einstellungen zur Tabelle"
224
 
225
+ #: wp-table-reloaded-admin.php:897
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:900
230
  msgid "Alternating row colors"
231
  msgstr "alternierende Zeilenfarben"
232
 
233
+ #: wp-table-reloaded-admin.php:901
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:904
238
  msgid "Use Table Headline"
239
  msgstr "Tabellenüberschrift"
240
 
241
+ #: wp-table-reloaded-admin.php:905
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:908
246
  msgid "Print Table Name"
247
  msgstr "Tabellennamen ausgeben"
248
 
249
+ #: wp-table-reloaded-admin.php:909
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:912
254
  msgid "Print Table Description"
255
  msgstr "Tabellenbeschreibung ausgeben"
256
 
257
+ #: wp-table-reloaded-admin.php:913
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:916
262
  msgid "Use Tablesorter"
263
  msgstr "Tablesorter benutzen"
264
 
265
+ #: wp-table-reloaded-admin.php:917
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:758
270
+ #: wp-table-reloaded-admin.php:926
271
  msgid "Update Changes"
272
  msgstr "Änderungen speichern"
273
 
274
+ #: wp-table-reloaded-admin.php:759
275
+ #: wp-table-reloaded-admin.php:927
276
  msgid "Save and go back"
277
  msgstr "Speichern und zurück"
278
 
279
+ #: wp-table-reloaded-admin.php:762
280
+ #: wp-table-reloaded-admin.php:930
281
  msgid "Cancel"
282
  msgstr "Abbrechen"
283
 
284
+ #: wp-table-reloaded-admin.php:932
285
  msgid "Other actions"
286
  msgstr "Andere Aktionen"
287
 
288
+ #: wp-table-reloaded-admin.php:935
289
  msgid "Delete Table"
290
  msgstr "Tabelle löschen"
291
 
292
+ #: wp-table-reloaded-admin.php:936
293
+ #: wp-table-reloaded-admin.php:1118
294
  msgid "Export Table"
295
  msgstr "Tabelle exportieren"
296
 
297
+ #: wp-table-reloaded-admin.php:947
298
+ #: wp-table-reloaded-admin.php:1313
299
  msgid "Import a Table"
300
  msgstr "Eine Tabelle importieren"
301
 
302
+ #: wp-table-reloaded-admin.php:968
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:982
 
 
 
 
307
  msgid "Import Table"
308
  msgstr "Tabelle importieren"
309
 
310
+ #: wp-table-reloaded-admin.php:1065
311
+ #: wp-table-reloaded-admin.php:1314
312
  msgid "Export a Table"
313
  msgstr "Eine Tabelle exportieren"
314
 
315
+ #: wp-table-reloaded-admin.php:1077
316
  msgid "Select Table to Export"
317
  msgstr "zu exportierende Tabelle auswählen"
318
 
319
+ #: wp-table-reloaded-admin.php:1092
320
  msgid "Select Export Format"
321
  msgstr "gewünschtes Export-Format"
322
 
323
+ #: wp-table-reloaded-admin.php:1102
324
  msgid "Select Delimiter to use"
325
  msgstr "zu verwendendes Trennzeichen"
326
 
327
+ #: wp-table-reloaded-admin.php:1138
328
  msgid "General Plugin Options"
329
  msgstr "Plugin-Einstellungen"
330
 
331
+ #: wp-table-reloaded-admin.php:1142
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:1179
336
  msgid "Uninstall Plugin upon Deactivation?"
337
  msgstr "Plugin beim Deaktivieren deinstallieren?"
338
 
339
+ #: wp-table-reloaded-admin.php:1153
340
  msgid "Enable Tablesorter-JavaScript?"
341
  msgstr "Tablesorter-JavaScript aktivieren?"
342
 
343
+ #: wp-table-reloaded-admin.php:1190
 
 
 
 
344
  msgid "Save Options"
345
  msgstr "Einstellungen speichern"
346
 
347
+ #: wp-table-reloaded-admin.php:1548
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:1549
352
  msgid "Are you really sure?"
353
  msgstr "Bist du wirklich sicher?"
354
 
355
+ #: wp-table-reloaded-admin.php:1212
356
  msgid "Information about the plugin"
357
  msgstr "Informationen über das Plugin"
358
 
359
+ #: wp-table-reloaded-admin.php:1241
 
 
 
 
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:1311
364
  msgid "List Tables"
365
  msgstr "Liste der Tabellen"
366
 
367
+ #: wp-table-reloaded-admin.php:1316
368
  msgid "Plugin Options"
369
  msgstr "Plugin-Einstellungen"
370
 
371
+ #: wp-table-reloaded-admin.php:1317
372
  msgid "About the Plugin"
373
  msgstr "Über das Plugin"
374
 
375
  #: php/wp-table-reloaded-export.class.php:30
376
+ #: php/wp-table-reloaded-import.class.php:38
377
  msgid "CSV - Character-Separated Values"
378
  msgstr "CSV - Character-Separated Values"
379
 
380
  #: php/wp-table-reloaded-export.class.php:32
381
+ #: php/wp-table-reloaded-import.class.php:40
382
  msgid "XML - eXtended Markup Language"
383
  msgstr "XML - eXtended Markup Language"
384
 
385
  #: php/wp-table-reloaded-export.class.php:35
 
386
  msgid "; (semicolon)"
387
  msgstr "; (Semikolon)"
388
 
389
  #: php/wp-table-reloaded-export.class.php:36
 
390
  msgid ", (comma)"
391
  msgstr ", (Komma)"
392
 
393
  #: php/wp-table-reloaded-export.class.php:37
 
394
  msgid ": (colon)"
395
  msgstr ": (Doppelpunkt)"
396
 
397
+ #: wp-table-reloaded-admin.php:1201
398
  msgid "Uninstall Plugin WP-Table Reloaded"
399
  msgstr "Plugin WP-Table Reloaded deinstallieren"
400
 
401
  #: php/wp-table-reloaded-export.class.php:31
402
+ #: php/wp-table-reloaded-import.class.php:39
403
  msgid "HTML - Hypertext Markup Language"
404
  msgstr "HTML - Hypertext Markup Language"
405
 
406
+ #: wp-table-reloaded-admin.php:261
407
+ #: wp-table-reloaded-admin.php:310
408
  msgid "Copy of"
409
  msgstr "Kopie von"
410
 
411
+ #: wp-table-reloaded-admin.php:425
412
  msgid "Imported Table"
413
  msgstr "Importierte Tabelle"
414
 
415
+ #: wp-table-reloaded-admin.php:426
416
  msgid "via form"
417
  msgstr "via Eingabefeld"
418
 
419
+ #: wp-table-reloaded-admin.php:445
420
  msgid "Table could not be imported."
421
  msgstr "Tabelle konnte nicht importiert werden."
422
 
423
+ #: wp-table-reloaded-admin.php:535
424
  msgid "WP-Table Reloaded"
425
  msgstr "WP-Table Reloaded"
426
 
427
+ #: wp-table-reloaded-admin.php:536
428
  msgid "Plugin deactivated successfully."
429
  msgstr "Plugin erfolgreich deaktiviert."
430
 
431
+ #: wp-table-reloaded-admin.php:537
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:698
 
 
 
 
436
  msgid "Enter Table Name"
437
  msgstr "Tabellennamen eingeben"
438
 
439
+ #: wp-table-reloaded-admin.php:702
440
  msgid "Enter Description"
441
  msgstr "Beschreibung eingeben"
442
 
443
+ #: wp-table-reloaded-admin.php:958
444
  msgid "Select Import Format"
445
  msgstr "Import-Format wählen"
446
 
447
+ #: wp-table-reloaded-admin.php:1109
 
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:972
452
  msgid "- or -"
453
  msgstr "- oder -"
454
 
455
+ #: wp-table-reloaded-admin.php:973
456
  msgid "(upload will be preferred over pasting)"
457
  msgstr "(Hochladen hat Vorrang vor manueller Eingabe)"
458
 
459
+ #: wp-table-reloaded-admin.php:976
460
  msgid "Paste data with Table to Import"
461
  msgstr "zu importierende Tabelle einfügen"
462
 
463
+ #: wp-table-reloaded-admin.php:1032
464
  msgid "Import"
465
  msgstr "Import"
466
 
467
+ #: wp-table-reloaded-admin.php:1069
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:1112
472
  msgid "Download file"
473
  msgstr "Datei downloaden"
474
 
475
+ #: wp-table-reloaded-admin.php:1113
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:1149
480
  msgid "Frontend Options"
481
  msgstr "Darstellungsoptionen"
482
 
483
+ #: wp-table-reloaded-admin.php:1175
484
  msgid "Admin Options"
485
  msgstr "Verwaltungseinstellungen"
486
 
487
+ #: wp-table-reloaded-admin.php:1196
 
 
 
 
488
  msgid "Manually Uninstall Plugin"
489
  msgstr "Manuelle Plugin-Deinstallation"
490
 
491
+ #: wp-table-reloaded-admin.php:1198
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:1218
496
  msgid "Plugin Purpose"
497
  msgstr "Zweck des Plugins"
498
 
499
+ #: wp-table-reloaded-admin.php:1225
 
 
 
 
500
  msgid "Usage"
501
  msgstr "Benutzung"
502
 
503
+ #: wp-table-reloaded-admin.php:1232
 
 
 
 
504
  msgid "More Information and Documentation"
505
  msgstr "Weitere Informationen und Dokumentation"
506
 
507
+ #: wp-table-reloaded-admin.php:1239
 
 
 
 
508
  msgid "Author and Licence"
509
  msgstr "Autor und Lizenz"
510
 
511
+ #: wp-table-reloaded-admin.php:1246
 
 
 
 
512
  msgid "Credits and Thanks"
513
  msgstr "Danksagungen"
514
 
515
+ #: wp-table-reloaded-admin.php:839
 
 
 
 
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:859
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:995
 
 
 
 
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:1547
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:1046
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:1533
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:1249
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:1251
546
  msgid "the submitters of translations:"
547
  msgstr "die Übersetzer:"
548
 
549
+ #: wp-table-reloaded-admin.php:1252
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:1254
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:1255
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:1257
 
 
 
 
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:1258
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:1157
570
  msgid "Add custom CSS?"
571
  msgstr "Eigenes CSS hinzufügen?"
572
 
573
+ #: wp-table-reloaded-admin.php:1164
 
 
 
 
 
574
  msgid "Enter custom CSS"
575
  msgstr "Eigenes CSS eingeben"
576
 
577
+ #: wp-table-reloaded-admin.php:733
578
  #, php-format
579
  msgid "Edit Table \"%s\""
580
  msgstr "Bearbeite Tabelle \"%s\""
581
 
582
+ #: wp-table-reloaded-admin.php:737
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:824
588
  msgid "Data Manipulation"
589
  msgstr "Bearbeitungsfunktionen"
590
 
591
+ #: wp-table-reloaded-admin.php:866
592
  msgid "Insert Link"
593
  msgstr "Link einfügen"
594
 
595
+ #: wp-table-reloaded-admin.php:866
596
  msgid "Insert Image"
597
  msgstr "Bild einfügen"
598
 
599
+ #: wp-table-reloaded-admin.php:1534
600
  msgid "URL of link to insert"
601
  msgstr "URL des einzufügenden Links"
602
 
603
+ #: wp-table-reloaded-admin.php:1535
 
604
  msgid "Text of link"
605
  msgstr "Text des Links"
606
 
607
+ #: wp-table-reloaded-admin.php:1536
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:1537
612
  msgid "URL of image to insert"
613
  msgstr "URL des einzufügenden Bildes"
614
 
615
+ #: wp-table-reloaded-admin.php:1539
 
 
 
 
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:951
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
 
623
+ #: php/wp-table-reloaded-export.class.php:38
624
+ msgid ". (dot)"
625
+ msgstr ". (Punkt)"
626
+
627
+ #: php/wp-table-reloaded-export.class.php:39
628
+ msgid "| (pipe)"
629
+ msgstr "| (Strich)"
630
+
631
+ #: wp-table-reloaded-admin.php:226
632
+ msgid "Table sorted successfully."
633
+ msgstr "Tabelle erfolgreich sortiert."
634
+
635
+ #: wp-table-reloaded-admin.php:265
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:274
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:287
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:293
654
+ msgid "You did not select any tables!"
655
+ msgstr "Du hast keine Tabellen ausgewählt."
656
+
657
+ #: wp-table-reloaded-admin.php:555
658
+ #: wp-table-reloaded-admin.php:616
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:555
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:556
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:587
671
+ msgid "Insert"
672
+ msgstr "Einfügen"
673
+
674
+ #: wp-table-reloaded-admin.php:616
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:617
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:668
683
+ #: wp-table-reloaded-admin.php:1040
684
+ msgid "Bulk actions:"
685
+ msgstr "Massenbearbeitung:"
686
+
687
+ #: wp-table-reloaded-admin.php:668
688
+ msgid "Copy Tables"
689
+ msgstr "Tabellen kopieren"
690
+
691
+ #: wp-table-reloaded-admin.php:668
692
+ msgid "Delete Tables"
693
+ msgstr "Tabellen löschen"
694
+
695
+ #: wp-table-reloaded-admin.php:768
696
+ #: wp-table-reloaded-admin.php:824
697
+ #: wp-table-reloaded-admin.php:895
698
+ #: wp-table-reloaded-admin.php:1265
699
+ msgid "Hide"
700
+ msgstr "Ausblenden"
701
+
702
+ #: wp-table-reloaded-admin.php:768
703
+ #: wp-table-reloaded-admin.php:824
704
+ #: wp-table-reloaded-admin.php:895
705
+ #: wp-table-reloaded-admin.php:1265
706
+ msgid "Expand"
707
+ msgstr "Erweitern"
708
+
709
+ #: wp-table-reloaded-admin.php:878
710
+ msgid "ascending"
711
+ msgstr "aufsteigender"
712
+
713
+ #: wp-table-reloaded-admin.php:879
714
+ msgid "descending"
715
+ msgstr "absteigender"
716
+
717
+ #: wp-table-reloaded-admin.php:882
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:885
723
+ msgid "Sort"
724
+ msgstr "Sortieren"
725
+
726
+ #: wp-table-reloaded-admin.php:1040
727
+ msgid "Import Tables"
728
+ msgstr "Tabellen importieren"
729
+
730
+ #: wp-table-reloaded-admin.php:1154
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:1159
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:1166
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:1167
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:1167
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:1180
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:1180
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:1220
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:1220
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:1220
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:1220
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:1227
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:1227
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:1227
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:1227
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:1227
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:1227
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:1227
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:1227
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:1234
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:1234
813
+ #: wp-table-reloaded-admin.php:1325
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:1241
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:1241
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:1250
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:1253
830
+ msgid "Czech (thanks to <a href=\"http://separatista.net/\">Pavel</a>)"
831
+ msgstr "Tschechische (danke an <a href=\"http://separatista.net/\">Pavel</a>)"
832
+
833
+ #: wp-table-reloaded-admin.php:1256
834
+ msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
835
+ msgstr "Spanisch (danke an <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> und <a href=\"http://halles.cl/\">Matias Halles</a>)"
836
+
837
+ #: wp-table-reloaded-admin.php:1259
838
+ msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
839
+ msgstr "und an alle Spender, Mitarbeiter, Förderer, Kritiker und Nutzer des Plugins!"
840
+
841
+ #: wp-table-reloaded-admin.php:1265
842
+ msgid "Debug and Version Information"
843
+ msgstr "Debug- und Versions-Informationen"
844
+
845
+ #: wp-table-reloaded-admin.php:1268
846
+ msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
847
+ msgstr "Du nutzt folgende Software-Versionen. <strong>Bitte gib diese Informationen in Bug-Reports an.</strong>"
848
+
849
+ #: wp-table-reloaded-admin.php:1325
850
+ msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
851
+ msgstr "Weitere Informationen findest du auf der <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-deutsch/\">Plugin-Webseite</a>."
852
+
853
+ #: wp-table-reloaded-admin.php:1538
854
+ msgid "''alt'' text of the image"
855
+ msgstr "''alt''-Text des Bildes"
856
+
857
+ #: wp-table-reloaded-admin.php:1540
858
+ msgid "Do you want to copy the selected tables?"
859
+ msgstr "Möchtest du die ausgewählten Tabellen kopieren?"
860
+
861
+ #: wp-table-reloaded-admin.php:1541
862
+ msgid "The selected tables and all content will be erased. Do you really want to delete them?"
863
+ msgstr "Die ausgewählten Tabellen und alle Inhalte werden gelöscht. Willst du diese wirklich löschen?"
864
+
865
+ #: wp-table-reloaded-admin.php:1542
866
+ msgid "Do you really want to import the selected tables from the wp-Table plugin?"
867
+ msgstr "Möchtest du die ausgewählten Tabellen aus dem Plugin wp-Table importieren?"
868
+
869
+ #: wp-table-reloaded-admin.php:1600
870
+ msgid "Table"
871
+ msgstr "Tabelle"
872
+
languages/wp-table-reloaded-ru_RU.mo CHANGED
Binary file
languages/wp-table-reloaded-ru_RU.po CHANGED
@@ -15,668 +15,861 @@ msgstr ""
15
  "X-Poedit-SearchPath-0: ."
16
 
17
  #: php/wp-table-reloaded-export.class.php:30
18
- #: php/wp-table-reloaded-import.class.php:41
19
  msgid "CSV - Character-Separated Values"
20
  msgstr "CSV - Character-Separated Values"
21
 
22
  #: php/wp-table-reloaded-export.class.php:31
23
- #: php/wp-table-reloaded-import.class.php:42
24
  msgid "HTML - Hypertext Markup Language"
25
  msgstr "HTML - Hypertext Markup Language"
26
 
27
  #: php/wp-table-reloaded-export.class.php:32
28
- #: php/wp-table-reloaded-import.class.php:43
29
  msgid "XML - eXtended Markup Language"
30
  msgstr "XML - eXtended Markup Language"
31
 
32
  #: php/wp-table-reloaded-export.class.php:35
33
- #: php/wp-table-reloaded-import.class.php:36
34
  msgid "; (semicolon)"
35
  msgstr "; (точка с запятой)"
36
 
37
  #: php/wp-table-reloaded-export.class.php:36
38
- #: php/wp-table-reloaded-import.class.php:37
39
  msgid ", (comma)"
40
  msgstr ", (запятая)"
41
 
42
  #: php/wp-table-reloaded-export.class.php:37
43
- #: php/wp-table-reloaded-import.class.php:38
44
  msgid ": (colon)"
45
  msgstr ": (двоеточие)"
46
 
47
- #: wp-table-reloaded-admin.php:137
48
  #, php-format
49
  msgid "Table \"%s\" added successfully."
50
  msgstr "Таблица \"%s\" успешно добавлена."
51
 
52
- #: wp-table-reloaded-admin.php:160
53
  msgid "Table edited successfully."
54
  msgstr "Таблица успешно отредактирована."
55
 
56
- #: wp-table-reloaded-admin.php:176
57
  msgid "Rows swapped successfully."
58
  msgstr "Строки успешно поменяны местами."
59
 
60
- #: wp-table-reloaded-admin.php:195
61
  msgid "Columns swapped successfully."
62
  msgstr "Столбцы успешно поменяны местами."
63
 
64
- #: wp-table-reloaded-admin.php:224
 
65
  msgid "Copy of"
66
  msgstr "Копия"
67
 
68
- #: wp-table-reloaded-admin.php:229
69
  #, php-format
70
  msgid "Table \"%s\" copied successfully."
71
  msgstr "Таблица \"%s\" успешно скопирована."
72
 
73
- #: wp-table-reloaded-admin.php:248
74
  #, php-format
75
  msgid "Table \"%s\" deleted successfully."
76
  msgstr "Таблица \"%s\" успешно удалена."
77
 
78
- #: wp-table-reloaded-admin.php:258
79
  msgid "Row deleted successfully."
80
  msgstr "Строка успешно удалена."
81
 
82
- #: wp-table-reloaded-admin.php:271
83
  msgid "Column deleted successfully."
84
  msgstr "Столбец успешно удален."
85
 
86
- #: wp-table-reloaded-admin.php:276
87
  msgid "Delete failed."
88
  msgstr "Ошибка при удалении."
89
 
90
- #: wp-table-reloaded-admin.php:300
91
  msgid "Row inserted successfully."
92
  msgstr "Строка вставлена успешно."
93
 
94
- #: wp-table-reloaded-admin.php:309
95
  msgid "Column inserted successfully."
96
  msgstr "Столбец вставлен успешно."
97
 
98
- #: wp-table-reloaded-admin.php:312
99
  msgid "Insert failed."
100
  msgstr "Ошибка при вставке."
101
 
102
- #: wp-table-reloaded-admin.php:340
103
  msgid "Imported Table"
104
  msgstr "Импортированная таблица"
105
 
106
- #: wp-table-reloaded-admin.php:341
107
  msgid "via form"
108
  msgstr "из формы"
109
 
110
- #: wp-table-reloaded-admin.php:358
111
- #: wp-table-reloaded-admin.php:379
112
  msgid "Table imported successfully."
113
  msgstr "Таблица импортирована успешно."
114
 
115
- #: wp-table-reloaded-admin.php:361
116
  msgid "Table could not be imported."
117
  msgstr "Таблица не может быть импортирована."
118
 
119
- #: wp-table-reloaded-admin.php:405
120
  #, php-format
121
  msgid "Table \"%s\" exported successfully."
122
  msgstr "Таблица \"%s\" экспортирована успешно."
123
 
124
- #: wp-table-reloaded-admin.php:433
125
  msgid "Options saved successfully."
126
  msgstr "Настройки успешно сохранены."
127
 
128
- #: wp-table-reloaded-admin.php:451
129
  msgid "WP-Table Reloaded"
130
  msgstr "Работа с таблицами"
131
 
132
- #: wp-table-reloaded-admin.php:452
133
  msgid "Plugin deactivated successfully."
134
  msgstr "Плагин успешно деактивирован."
135
 
136
- #: wp-table-reloaded-admin.php:453
137
  msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
138
  msgstr "Все таблицы, данные и настройки были удалены. Теперь можно удалить сам плагин из директории плагинов WordPress (wp-content/plugins)."
139
 
140
- #: wp-table-reloaded-admin.php:471
 
141
  msgid "List of Tables"
142
  msgstr "Список таблиц"
143
 
144
- #: wp-table-reloaded-admin.php:474
145
- msgid "This is a list of all available tables. You may add, edit, copy or delete tables here."
146
- msgstr "Это список всех доступных таблиц. Здесь Вы можете добавлять, редактировать, копировать и удалять таблицы."
147
-
148
- #: wp-table-reloaded-admin.php:475
149
- msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode: <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
150
- msgstr "Для отображения таблицы на странице, в новости или текстовом виджете используйте код: <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
151
-
152
- #: wp-table-reloaded-admin.php:483
153
- #: wp-table-reloaded-admin.php:887
154
  msgid "ID"
155
  msgstr "ID"
156
 
157
- #: wp-table-reloaded-admin.php:484
158
- #: wp-table-reloaded-admin.php:544
159
- #: wp-table-reloaded-admin.php:594
160
- #: wp-table-reloaded-admin.php:888
 
161
  msgid "Table Name"
162
  msgstr "Имя таблицы"
163
 
164
- #: wp-table-reloaded-admin.php:485
165
- #: wp-table-reloaded-admin.php:548
166
- #: wp-table-reloaded-admin.php:598
167
- #: wp-table-reloaded-admin.php:889
 
168
  msgid "Description"
169
  msgstr "Описание"
170
 
171
- #: wp-table-reloaded-admin.php:486
172
- #: wp-table-reloaded-admin.php:890
 
173
  msgid "Action"
174
  msgstr "Действие"
175
 
176
- #: wp-table-reloaded-admin.php:511
177
  msgid "Edit"
178
  msgstr "Изменить"
179
 
180
- #: wp-table-reloaded-admin.php:512
181
  msgid "Do you want to copy this table?"
182
  msgstr "Вы хотите скопировать эту таблицу?"
183
 
184
- #: wp-table-reloaded-admin.php:512
185
  msgid "Copy"
186
  msgstr "Копировать"
187
 
188
- #: wp-table-reloaded-admin.php:513
189
  msgid "Export"
190
  msgstr "Экспорт"
191
 
192
- #: wp-table-reloaded-admin.php:514
193
- #: wp-table-reloaded-admin.php:807
194
  msgid "The complete table and all content will be erased. Do you really want to delete it?"
195
  msgstr "Таблица и все её содержимое будет стерто. Вы действительно хотите удалить её?"
196
 
197
- #: wp-table-reloaded-admin.php:514
198
  msgid "Delete"
199
  msgstr "Удалить"
200
 
201
- #: wp-table-reloaded-admin.php:524
202
- #: wp-table-reloaded-admin.php:1001
 
203
  msgid "No tables found."
204
  msgstr "Таблицы не найдены."
205
 
206
- #: wp-table-reloaded-admin.php:524
207
- #: wp-table-reloaded-admin.php:1001
208
  #, php-format
209
  msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
210
  msgstr "Вы можете <a href=\"%s\">добавить</a> или <a href=\"%s\">импортировать</a>!"
211
 
212
- #: wp-table-reloaded-admin.php:532
213
- #: wp-table-reloaded-admin.php:1171
214
  msgid "Add new Table"
215
  msgstr "Создать таблицу"
216
 
217
- #: wp-table-reloaded-admin.php:536
218
  msgid "You can add a new table here. Just enter it's name, a description (optional) and the number of rows and columns.<br/>You may add, insert or delete rows and columns later."
219
  msgstr "Здесь Вы можете создать новую таблицу. Просто введите название, описание (не обязательно) и количество строк и столбцов.<br/>Добавить, вставить или удалить строки и столбцы Вы сможете позднее."
220
 
221
- #: wp-table-reloaded-admin.php:545
222
  msgid "Enter Table Name"
223
  msgstr "Введите имя таблицы"
224
 
225
- #: wp-table-reloaded-admin.php:549
226
  msgid "Enter Description"
227
  msgstr "Введите описание"
228
 
229
- #: wp-table-reloaded-admin.php:552
230
  msgid "Number of Rows"
231
  msgstr "Количество строк"
232
 
233
- #: wp-table-reloaded-admin.php:556
234
  msgid "Number of Columns"
235
  msgstr "Количество столбцов"
236
 
237
- #: wp-table-reloaded-admin.php:563
238
  msgid "Add Table"
239
  msgstr "Добавить таблицу"
240
 
241
- #: wp-table-reloaded-admin.php:584
242
  msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
243
  msgstr "Здесь Вы можете изменять данные в таблице. Ещё Вы можете добавлять или удалять строки и столбцы."
244
 
245
- #: wp-table-reloaded-admin.php:590
246
  msgid "Table Information"
247
  msgstr "Информация о таблице"
248
 
249
- #: wp-table-reloaded-admin.php:616
250
  msgid "Table Contents"
251
  msgstr "Содержание таблицы"
252
 
253
- #: wp-table-reloaded-admin.php:644
254
  msgid "Insert Row"
255
  msgstr "Вставить строку"
256
 
257
- #: wp-table-reloaded-admin.php:646
258
  msgid "Do you really want to delete this row?"
259
  msgstr "Вы на самом деле хотите удалить эту строку?"
260
 
261
- #: wp-table-reloaded-admin.php:646
262
  msgid "Delete Row"
263
  msgstr "Удалить строку"
264
 
265
- #: wp-table-reloaded-admin.php:656
266
  msgid "Insert Column"
267
  msgstr "Вставить столбец"
268
 
269
- #: wp-table-reloaded-admin.php:658
270
  msgid "Do you really want to delete this column?"
271
  msgstr "Вы на самом деле хотите удалить этот столбец?"
272
 
273
- #: wp-table-reloaded-admin.php:658
274
  msgid "Delete Column"
275
  msgstr "Удалить столбец"
276
 
277
- #: wp-table-reloaded-admin.php:663
278
  msgid "Add Row"
279
  msgstr "Добавить строку"
280
 
281
- #: wp-table-reloaded-admin.php:663
282
  msgid "Add Column"
283
  msgstr "Добавить столбец"
284
 
285
- #: wp-table-reloaded-admin.php:687
286
  #, php-format
287
  msgid "Swap rows %s and %s"
288
  msgstr "Поменять местами строки %s и %s"
289
 
290
- #: wp-table-reloaded-admin.php:690
291
- #: wp-table-reloaded-admin.php:710
292
  msgid "Swap"
293
  msgstr "Поменять"
294
 
295
- #: wp-table-reloaded-admin.php:707
296
  #, php-format
297
  msgid "Swap columns %s and %s"
298
  msgstr "Поменять местами столбцы %s и %s"
299
 
300
- #: wp-table-reloaded-admin.php:767
301
  msgid "Table Settings"
302
  msgstr "Настройки таблицы"
303
 
304
- #: wp-table-reloaded-admin.php:769
305
  msgid "These settings will only be used for this table."
306
  msgstr "Эти настройки используются только для этой таблицы."
307
 
308
- #: wp-table-reloaded-admin.php:772
309
  msgid "Alternating row colors"
310
  msgstr "Разные цвета для строк"
311
 
312
- #: wp-table-reloaded-admin.php:773
313
  msgid "Every second row will have an alternating background color."
314
  msgstr "Каждая вторая строка будет иметь другой цвет фона."
315
 
316
- #: wp-table-reloaded-admin.php:776
317
  msgid "Use Table Headline"
318
  msgstr "Использовать заголовок таблицы"
319
 
320
- #: wp-table-reloaded-admin.php:777
321
  msgid "The first row of your table will use the [th] tag."
322
  msgstr "Первая строка Вашей таблицы будет использовать тег [th]."
323
 
324
- #: wp-table-reloaded-admin.php:780
325
  msgid "Print Table Name"
326
  msgstr "Печатать название таблицы"
327
 
328
- #: wp-table-reloaded-admin.php:781
329
  msgid "The Table Name will be written above the table in a [h2] tag."
330
  msgstr "Имя таблицы будет написано над таблицей в теге [h2]."
331
 
332
- #: wp-table-reloaded-admin.php:784
333
  msgid "Print Table Description"
334
  msgstr "Печатать описание таблицы"
335
 
336
- #: wp-table-reloaded-admin.php:785
337
  msgid "The Table Description will be written under the table."
338
  msgstr "Описание таблицы будет написано после таблицы."
339
 
340
- #: wp-table-reloaded-admin.php:788
341
  msgid "Use Tablesorter"
342
  msgstr "Использовать сортировку в таблице"
343
 
344
- #: wp-table-reloaded-admin.php:789
345
  msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. <small>Attention: You must have Tablesorter enabled on the \"Plugin Options\" page and the option \"Use Table Headline\" has to be enabled above for this to work!</small>"
346
  msgstr "Вы можете сортировать таблицу используя <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. <small>Внимание: Вы должны включить сортировку таблиц в \"Настройках плагина\" и опция \"Использовать заголовок таблицы\" должна быть включена для того чтобы это работало!</small>"
347
 
348
- #: wp-table-reloaded-admin.php:606
349
- #: wp-table-reloaded-admin.php:798
350
  msgid "Update Changes"
351
  msgstr "Сохранить изменения"
352
 
353
- #: wp-table-reloaded-admin.php:607
354
- #: wp-table-reloaded-admin.php:799
355
  msgid "Save and go back"
356
  msgstr "Сохранить и вернуться"
357
 
358
- #: wp-table-reloaded-admin.php:610
359
- #: wp-table-reloaded-admin.php:802
360
  msgid "Cancel"
361
  msgstr "Отмена"
362
 
363
- #: wp-table-reloaded-admin.php:804
364
  msgid "Other actions"
365
  msgstr "Другие действия"
366
 
367
- #: wp-table-reloaded-admin.php:807
368
  msgid "Delete Table"
369
  msgstr "Удалить таблицу"
370
 
371
- #: wp-table-reloaded-admin.php:808
372
- #: wp-table-reloaded-admin.php:990
373
  msgid "Export Table"
374
  msgstr "Экспорт таблицы"
375
 
376
- #: wp-table-reloaded-admin.php:819
377
- #: wp-table-reloaded-admin.php:1172
378
  msgid "Import a Table"
379
  msgstr "Импорт таблицы"
380
 
381
- #: wp-table-reloaded-admin.php:830
382
  msgid "Select Import Format"
383
  msgstr "Выберите формат для импорта"
384
 
385
- #: wp-table-reloaded-admin.php:840
386
- msgid "Used Delimiter"
387
- msgstr "Используется разделитесь"
388
-
389
- #: wp-table-reloaded-admin.php:847
390
- #: wp-table-reloaded-admin.php:981
391
  msgid "<small>(Only needed for CSV export.)</small>"
392
  msgstr "<small>(Необходимо только для CSV.)</small>"
393
 
394
- #: wp-table-reloaded-admin.php:850
395
  msgid "Select File with Table to Import"
396
  msgstr "Выберите файл с таблицей для импорта"
397
 
398
- #: wp-table-reloaded-admin.php:854
399
  msgid "- or -"
400
  msgstr "- или -"
401
 
402
- #: wp-table-reloaded-admin.php:855
403
  msgid "(upload will be preferred over pasting)"
404
  msgstr "(сначала загрузить, потом вставить)"
405
 
406
- #: wp-table-reloaded-admin.php:858
407
  msgid "Paste data with Table to Import"
408
  msgstr "Вставьте данные с таблицей для импорта"
409
 
410
- #: wp-table-reloaded-admin.php:864
411
  msgid "Import Table"
412
  msgstr "Импорт таблицы"
413
 
414
- #: wp-table-reloaded-admin.php:910
415
  msgid "Import"
416
  msgstr "Импорт"
417
 
418
- #: wp-table-reloaded-admin.php:937
419
- #: wp-table-reloaded-admin.php:1173
420
  msgid "Export a Table"
421
  msgstr "Экспорт таблицы"
422
 
423
- #: wp-table-reloaded-admin.php:941
424
  msgid "You may export a table here. Just select the table, your desired export format and a delimiter (needed for CSV only).<br/>You may opt to download the export file. Otherwise it will be shown on this page."
425
  msgstr "Здесь Вы можете сделать экспорт таблицы. Просто выберите в таблице нужный формат экспорта и разделитель (необходимо только для CSV).<br/>Вы можете выбрать файл для загрузки экспорта. В противном случае он будет показан на этой странице."
426
 
427
- #: wp-table-reloaded-admin.php:949
428
  msgid "Select Table to Export"
429
  msgstr "Выберите таблицу для экспорта"
430
 
431
- #: wp-table-reloaded-admin.php:964
432
  msgid "Select Export Format"
433
  msgstr "Выберите формат экспорта"
434
 
435
- #: wp-table-reloaded-admin.php:974
436
  msgid "Select Delimiter to use"
437
  msgstr "Выберите разделитель"
438
 
439
- #: wp-table-reloaded-admin.php:984
440
  msgid "Download file"
441
  msgstr "Скачать файл"
442
 
443
- #: wp-table-reloaded-admin.php:985
444
  msgid "Yes, I want to download the export file."
445
  msgstr "Да, я хочу скачать файл экспорта."
446
 
447
- #: wp-table-reloaded-admin.php:1010
448
  msgid "General Plugin Options"
449
  msgstr "Главные настройки плагина"
450
 
451
- #: wp-table-reloaded-admin.php:1014
452
  msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
453
  msgstr "Вы можете изменить главные настройки плагина.<br/>Они повлияют на все таблицы или на общее поведение плагина."
454
 
455
- #: wp-table-reloaded-admin.php:1021
456
  msgid "Frontend Options"
457
  msgstr "Внешние настройки"
458
 
459
- #: wp-table-reloaded-admin.php:1025
460
  msgid "Enable Tablesorter-JavaScript?"
461
  msgstr "Разрешить сортировку в таблицах с помощью JavaScript?"
462
 
463
- #: wp-table-reloaded-admin.php:1026
464
- msgid "Yes, enable <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> to be used to make table sortable (can be changed for every table separatly)."
465
- msgstr "Да, включить <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>, который используется для сортировки таблиц (можно изменить для каждой таблицы отдельно)."
466
-
467
- #: wp-table-reloaded-admin.php:1042
468
  msgid "Admin Options"
469
  msgstr "Административные настройки"
470
 
471
- #: wp-table-reloaded-admin.php:1046
472
  msgid "Uninstall Plugin upon Deactivation?"
473
  msgstr "Удалить плагин после деактивации?"
474
 
475
- #: wp-table-reloaded-admin.php:1047
476
- msgid "Yes, uninstall everything when plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page! (It does not influence the \"Manually Uninstall Plugin\" button below!)"
477
- msgstr "Да, удалить все, когда плагин будет деактивирован. Внимание: Вы должны включить этот флажок, только непосредственно перед отключением плагина на странице плагинов WordPress! (Это не влияет на кнопку \"Удалить плагин вручную\", находящуюся ниже!)"
478
-
479
- #: wp-table-reloaded-admin.php:1057
480
  msgid "Save Options"
481
  msgstr "Сохранить настройки"
482
 
483
- #: wp-table-reloaded-admin.php:1073
484
  msgid "Manually Uninstall Plugin"
485
  msgstr "Удалить плагин вручную"
486
 
487
- #: wp-table-reloaded-admin.php:1075
488
  msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported.<br/> Be very careful with this and only click the button if you know what you are doing!"
489
  msgstr "Здесь Вы можете удалить плагин. Это <strong>приведет к удалению</strong> всех таблиц, данных, настроек и т.д., которые относятся к плагину, в том числе все таблицы, которые вы добавили или импортировали.<br/> Будьте очень осторожны и нажимайте на кнопку, если Вы знаете что делаете!"
490
 
491
- #: wp-table-reloaded-admin.php:1078
492
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
493
  msgstr "Вы на самом деле хотите удалить этот плагин со всеми данными?"
494
 
495
- #: wp-table-reloaded-admin.php:1078
496
  msgid "Are you really sure?"
497
  msgstr "Вы действительно уверены?"
498
 
499
- #: wp-table-reloaded-admin.php:1078
500
  msgid "Uninstall Plugin WP-Table Reloaded"
501
  msgstr "Удалить плагин WP-Table Reloaded"
502
 
503
- #: wp-table-reloaded-admin.php:1088
504
  msgid "Information about the plugin"
505
  msgstr "Информация о плагине"
506
 
507
- #: wp-table-reloaded-admin.php:1094
508
  msgid "Plugin Purpose"
509
  msgstr "Цель плагина"
510
 
511
- #: wp-table-reloaded-admin.php:1096
512
- msgid "This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode."
513
- msgstr "Этот плагин позволит Вам создавать и управлять таблицами в панели администратора WordPress. Вы можете вывести таблицы в новостях, на страницах или в текстовом виджете используя код."
514
-
515
- #: wp-table-reloaded-admin.php:1101
516
  msgid "Usage"
517
  msgstr "Использование"
518
 
519
- #: wp-table-reloaded-admin.php:1103
520
- msgid "At first you should add or import a table. Then edit your data and select the options you want. To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them. You may then style your table via CSS. Every table has the CSS-class \"wp-table-reloaded\". A table also has the class \"wp-table-reloaded-&lt;table-id&gt;\". You can also use the classes \"column-&lt;number&gt;\" and \"row-&lt;number&gt;\" to style rows and columns individually. Use this to style columns width and text alignment."
521
- msgstr "Для начала Вы должны добавить или импортировать таблицу. Далее можете отредактировать данные и установить необходимые опции. Для вставки таблицы в Вашу новость, страницу или текстовый виджет, используйте код [table id=&lt;table-id&gt;]. Вы можете изменить внешний вид таблицы используя CSS. Все таблицы имеют CSS класс \"wp-table-reloaded\". Так же каждая таблица имеет CSS класс \"wp-table-reloaded-&lt;table-id&gt;\". Вы так же можете использовать CSS классы \"column-&lt;number&gt;\" и \"row-&lt;number&gt;\" для изменения стиля строк и столбцов индивидуально. Используйте это для настройки стиля ширины столбца и изменения расположения текста."
522
-
523
- #: wp-table-reloaded-admin.php:1107
524
  msgid "More Information and Documentation"
525
  msgstr "Дополнительная информация и документация"
526
 
527
- #: wp-table-reloaded-admin.php:1109
528
- msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. A documentation and certain support and help request possibilities will be available soon."
529
- msgstr "Дополнительную информацию Вы сможете найти на <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">сайте плагина</a> или на странице плагина в <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
530
-
531
- #: wp-table-reloaded-admin.php:1114
532
  msgid "Author and Licence"
533
  msgstr "Автор и лицензия"
534
 
535
- #: wp-table-reloaded-admin.php:1116
536
  msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. It is licenced as Free Software under GPL 2."
537
  msgstr "Этот плагин написал <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. Он доступен по лицензии Free Software under GPL 2."
538
 
539
- #: wp-table-reloaded-admin.php:1116
540
- msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">donating</a> or rating it at the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. Thanks!"
541
- msgstr "Если вам нравится плагин, пожалуйста <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">сделайте пожертвование</a> или поднимите рейтинг в <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. Спасибо!"
542
-
543
- #: wp-table-reloaded-admin.php:1121
544
  msgid "Credits and Thanks"
545
  msgstr "Благодарности"
546
 
547
- #: wp-table-reloaded-admin.php:1125
548
- msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
549
- msgstr "Christian Bach за сортировку таблиц <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
550
-
551
- #: wp-table-reloaded-admin.php:1133
552
- msgid "and all contributors, supporters, reviewers and users of the plugin!"
553
- msgstr "и всем вкладчикам, сторонникам, рецензорам и пользователям плагина!"
554
-
555
- #: wp-table-reloaded-admin.php:1170
556
  msgid "List Tables"
557
  msgstr "Список таблиц"
558
 
559
- #: wp-table-reloaded-admin.php:1175
560
  msgid "Plugin Options"
561
  msgstr "Настройки плагина"
562
 
563
- #: wp-table-reloaded-admin.php:1176
564
  msgid "About the Plugin"
565
  msgstr "О плагине"
566
 
567
- #: wp-table-reloaded-admin.php:1184
568
- msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a>. A documentation and certain support and help request possibilities will be available soon."
569
- msgstr "Дополнительную информацию Вы сможете найти на <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">сайте плагина</a>."
570
-
571
- #: wp-table-reloaded-admin.php:580
572
  #, php-format
573
  msgid "Edit Table \"%s\""
574
  msgstr "Редактировать таблицу \"%s\""
575
 
576
- #: wp-table-reloaded-admin.php:585
577
  #, php-format
578
  msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
579
  msgstr "Если вы хотите отобразить таблицу на Вашей странице, в новости или текстовом виджете, используйте этот код: <strong>[table id=%s /]</strong>"
580
 
581
- #: wp-table-reloaded-admin.php:672
582
  msgid "Data Manipulation"
583
  msgstr "Работа с данными"
584
 
585
- #: wp-table-reloaded-admin.php:714
586
  msgid "Insert Link"
587
- msgstr "Вставить ссылку"
588
 
589
- #: wp-table-reloaded-admin.php:714
590
  msgid "Insert Image"
591
- msgstr "Вставить картинку"
592
 
593
- #: wp-table-reloaded-admin.php:732
594
  msgid "URL of link to insert"
595
  msgstr "УРЛ ссылки для вставки"
596
 
597
- #: wp-table-reloaded-admin.php:734
598
- #: wp-table-reloaded-admin.php:734
599
  msgid "Text of link"
600
  msgstr "Текст ссылки"
601
 
602
- #: wp-table-reloaded-admin.php:737
603
  msgid "To insert the following link into a cell, just click the cell after closing this dialog."
604
  msgstr "Чтобы добавить ссылку в ячейку, просто нажмите на ячейку после закрытия этого диалогового окна."
605
 
606
- #: wp-table-reloaded-admin.php:746
607
  msgid "URL of image to insert"
608
  msgstr "УРЛ картинки для вставки"
609
 
610
- #: wp-table-reloaded-admin.php:748
611
- msgid "\"alt\" text of the image"
612
- msgstr "\"alt\" текст для изображения"
613
-
614
- #: wp-table-reloaded-admin.php:751
615
  msgid "To insert the following image into a cell, just click the cell after closing this dialog."
616
  msgstr "Чтобы вставить картинку в ячейку, просто нажмите на ячейку после закрытия этого диалогового окна."
617
 
618
- #: wp-table-reloaded-admin.php:823
619
  msgid "You may import a table from existing data here.<br/>It may be a CSV, XML or HTML file. It needs a certain structure though. Please consult the documentation."
620
  msgstr "Здесь Вы можете импортировать таблицу из существующей.<br/>Это может быть CSV, XML или HTML файл. Если что-то непонятно, пожалуйста, обратитесь к документации."
621
 
622
- #: wp-table-reloaded-admin.php:877
623
  msgid "Import from original wp-Table plugin"
624
  msgstr "Импорт из оригинального плагина wp-Table"
625
 
626
- #: wp-table-reloaded-admin.php:910
627
  msgid "Do you really want to import this table from the wp-Table plugin?"
628
  msgstr "Вы на самом деле хотите импортировать эту таблицу из плагина wp-Table?"
629
 
630
- #: wp-table-reloaded-admin.php:918
631
  msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
632
  msgstr "Плагин wp-Table от Alex Rabe установлен, но таблицы не найдены."
633
 
634
- #: wp-table-reloaded-admin.php:1029
635
  msgid "Add custom CSS?"
636
  msgstr "Добавить произвольный CSS?"
637
 
638
- #: wp-table-reloaded-admin.php:1030
639
- #, php-format
640
- msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag. (If you do not want this, just add your CSS styling to your theme's \"style.css\" <small>(located at %s)</small>.) (See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin website</a> for examples.)"
641
- msgstr "Да, включить и загрузить следующий CSS-фрагмент на сайт внутри HTML тега [style]. (Если вы не хотите этого, просто добавьте свой CSS в вашу тему в файл \"style.css\" <small>(расположенный в %s)</small>.)(Смотрите примеры использования на <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">сайте плагина</a>.)"
642
-
643
- #: wp-table-reloaded-admin.php:1034
644
  msgid "Enter custom CSS"
645
  msgstr "Введите произвольный CSS"
646
 
647
- #: wp-table-reloaded-admin.php:1067
648
  msgid "Do you really want to activate this? You should only do that right before uninstallation!"
649
  msgstr "Вы действительно хотите активировать это? Вы должны сделать это до удаления!"
650
 
651
- #: wp-table-reloaded-admin.php:1124
652
  msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
653
  msgstr "Спасибо <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> за оригинальный плагин wp-Table,"
654
 
655
- #: wp-table-reloaded-admin.php:1126
656
  msgid "the submitters of translations:"
657
  msgstr "тем кто сделал перевод:"
658
 
659
- #: wp-table-reloaded-admin.php:1127
660
  msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
661
  msgstr "Албанский (спасибо <a href=\"http://www.romeolab.com/\">Romeo</a>)"
662
 
663
- #: wp-table-reloaded-admin.php:1128
664
  msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
665
  msgstr "Французкий (спасибо <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
666
 
667
- #: wp-table-reloaded-admin.php:1129
668
  msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
669
  msgstr "Русский (спасибо <a href=\"http://wp-skins.info/\">Truper</a>)"
670
 
671
- #: wp-table-reloaded-admin.php:1130
672
- msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>)"
673
- msgstr "Испанский (спасибо <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>)"
674
-
675
- #: wp-table-reloaded-admin.php:1131
676
  msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
677
  msgstr "Шведский (спасибо <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
678
 
679
- #: wp-table-reloaded-admin.php:1132
680
  msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
681
  msgstr "Турецкий (спасибо <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
682
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 - Character-Separated Values"
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 - Hypertext Markup Language"
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 "; (точка с запятой)"
35
 
36
  #: php/wp-table-reloaded-export.class.php:36
 
37
  msgid ", (comma)"
38
  msgstr ", (запятая)"
39
 
40
  #: php/wp-table-reloaded-export.class.php:37
 
41
  msgid ": (colon)"
42
  msgstr ": (двоеточие)"
43
 
44
+ #: wp-table-reloaded-admin.php:150
45
  #, php-format
46
  msgid "Table \"%s\" added successfully."
47
  msgstr "Таблица \"%s\" успешно добавлена."
48
 
49
+ #: wp-table-reloaded-admin.php:173
50
  msgid "Table edited successfully."
51
  msgstr "Таблица успешно отредактирована."
52
 
53
+ #: wp-table-reloaded-admin.php:189
54
  msgid "Rows swapped successfully."
55
  msgstr "Строки успешно поменяны местами."
56
 
57
+ #: wp-table-reloaded-admin.php:208
58
  msgid "Columns swapped successfully."
59
  msgstr "Столбцы успешно поменяны местами."
60
 
61
+ #: wp-table-reloaded-admin.php:261
62
+ #: wp-table-reloaded-admin.php:310
63
  msgid "Copy of"
64
  msgstr "Копия"
65
 
66
+ #: wp-table-reloaded-admin.php:315
67
  #, php-format
68
  msgid "Table \"%s\" copied successfully."
69
  msgstr "Таблица \"%s\" успешно скопирована."
70
 
71
+ #: wp-table-reloaded-admin.php:334
72
  #, php-format
73
  msgid "Table \"%s\" deleted successfully."
74
  msgstr "Таблица \"%s\" успешно удалена."
75
 
76
+ #: wp-table-reloaded-admin.php:344
77
  msgid "Row deleted successfully."
78
  msgstr "Строка успешно удалена."
79
 
80
+ #: wp-table-reloaded-admin.php:357
81
  msgid "Column deleted successfully."
82
  msgstr "Столбец успешно удален."
83
 
84
+ #: wp-table-reloaded-admin.php:362
85
  msgid "Delete failed."
86
  msgstr "Ошибка при удалении."
87
 
88
+ #: wp-table-reloaded-admin.php:386
89
  msgid "Row inserted successfully."
90
  msgstr "Строка вставлена успешно."
91
 
92
+ #: wp-table-reloaded-admin.php:395
93
  msgid "Column inserted successfully."
94
  msgstr "Столбец вставлен успешно."
95
 
96
+ #: wp-table-reloaded-admin.php:398
97
  msgid "Insert failed."
98
  msgstr "Ошибка при вставке."
99
 
100
+ #: wp-table-reloaded-admin.php:425
101
  msgid "Imported Table"
102
  msgstr "Импортированная таблица"
103
 
104
+ #: wp-table-reloaded-admin.php:426
105
  msgid "via form"
106
  msgstr "из формы"
107
 
108
+ #: wp-table-reloaded-admin.php:442
109
+ #: wp-table-reloaded-admin.php:463
110
  msgid "Table imported successfully."
111
  msgstr "Таблица импортирована успешно."
112
 
113
+ #: wp-table-reloaded-admin.php:445
114
  msgid "Table could not be imported."
115
  msgstr "Таблица не может быть импортирована."
116
 
117
+ #: wp-table-reloaded-admin.php:489
118
  #, php-format
119
  msgid "Table \"%s\" exported successfully."
120
  msgstr "Таблица \"%s\" экспортирована успешно."
121
 
122
+ #: wp-table-reloaded-admin.php:517
123
  msgid "Options saved successfully."
124
  msgstr "Настройки успешно сохранены."
125
 
126
+ #: wp-table-reloaded-admin.php:535
127
  msgid "WP-Table Reloaded"
128
  msgstr "Работа с таблицами"
129
 
130
+ #: wp-table-reloaded-admin.php:536
131
  msgid "Plugin deactivated successfully."
132
  msgstr "Плагин успешно деактивирован."
133
 
134
+ #: wp-table-reloaded-admin.php:537
135
  msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
136
  msgstr "Все таблицы, данные и настройки были удалены. Теперь можно удалить сам плагин из директории плагинов WordPress (wp-content/plugins)."
137
 
138
+ #: wp-table-reloaded-admin.php:553
139
+ #: wp-table-reloaded-admin.php:613
140
  msgid "List of Tables"
141
  msgstr "Список таблиц"
142
 
143
+ #: wp-table-reloaded-admin.php:564
144
+ #: wp-table-reloaded-admin.php:628
145
+ #: wp-table-reloaded-admin.php:1008
 
 
 
 
 
 
 
146
  msgid "ID"
147
  msgstr "ID"
148
 
149
+ #: wp-table-reloaded-admin.php:565
150
+ #: wp-table-reloaded-admin.php:629
151
+ #: wp-table-reloaded-admin.php:697
152
+ #: wp-table-reloaded-admin.php:746
153
+ #: wp-table-reloaded-admin.php:1009
154
  msgid "Table Name"
155
  msgstr "Имя таблицы"
156
 
157
+ #: wp-table-reloaded-admin.php:566
158
+ #: wp-table-reloaded-admin.php:630
159
+ #: wp-table-reloaded-admin.php:701
160
+ #: wp-table-reloaded-admin.php:750
161
+ #: wp-table-reloaded-admin.php:1010
162
  msgid "Description"
163
  msgstr "Описание"
164
 
165
+ #: wp-table-reloaded-admin.php:567
166
+ #: wp-table-reloaded-admin.php:631
167
+ #: wp-table-reloaded-admin.php:1011
168
  msgid "Action"
169
  msgstr "Действие"
170
 
171
+ #: wp-table-reloaded-admin.php:657
172
  msgid "Edit"
173
  msgstr "Изменить"
174
 
175
+ #: wp-table-reloaded-admin.php:1543
176
  msgid "Do you want to copy this table?"
177
  msgstr "Вы хотите скопировать эту таблицу?"
178
 
179
+ #: wp-table-reloaded-admin.php:658
180
  msgid "Copy"
181
  msgstr "Копировать"
182
 
183
+ #: wp-table-reloaded-admin.php:659
184
  msgid "Export"
185
  msgstr "Экспорт"
186
 
187
+ #: wp-table-reloaded-admin.php:1544
 
188
  msgid "The complete table and all content will be erased. Do you really want to delete it?"
189
  msgstr "Таблица и все её содержимое будет стерто. Вы действительно хотите удалить её?"
190
 
191
+ #: wp-table-reloaded-admin.php:660
192
  msgid "Delete"
193
  msgstr "Удалить"
194
 
195
+ #: wp-table-reloaded-admin.php:596
196
+ #: wp-table-reloaded-admin.php:677
197
+ #: wp-table-reloaded-admin.php:1129
198
  msgid "No tables found."
199
  msgstr "Таблицы не найдены."
200
 
201
+ #: wp-table-reloaded-admin.php:677
202
+ #: wp-table-reloaded-admin.php:1129
203
  #, php-format
204
  msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
205
  msgstr "Вы можете <a href=\"%s\">добавить</a> или <a href=\"%s\">импортировать</a>!"
206
 
207
+ #: wp-table-reloaded-admin.php:685
208
+ #: wp-table-reloaded-admin.php:1312
209
  msgid "Add new Table"
210
  msgstr "Создать таблицу"
211
 
212
+ #: wp-table-reloaded-admin.php:689
213
  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."
214
  msgstr "Здесь Вы можете создать новую таблицу. Просто введите название, описание (не обязательно) и количество строк и столбцов.<br/>Добавить, вставить или удалить строки и столбцы Вы сможете позднее."
215
 
216
+ #: wp-table-reloaded-admin.php:698
217
  msgid "Enter Table Name"
218
  msgstr "Введите имя таблицы"
219
 
220
+ #: wp-table-reloaded-admin.php:702
221
  msgid "Enter Description"
222
  msgstr "Введите описание"
223
 
224
+ #: wp-table-reloaded-admin.php:705
225
  msgid "Number of Rows"
226
  msgstr "Количество строк"
227
 
228
+ #: wp-table-reloaded-admin.php:709
229
  msgid "Number of Columns"
230
  msgstr "Количество столбцов"
231
 
232
+ #: wp-table-reloaded-admin.php:716
233
  msgid "Add Table"
234
  msgstr "Добавить таблицу"
235
 
236
+ #: wp-table-reloaded-admin.php:736
237
  msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
238
  msgstr "Здесь Вы можете изменять данные в таблице. Ещё Вы можете добавлять или удалять строки и столбцы."
239
 
240
+ #: wp-table-reloaded-admin.php:742
241
  msgid "Table Information"
242
  msgstr "Информация о таблице"
243
 
244
+ #: wp-table-reloaded-admin.php:768
245
  msgid "Table Contents"
246
  msgstr "Содержание таблицы"
247
 
248
+ #: wp-table-reloaded-admin.php:796
249
  msgid "Insert Row"
250
  msgstr "Вставить строку"
251
 
252
+ #: wp-table-reloaded-admin.php:1545
253
  msgid "Do you really want to delete this row?"
254
  msgstr "Вы на самом деле хотите удалить эту строку?"
255
 
256
+ #: wp-table-reloaded-admin.php:798
257
  msgid "Delete Row"
258
  msgstr "Удалить строку"
259
 
260
+ #: wp-table-reloaded-admin.php:808
261
  msgid "Insert Column"
262
  msgstr "Вставить столбец"
263
 
264
+ #: wp-table-reloaded-admin.php:1546
265
  msgid "Do you really want to delete this column?"
266
  msgstr "Вы на самом деле хотите удалить этот столбец?"
267
 
268
+ #: wp-table-reloaded-admin.php:810
269
  msgid "Delete Column"
270
  msgstr "Удалить столбец"
271
 
272
+ #: wp-table-reloaded-admin.php:815
273
  msgid "Add Row"
274
  msgstr "Добавить строку"
275
 
276
+ #: wp-table-reloaded-admin.php:815
277
  msgid "Add Column"
278
  msgstr "Добавить столбец"
279
 
280
+ #: wp-table-reloaded-admin.php:839
281
  #, php-format
282
  msgid "Swap rows %s and %s"
283
  msgstr "Поменять местами строки %s и %s"
284
 
285
+ #: wp-table-reloaded-admin.php:842
286
+ #: wp-table-reloaded-admin.php:862
287
  msgid "Swap"
288
  msgstr "Поменять"
289
 
290
+ #: wp-table-reloaded-admin.php:859
291
  #, php-format
292
  msgid "Swap columns %s and %s"
293
  msgstr "Поменять местами столбцы %s и %s"
294
 
295
+ #: wp-table-reloaded-admin.php:895
296
  msgid "Table Settings"
297
  msgstr "Настройки таблицы"
298
 
299
+ #: wp-table-reloaded-admin.php:897
300
  msgid "These settings will only be used for this table."
301
  msgstr "Эти настройки используются только для этой таблицы."
302
 
303
+ #: wp-table-reloaded-admin.php:900
304
  msgid "Alternating row colors"
305
  msgstr "Разные цвета для строк"
306
 
307
+ #: wp-table-reloaded-admin.php:901
308
  msgid "Every second row will have an alternating background color."
309
  msgstr "Каждая вторая строка будет иметь другой цвет фона."
310
 
311
+ #: wp-table-reloaded-admin.php:904
312
  msgid "Use Table Headline"
313
  msgstr "Использовать заголовок таблицы"
314
 
315
+ #: wp-table-reloaded-admin.php:905
316
  msgid "The first row of your table will use the [th] tag."
317
  msgstr "Первая строка Вашей таблицы будет использовать тег [th]."
318
 
319
+ #: wp-table-reloaded-admin.php:908
320
  msgid "Print Table Name"
321
  msgstr "Печатать название таблицы"
322
 
323
+ #: wp-table-reloaded-admin.php:909
324
  msgid "The Table Name will be written above the table in a [h2] tag."
325
  msgstr "Имя таблицы будет написано над таблицей в теге [h2]."
326
 
327
+ #: wp-table-reloaded-admin.php:912
328
  msgid "Print Table Description"
329
  msgstr "Печатать описание таблицы"
330
 
331
+ #: wp-table-reloaded-admin.php:913
332
  msgid "The Table Description will be written under the table."
333
  msgstr "Описание таблицы будет написано после таблицы."
334
 
335
+ #: wp-table-reloaded-admin.php:916
336
  msgid "Use Tablesorter"
337
  msgstr "Использовать сортировку в таблице"
338
 
339
+ #: wp-table-reloaded-admin.php:917
340
  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>"
341
  msgstr "Вы можете сортировать таблицу используя <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. <small>Внимание: Вы должны включить сортировку таблиц в \"Настройках плагина\" и опция \"Использовать заголовок таблицы\" должна быть включена для того чтобы это работало!</small>"
342
 
343
+ #: wp-table-reloaded-admin.php:758
344
+ #: wp-table-reloaded-admin.php:926
345
  msgid "Update Changes"
346
  msgstr "Сохранить изменения"
347
 
348
+ #: wp-table-reloaded-admin.php:759
349
+ #: wp-table-reloaded-admin.php:927
350
  msgid "Save and go back"
351
  msgstr "Сохранить и вернуться"
352
 
353
+ #: wp-table-reloaded-admin.php:762
354
+ #: wp-table-reloaded-admin.php:930
355
  msgid "Cancel"
356
  msgstr "Отмена"
357
 
358
+ #: wp-table-reloaded-admin.php:932
359
  msgid "Other actions"
360
  msgstr "Другие действия"
361
 
362
+ #: wp-table-reloaded-admin.php:935
363
  msgid "Delete Table"
364
  msgstr "Удалить таблицу"
365
 
366
+ #: wp-table-reloaded-admin.php:936
367
+ #: wp-table-reloaded-admin.php:1118
368
  msgid "Export Table"
369
  msgstr "Экспорт таблицы"
370
 
371
+ #: wp-table-reloaded-admin.php:947
372
+ #: wp-table-reloaded-admin.php:1313
373
  msgid "Import a Table"
374
  msgstr "Импорт таблицы"
375
 
376
+ #: wp-table-reloaded-admin.php:958
377
  msgid "Select Import Format"
378
  msgstr "Выберите формат для импорта"
379
 
380
+ #: wp-table-reloaded-admin.php:1109
 
 
 
 
 
381
  msgid "<small>(Only needed for CSV export.)</small>"
382
  msgstr "<small>(Необходимо только для CSV.)</small>"
383
 
384
+ #: wp-table-reloaded-admin.php:968
385
  msgid "Select File with Table to Import"
386
  msgstr "Выберите файл с таблицей для импорта"
387
 
388
+ #: wp-table-reloaded-admin.php:972
389
  msgid "- or -"
390
  msgstr "- или -"
391
 
392
+ #: wp-table-reloaded-admin.php:973
393
  msgid "(upload will be preferred over pasting)"
394
  msgstr "(сначала загрузить, потом вставить)"
395
 
396
+ #: wp-table-reloaded-admin.php:976
397
  msgid "Paste data with Table to Import"
398
  msgstr "Вставьте данные с таблицей для импорта"
399
 
400
+ #: wp-table-reloaded-admin.php:982
401
  msgid "Import Table"
402
  msgstr "Импорт таблицы"
403
 
404
+ #: wp-table-reloaded-admin.php:1032
405
  msgid "Import"
406
  msgstr "Импорт"
407
 
408
+ #: wp-table-reloaded-admin.php:1065
409
+ #: wp-table-reloaded-admin.php:1314
410
  msgid "Export a Table"
411
  msgstr "Экспорт таблицы"
412
 
413
+ #: wp-table-reloaded-admin.php:1069
414
  msgid "You may export a table here. Just select the table, your desired export format and a delimiter (needed for CSV only).<br/>You may opt to download the export file. Otherwise it will be shown on this page."
415
  msgstr "Здесь Вы можете сделать экспорт таблицы. Просто выберите в таблице нужный формат экспорта и разделитель (необходимо только для CSV).<br/>Вы можете выбрать файл для загрузки экспорта. В противном случае он будет показан на этой странице."
416
 
417
+ #: wp-table-reloaded-admin.php:1077
418
  msgid "Select Table to Export"
419
  msgstr "Выберите таблицу для экспорта"
420
 
421
+ #: wp-table-reloaded-admin.php:1092
422
  msgid "Select Export Format"
423
  msgstr "Выберите формат экспорта"
424
 
425
+ #: wp-table-reloaded-admin.php:1102
426
  msgid "Select Delimiter to use"
427
  msgstr "Выберите разделитель"
428
 
429
+ #: wp-table-reloaded-admin.php:1112
430
  msgid "Download file"
431
  msgstr "Скачать файл"
432
 
433
+ #: wp-table-reloaded-admin.php:1113
434
  msgid "Yes, I want to download the export file."
435
  msgstr "Да, я хочу скачать файл экспорта."
436
 
437
+ #: wp-table-reloaded-admin.php:1138
438
  msgid "General Plugin Options"
439
  msgstr "Главные настройки плагина"
440
 
441
+ #: wp-table-reloaded-admin.php:1142
442
  msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
443
  msgstr "Вы можете изменить главные настройки плагина.<br/>Они повлияют на все таблицы или на общее поведение плагина."
444
 
445
+ #: wp-table-reloaded-admin.php:1149
446
  msgid "Frontend Options"
447
  msgstr "Внешние настройки"
448
 
449
+ #: wp-table-reloaded-admin.php:1153
450
  msgid "Enable Tablesorter-JavaScript?"
451
  msgstr "Разрешить сортировку в таблицах с помощью JavaScript?"
452
 
453
+ #: wp-table-reloaded-admin.php:1175
 
 
 
 
454
  msgid "Admin Options"
455
  msgstr "Административные настройки"
456
 
457
+ #: wp-table-reloaded-admin.php:1179
458
  msgid "Uninstall Plugin upon Deactivation?"
459
  msgstr "Удалить плагин после деактивации?"
460
 
461
+ #: wp-table-reloaded-admin.php:1190
 
 
 
 
462
  msgid "Save Options"
463
  msgstr "Сохранить настройки"
464
 
465
+ #: wp-table-reloaded-admin.php:1196
466
  msgid "Manually Uninstall Plugin"
467
  msgstr "Удалить плагин вручную"
468
 
469
+ #: wp-table-reloaded-admin.php:1198
470
  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!"
471
  msgstr "Здесь Вы можете удалить плагин. Это <strong>приведет к удалению</strong> всех таблиц, данных, настроек и т.д., которые относятся к плагину, в том числе все таблицы, которые вы добавили или импортировали.<br/> Будьте очень осторожны и нажимайте на кнопку, если Вы знаете что делаете!"
472
 
473
+ #: wp-table-reloaded-admin.php:1548
474
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
475
  msgstr "Вы на самом деле хотите удалить этот плагин со всеми данными?"
476
 
477
+ #: wp-table-reloaded-admin.php:1549
478
  msgid "Are you really sure?"
479
  msgstr "Вы действительно уверены?"
480
 
481
+ #: wp-table-reloaded-admin.php:1201
482
  msgid "Uninstall Plugin WP-Table Reloaded"
483
  msgstr "Удалить плагин WP-Table Reloaded"
484
 
485
+ #: wp-table-reloaded-admin.php:1212
486
  msgid "Information about the plugin"
487
  msgstr "Информация о плагине"
488
 
489
+ #: wp-table-reloaded-admin.php:1218
490
  msgid "Plugin Purpose"
491
  msgstr "Цель плагина"
492
 
493
+ #: wp-table-reloaded-admin.php:1225
 
 
 
 
494
  msgid "Usage"
495
  msgstr "Использование"
496
 
497
+ #: wp-table-reloaded-admin.php:1232
 
 
 
 
498
  msgid "More Information and Documentation"
499
  msgstr "Дополнительная информация и документация"
500
 
501
+ #: wp-table-reloaded-admin.php:1239
 
 
 
 
502
  msgid "Author and Licence"
503
  msgstr "Автор и лицензия"
504
 
505
+ #: wp-table-reloaded-admin.php:1241
506
  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."
507
  msgstr "Этот плагин написал <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. Он доступен по лицензии Free Software under GPL 2."
508
 
509
+ #: wp-table-reloaded-admin.php:1246
 
 
 
 
510
  msgid "Credits and Thanks"
511
  msgstr "Благодарности"
512
 
513
+ #: wp-table-reloaded-admin.php:1311
 
 
 
 
 
 
 
 
514
  msgid "List Tables"
515
  msgstr "Список таблиц"
516
 
517
+ #: wp-table-reloaded-admin.php:1316
518
  msgid "Plugin Options"
519
  msgstr "Настройки плагина"
520
 
521
+ #: wp-table-reloaded-admin.php:1317
522
  msgid "About the Plugin"
523
  msgstr "О плагине"
524
 
525
+ #: wp-table-reloaded-admin.php:733
 
 
 
 
526
  #, php-format
527
  msgid "Edit Table \"%s\""
528
  msgstr "Редактировать таблицу \"%s\""
529
 
530
+ #: wp-table-reloaded-admin.php:737
531
  #, php-format
532
  msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
533
  msgstr "Если вы хотите отобразить таблицу на Вашей странице, в новости или текстовом виджете, используйте этот код: <strong>[table id=%s /]</strong>"
534
 
535
+ #: wp-table-reloaded-admin.php:824
536
  msgid "Data Manipulation"
537
  msgstr "Работа с данными"
538
 
539
+ #: wp-table-reloaded-admin.php:866
540
  msgid "Insert Link"
541
+ msgstr "Ссылка"
542
 
543
+ #: wp-table-reloaded-admin.php:866
544
  msgid "Insert Image"
545
+ msgstr "Картинка"
546
 
547
+ #: wp-table-reloaded-admin.php:1534
548
  msgid "URL of link to insert"
549
  msgstr "УРЛ ссылки для вставки"
550
 
551
+ #: wp-table-reloaded-admin.php:1535
 
552
  msgid "Text of link"
553
  msgstr "Текст ссылки"
554
 
555
+ #: wp-table-reloaded-admin.php:1536
556
  msgid "To insert the following link into a cell, just click the cell after closing this dialog."
557
  msgstr "Чтобы добавить ссылку в ячейку, просто нажмите на ячейку после закрытия этого диалогового окна."
558
 
559
+ #: wp-table-reloaded-admin.php:1537
560
  msgid "URL of image to insert"
561
  msgstr "УРЛ картинки для вставки"
562
 
563
+ #: wp-table-reloaded-admin.php:1539
 
 
 
 
564
  msgid "To insert the following image into a cell, just click the cell after closing this dialog."
565
  msgstr "Чтобы вставить картинку в ячейку, просто нажмите на ячейку после закрытия этого диалогового окна."
566
 
567
+ #: wp-table-reloaded-admin.php:951
568
  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."
569
  msgstr "Здесь Вы можете импортировать таблицу из существующей.<br/>Это может быть CSV, XML или HTML файл. Если что-то непонятно, пожалуйста, обратитесь к документации."
570
 
571
+ #: wp-table-reloaded-admin.php:995
572
  msgid "Import from original wp-Table plugin"
573
  msgstr "Импорт из оригинального плагина wp-Table"
574
 
575
+ #: wp-table-reloaded-admin.php:1547
576
  msgid "Do you really want to import this table from the wp-Table plugin?"
577
  msgstr "Вы на самом деле хотите импортировать эту таблицу из плагина wp-Table?"
578
 
579
+ #: wp-table-reloaded-admin.php:1046
580
  msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
581
  msgstr "Плагин wp-Table от Alex Rabe установлен, но таблицы не найдены."
582
 
583
+ #: wp-table-reloaded-admin.php:1157
584
  msgid "Add custom CSS?"
585
  msgstr "Добавить произвольный CSS?"
586
 
587
+ #: wp-table-reloaded-admin.php:1164
 
 
 
 
 
588
  msgid "Enter custom CSS"
589
  msgstr "Введите произвольный CSS"
590
 
591
+ #: wp-table-reloaded-admin.php:1533
592
  msgid "Do you really want to activate this? You should only do that right before uninstallation!"
593
  msgstr "Вы действительно хотите активировать это? Вы должны сделать это до удаления!"
594
 
595
+ #: wp-table-reloaded-admin.php:1249
596
  msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
597
  msgstr "Спасибо <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> за оригинальный плагин wp-Table,"
598
 
599
+ #: wp-table-reloaded-admin.php:1251
600
  msgid "the submitters of translations:"
601
  msgstr "тем кто сделал перевод:"
602
 
603
+ #: wp-table-reloaded-admin.php:1252
604
  msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
605
  msgstr "Албанский (спасибо <a href=\"http://www.romeolab.com/\">Romeo</a>)"
606
 
607
+ #: wp-table-reloaded-admin.php:1254
608
  msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
609
  msgstr "Французкий (спасибо <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
610
 
611
+ #: wp-table-reloaded-admin.php:1255
612
  msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
613
  msgstr "Русский (спасибо <a href=\"http://wp-skins.info/\">Truper</a>)"
614
 
615
+ #: wp-table-reloaded-admin.php:1257
 
 
 
 
616
  msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
617
  msgstr "Шведский (спасибо <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
618
 
619
+ #: wp-table-reloaded-admin.php:1258
620
  msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
621
  msgstr "Турецкий (спасибо <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
622
 
623
+ #: php/wp-table-reloaded-export.class.php:38
624
+ msgid ". (dot)"
625
+ msgstr ". (точка)"
626
+
627
+ #: php/wp-table-reloaded-export.class.php:39
628
+ msgid "| (pipe)"
629
+ msgstr "| (черта)"
630
+
631
+ #: wp-table-reloaded-admin.php:226
632
+ msgid "Table sorted successfully."
633
+ msgstr "Таблица успешно отсортирована."
634
+
635
+ #: wp-table-reloaded-admin.php:265
636
+ msgid "Table copied successfully."
637
+ msgid_plural "Tables copied successfully."
638
+ msgstr[0] "Таблица успешно скопирована."
639
+ msgstr[1] "Таблицы успешно скопированы."
640
+ msgstr[2] ""
641
+
642
+ #: wp-table-reloaded-admin.php:274
643
+ msgid "Table deleted successfully."
644
+ msgid_plural "Tables deleted successfully."
645
+ msgstr[0] "Таблица успешно удалена."
646
+ msgstr[1] "Таблицы успешно удалены."
647
+ msgstr[2] ""
648
+
649
+ #: wp-table-reloaded-admin.php:287
650
+ msgid "Table imported successfully."
651
+ msgid_plural "Tables imported successfully."
652
+ msgstr[0] "Таблица успешно импортирована."
653
+ msgstr[1] "Таблицы успешно импортированы."
654
+ msgstr[2] ""
655
+
656
+ #: wp-table-reloaded-admin.php:293
657
+ msgid "You did not select any tables!"
658
+ msgstr "Вы не выбрали ни одной таблицы!"
659
+
660
+ #: wp-table-reloaded-admin.php:555
661
+ #: wp-table-reloaded-admin.php:616
662
+ msgid "This is a list of all available tables."
663
+ msgstr "Это список всех доступных таблиц."
664
+
665
+ #: wp-table-reloaded-admin.php:555
666
+ msgid "You may insert a table into a post or page here."
667
+ msgstr "Здесь Вы можете вставить таблицу в новость или страницу."
668
+
669
+ #: wp-table-reloaded-admin.php:556
670
+ 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>)."
671
+ msgstr "Нажмите \"Вставить\" после желаемой таблицы и соответствующий код будет вставлен в редактор (<strong>[table id=&lt;the_table_ID&gt; /]</strong>)."
672
+
673
+ #: wp-table-reloaded-admin.php:587
674
+ msgid "Insert"
675
+ msgstr "Вставить"
676
+
677
+ #: wp-table-reloaded-admin.php:616
678
+ msgid "You may add, edit, copy or delete tables here."
679
+ msgstr "Здесь Вы можете добавлять, редактировать, копировать или удалять таблицы."
680
+
681
+ #: wp-table-reloaded-admin.php:617
682
+ 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."
683
+ msgstr "Если Вы хотите отобразить таблицу на странице, в новости или текстовом виджете, то используйте код <strong>[table id=&lt;the_table_ID&gt; /]</strong> или нажмите на кнопку \"Таблица\" в панели редактора."
684
+
685
+ #: wp-table-reloaded-admin.php:668
686
+ #: wp-table-reloaded-admin.php:1040
687
+ msgid "Bulk actions:"
688
+ msgstr "Массовые действия:"
689
+
690
+ #: wp-table-reloaded-admin.php:668
691
+ msgid "Copy Tables"
692
+ msgstr "Копировать таблицы"
693
+
694
+ #: wp-table-reloaded-admin.php:668
695
+ msgid "Delete Tables"
696
+ msgstr "Удалить таблицы"
697
+
698
+ #: wp-table-reloaded-admin.php:768
699
+ #: wp-table-reloaded-admin.php:824
700
+ #: wp-table-reloaded-admin.php:895
701
+ #: wp-table-reloaded-admin.php:1265
702
+ msgid "Hide"
703
+ msgstr "Скрыть"
704
+
705
+ #: wp-table-reloaded-admin.php:768
706
+ #: wp-table-reloaded-admin.php:824
707
+ #: wp-table-reloaded-admin.php:895
708
+ #: wp-table-reloaded-admin.php:1265
709
+ msgid "Expand"
710
+ msgstr "Развернуть"
711
+
712
+ #: wp-table-reloaded-admin.php:878
713
+ msgid "ascending"
714
+ msgstr "по возрастанию"
715
+
716
+ #: wp-table-reloaded-admin.php:879
717
+ msgid "descending"
718
+ msgstr "по убыванию"
719
+
720
+ #: wp-table-reloaded-admin.php:882
721
+ #, php-format
722
+ msgid "Sort table by column %s in %s order"
723
+ msgstr "Сортировка таблицы по столбцам %s и %s"
724
+
725
+ #: wp-table-reloaded-admin.php:885
726
+ msgid "Sort"
727
+ msgstr "Сортировка"
728
+
729
+ #: wp-table-reloaded-admin.php:1040
730
+ msgid "Import Tables"
731
+ msgstr "Импорт таблиц"
732
+
733
+ #: wp-table-reloaded-admin.php:1154
734
+ 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)."
735
+ msgstr "Да, разрешить <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. Это включает сортировку в Ваших таблицах (может быть активирована для каждой таблицы отдельно)."
736
+
737
+ #: wp-table-reloaded-admin.php:1159
738
+ msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag."
739
+ msgstr "Да, включить и загрузить следующий CSS-фрагмент на свой сайт внутри [style]-HTML-tag."
740
+
741
+ #: wp-table-reloaded-admin.php:1166
742
+ #, php-format
743
+ 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."
744
+ msgstr "(Вы можете добиться лучшей производительности сайта, если добавите CSS стили в файл темы \"style.css\" <small>(находится %s)</small>)."
745
+
746
+ #: wp-table-reloaded-admin.php:1167
747
+ #, php-format
748
+ 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>"
749
+ msgstr "Смотрите <a href=\"%s\">сайт плагина</a> для просмотра примеров или использовать один из следующих: <a href=\"%s\">Пример стиля 1</a> <a href=\"%s\">Пример стиля 2</a>"
750
+
751
+ #: wp-table-reloaded-admin.php:1167
752
+ msgid "Just copy the contents of a file into the textarea."
753
+ msgstr "Просто скопируйте содержимое файла в область ввода."
754
+
755
+ #: wp-table-reloaded-admin.php:1180
756
+ 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!"
757
+ msgstr "Да, удалить все, когда плагин будет отключен. Внимание: Вы должны поставить этот флажок, непосредственно перед отключением плагина со страницы плагинов WordPress!"
758
+
759
+ #: wp-table-reloaded-admin.php:1180
760
+ msgid "<small>(This setting does not influence the \"Manually Uninstall Plugin\" button below!)</small>"
761
+ msgstr "<small>(Этот параметр не влияет на кнопку ниже \"Ручное удаление плагина\"!)</small>"
762
+
763
+ #: wp-table-reloaded-admin.php:1220
764
+ msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
765
+ msgstr "Этот плагин позволит вам создавать и управлять таблицами в панели администратора WordPress."
766
+
767
+ #: wp-table-reloaded-admin.php:1220
768
+ msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
769
+ msgstr "Эти таблицы могут содержать строки, цифры и даже HTML (например изображения или ссылки)."
770
+
771
+ #: wp-table-reloaded-admin.php:1220
772
+ msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
773
+ msgstr "Вы можете отображать таблицы в ваших новостях, на страницах или в текстовых виджетах, используя код."
774
+
775
+ #: wp-table-reloaded-admin.php:1220
776
+ msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
777
+ msgstr "Если вы хотите отображать свои таблицы в вашей теме, вы можете использовать функции тэгов шаблона."
778
+
779
+ #: wp-table-reloaded-admin.php:1227
780
+ msgid "At first you should add or import a table."
781
+ msgstr "Сначала Вы должны добавить или импортировать таблицы."
782
+
783
+ #: wp-table-reloaded-admin.php:1227
784
+ 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."
785
+ msgstr "Это означает, что вы либо создаете пустую таблицу, либо Вы загружаете существующую таблицу из CSV, XML или HTML файла."
786
+
787
+ #: wp-table-reloaded-admin.php:1227
788
+ 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."
789
+ msgstr "Затем вы можете изменить данные или структуру таблицы (например, путем включения или удаления строк и столбцов, заменой строк и столбцов или их сортировкой), и выбрать настройки для каждой таблицы, такие как чередование цвета у строк, печатать название или описание."
790
+
791
+ #: wp-table-reloaded-admin.php:1227
792
+ 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."
793
+ msgstr "Чтобы легко добавлять ссылки или изображения в ячейку, используйте кнопки. Где Вы введете адрес и название. Затем вы можете нажать на ячейку и соответствующий HTML код будет добавлен."
794
+
795
+ #: wp-table-reloaded-admin.php:1227
796
+ msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them."
797
+ msgstr "Чтобы вставить таблицу в ваши новости, страницы или текстовые виджеты, используйте код [table id=&lt;table-id&gt;]."
798
+
799
+ #: wp-table-reloaded-admin.php:1227
800
+ 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."
801
+ msgstr "Так же Вы можете выбрать требуемую таблицу из списка (после нажатия на кнопку \"Таблицы\" в панели редактора) и соответствующий код будет добавлен автоматически."
802
+
803
+ #: wp-table-reloaded-admin.php:1227
804
+ 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;\"."
805
+ msgstr "Вы также можете менять стиль вашей таблицы с помощью CSS. Примеры можно посмотреть на веб-сайте плагина. Каждая таблица имеет CSS класс \"wp-table-reloaded\". Каждая таблица имеет также класс \"wp-table-reloaded-&lt;table-id&gt;\"."
806
+
807
+ #: wp-table-reloaded-admin.php:1227
808
+ 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."
809
+ msgstr "Вы также можете использовать классы \"column-&lt;number&gt;\" и \"row-&lt;number&gt;\" для изменения стиля строк и столбцов. Используйте этот стиль, например, для изменения ширины колонок и выравнивание текста."
810
+
811
+ #: wp-table-reloaded-admin.php:1234
812
+ 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>."
813
+ 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>."
814
+
815
+ #: wp-table-reloaded-admin.php:1234
816
+ #: wp-table-reloaded-admin.php:1325
817
+ 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>."
818
+ 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>."
819
+
820
+ #: wp-table-reloaded-admin.php:1241
821
+ 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>."
822
+ 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>."
823
+
824
+ #: wp-table-reloaded-admin.php:1241
825
+ msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
826
+ msgstr "Пожертвования и хорошие оценки в рейтинге подтолкнут меня к дальнейшей разработке плагина и возможности предоставить больше часов поддержки пользователей плагина. Спасибо за любую сумму!"
827
+
828
+ #: wp-table-reloaded-admin.php:1250
829
+ msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
830
+ msgstr "Christian Bach за <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
831
+
832
+ #: wp-table-reloaded-admin.php:1253
833
+ msgid "Czech (thanks to <a href=\"http://separatista.net/\">Pavel</a>)"
834
+ msgstr "Чешский (thanks to <a href=\"http://separatista.net/\">Pavel</a>)"
835
+
836
+ #: wp-table-reloaded-admin.php:1256
837
+ msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Mat�as Halles</a>)"
838
+ msgstr ""
839
+
840
+ #: wp-table-reloaded-admin.php:1259
841
+ msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
842
+ msgstr "и всем пожертвовавшим, сторонникам, обозревателям и пользователям плагина!"
843
+
844
+ #: wp-table-reloaded-admin.php:1265
845
+ msgid "Debug and Version Information"
846
+ msgstr "Отладка и информация о версии"
847
+
848
+ #: wp-table-reloaded-admin.php:1268
849
+ msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
850
+ msgstr "Вы используете следующую версию программного обеспечения. <strong>Просьба предоставить эту информацию в сообщениях об ошибках.</strong>"
851
+
852
+ #: wp-table-reloaded-admin.php:1325
853
+ msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
854
+ msgstr "Более подробную информацию можно найти на <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">сайте плагина</a>."
855
+
856
+ #: wp-table-reloaded-admin.php:1538
857
+ msgid "''alt'' text of the image"
858
+ msgstr "''alt'' текст для картинки"
859
+
860
+ #: wp-table-reloaded-admin.php:1540
861
+ msgid "Do you want to copy the selected tables?"
862
+ msgstr "Вы хотите скопировать выбранные таблицы?"
863
+
864
+ #: wp-table-reloaded-admin.php:1541
865
+ msgid "The selected tables and all content will be erased. Do you really want to delete them?"
866
+ msgstr "Выбранные таблицы и все содержимое будет стерто. Вы действительно хотите удалить их?"
867
+
868
+ #: wp-table-reloaded-admin.php:1542
869
+ msgid "Do you really want to import the selected tables from the wp-Table plugin?"
870
+ msgstr "Вы действительно хотите импортировать выбранные таблицы из плагина wp-Table?"
871
+
872
+ #: wp-table-reloaded-admin.php:1597
873
+ msgid "Table"
874
+ msgstr "Таблица"
875
+
languages/wp-table-reloaded-sq_AL.mo CHANGED
Binary file
languages/wp-table-reloaded-sq_AL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP-Table Reloaded v0.9.2\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
5
- "POT-Creation-Date: 2009-04-27 16:30+0000\n"
6
- "PO-Revision-Date: 2009-04-28 11:57+0100\n"
7
  "Last-Translator: Romeo Shuka <webmaster@romeolab.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -18,678 +18,866 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: php/wp-table-reloaded-export.class.php:30
21
- #: php/wp-table-reloaded-import.class.php:41
22
  msgid "CSV - Character-Separated Values"
23
  msgstr "CSV - Character-Separated Values"
24
 
25
  #: php/wp-table-reloaded-export.class.php:31
26
- #: php/wp-table-reloaded-import.class.php:42
27
  msgid "HTML - Hypertext Markup Language"
28
  msgstr "HTML - Hypertext Markup Language"
29
 
30
  #: php/wp-table-reloaded-export.class.php:32
31
- #: php/wp-table-reloaded-import.class.php:43
32
  msgid "XML - eXtended Markup Language"
33
  msgstr "XML - eXtended Markup Language"
34
 
35
  #: php/wp-table-reloaded-export.class.php:35
36
- #: php/wp-table-reloaded-import.class.php:36
37
  msgid "; (semicolon)"
38
  msgstr "; (pikë-presje)"
39
 
40
  #: php/wp-table-reloaded-export.class.php:36
41
- #: php/wp-table-reloaded-import.class.php:37
42
  msgid ", (comma)"
43
  msgstr ", (presje)"
44
 
45
  #: php/wp-table-reloaded-export.class.php:37
46
- #: php/wp-table-reloaded-import.class.php:38
47
  msgid ": (colon)"
48
  msgstr ": (Dy pika)"
49
 
50
- #: wp-table-reloaded-admin.php:137
 
 
 
 
 
 
 
 
51
  #, php-format
52
  msgid "Table \"%s\" added successfully."
53
  msgstr "Tabela \"%s\" u shtua me sukses."
54
 
55
- #: wp-table-reloaded-admin.php:160
56
  msgid "Table edited successfully."
57
  msgstr "Tabela u përpunua me sukses."
58
 
59
- #: wp-table-reloaded-admin.php:176
60
  msgid "Rows swapped successfully."
61
  msgstr "Rrjeshtat u ndërruan me sukses."
62
 
63
- #: wp-table-reloaded-admin.php:195
64
  msgid "Columns swapped successfully."
65
  msgstr "Kolonat u ndërruan me sukses."
66
 
67
- #: wp-table-reloaded-admin.php:224
 
 
 
 
 
68
  msgid "Copy of"
69
  msgstr "Kopje e"
70
 
71
- #: wp-table-reloaded-admin.php:229
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  #, php-format
73
  msgid "Table \"%s\" copied successfully."
74
  msgstr "Tabela \"%s\" u kopjua me sukses."
75
 
76
- #: wp-table-reloaded-admin.php:248
77
  #, php-format
78
  msgid "Table \"%s\" deleted successfully."
79
  msgstr "Tabela \"%s\" u fshi me sukses."
80
 
81
- #: wp-table-reloaded-admin.php:258
82
  msgid "Row deleted successfully."
83
  msgstr "Rrjeshti u fshi me sukses."
84
 
85
- #: wp-table-reloaded-admin.php:271
86
  msgid "Column deleted successfully."
87
  msgstr "Kolona u fshi me sukses."
88
 
89
- #: wp-table-reloaded-admin.php:276
90
  msgid "Delete failed."
91
  msgstr "Fshirja nuk u krye."
92
 
93
- #: wp-table-reloaded-admin.php:300
94
  msgid "Row inserted successfully."
95
  msgstr "Rrjeshti u shtua me sukses."
96
 
97
- #: wp-table-reloaded-admin.php:309
98
  msgid "Column inserted successfully."
99
  msgstr "Kolona u shtua me sukses."
100
 
101
- #: wp-table-reloaded-admin.php:312
102
  msgid "Insert failed."
103
  msgstr "Shtimi nuk u krye."
104
 
105
- #: wp-table-reloaded-admin.php:340
106
  msgid "Imported Table"
107
  msgstr "Tabelë e importuar"
108
 
109
- #: wp-table-reloaded-admin.php:341
110
  msgid "via form"
111
  msgstr "via form"
112
 
113
- #: wp-table-reloaded-admin.php:358
114
- #: wp-table-reloaded-admin.php:379
115
- msgid "Table imported successfully."
116
- msgstr "Tabela u importua me sukses."
117
-
118
- #: wp-table-reloaded-admin.php:361
119
  msgid "Table could not be imported."
120
  msgstr "Tabela nuk mund të importohet"
121
 
122
- #: wp-table-reloaded-admin.php:405
123
  #, php-format
124
  msgid "Table \"%s\" exported successfully."
125
  msgstr "Tabela \"%s\" u eksportua me sukses."
126
 
127
- #: wp-table-reloaded-admin.php:433
128
  msgid "Options saved successfully."
129
  msgstr "Opsionet u ruajtën me sukses."
130
 
131
  #. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
132
  #. Plugin Name of an extension
133
- #: wp-table-reloaded-admin.php:451
134
  msgid "WP-Table Reloaded"
135
  msgstr "WP-Table Reloaded"
136
 
137
- #: wp-table-reloaded-admin.php:452
138
  msgid "Plugin deactivated successfully."
139
  msgstr "Plugini u ç'aktivizua me sukses."
140
 
141
- #: wp-table-reloaded-admin.php:453
142
  msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
143
  msgstr "Të gjitha tabelat, datat edhe opsionet u fshinë. Tani mund të fshish edhe dosjen e Pluginit nga serveri juaj."
144
 
145
- #: wp-table-reloaded-admin.php:471
 
146
  msgid "List of Tables"
147
  msgstr "Lista e tabelave"
148
 
149
- #: wp-table-reloaded-admin.php:474
150
- msgid "This is a list of all available tables. You may add, edit, copy or delete tables here."
151
- msgstr "Kjo është një listë e gjithë tabelave. Këtu mund të shtosh, të përpunosh, kopjosh apo fshish tabela."
 
 
 
 
 
152
 
153
- #: wp-table-reloaded-admin.php:475
154
- msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode: <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
155
- msgstr "Nëse don bësh tabelën shfaqet një postim, atëherë duhet përdorësh Shortcode: <strong>[table id=&lt;ID-e Tabelës&gt; /]</strong>"
156
 
157
- #: wp-table-reloaded-admin.php:483
158
- #: wp-table-reloaded-admin.php:887
 
159
  msgid "ID"
160
  msgstr "ID"
161
 
162
- #: wp-table-reloaded-admin.php:484
163
- #: wp-table-reloaded-admin.php:544
164
- #: wp-table-reloaded-admin.php:594
165
- #: wp-table-reloaded-admin.php:888
 
166
  msgid "Table Name"
167
  msgstr "Emri i Tabelës"
168
 
169
- #: wp-table-reloaded-admin.php:485
170
- #: wp-table-reloaded-admin.php:548
171
- #: wp-table-reloaded-admin.php:598
172
- #: wp-table-reloaded-admin.php:889
 
173
  msgid "Description"
174
  msgstr "Përshkrimi"
175
 
176
- #: wp-table-reloaded-admin.php:486
177
- #: wp-table-reloaded-admin.php:890
 
178
  msgid "Action"
179
  msgstr "Aksioni"
180
 
181
- #: wp-table-reloaded-admin.php:511
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
182
  msgid "Edit"
183
  msgstr "Përpuno"
184
 
185
- #: wp-table-reloaded-admin.php:512
186
- msgid "Do you want to copy this table?"
187
- msgstr "Don të kopjosh këtë tabelë?"
188
-
189
- #: wp-table-reloaded-admin.php:512
190
  msgid "Copy"
191
  msgstr "Kopjo"
192
 
193
- #: wp-table-reloaded-admin.php:513
194
  msgid "Export"
195
  msgstr "Eksporto"
196
 
197
- #: wp-table-reloaded-admin.php:514
198
- #: wp-table-reloaded-admin.php:807
199
- msgid "The complete table and all content will be erased. Do you really want to delete it?"
200
- msgstr "E gjithë tabela bashkë me përmbajtjen do të fshihet. Je i sigurtë për këtë?"
201
-
202
- #: wp-table-reloaded-admin.php:514
203
  msgid "Delete"
204
  msgstr "Fshi"
205
 
206
- #: wp-table-reloaded-admin.php:524
207
- #: wp-table-reloaded-admin.php:1001
208
- msgid "No tables found."
209
- msgstr "Asnjë tabelë e gjetur."
210
 
211
- #: wp-table-reloaded-admin.php:524
212
- #: wp-table-reloaded-admin.php:1001
 
 
 
 
 
 
 
 
213
  #, php-format
214
  msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
215
  msgstr "Mund të <a href=\"%s\">shtosh</a> ose <a href=\"%s\">importosh</a> një tabelë!"
216
 
217
- #: wp-table-reloaded-admin.php:532
218
- #: wp-table-reloaded-admin.php:1171
219
  msgid "Add new Table"
220
  msgstr "Shto tabelë të re"
221
 
222
- #: wp-table-reloaded-admin.php:536
223
  msgid "You can add a new table here. Just enter it's name, a description (optional) and the number of rows and columns.<br/>You may add, insert or delete rows and columns later."
224
  msgstr "Këtu mund të shtosh ti një tabelë të re. Vendos emrin e saj, pëshkrimin (me dëshirë) dhe numrin e kolonave dhe rrjeshtave.<br/> Ti mund të shtosh apo fshish kolona e rrjeshta edhe me vone. löschen."
225
 
226
- #: wp-table-reloaded-admin.php:545
227
  msgid "Enter Table Name"
228
  msgstr "Vendos emrin e tabelës"
229
 
230
- #: wp-table-reloaded-admin.php:549
231
  msgid "Enter Description"
232
  msgstr "Vendos përshkrimit"
233
 
234
- #: wp-table-reloaded-admin.php:552
235
  msgid "Number of Rows"
236
  msgstr "Numri i rrjeshtave"
237
 
238
- #: wp-table-reloaded-admin.php:556
239
  msgid "Number of Columns"
240
  msgstr "Numri i kolonave"
241
 
242
- #: wp-table-reloaded-admin.php:563
243
  msgid "Add Table"
244
  msgstr "Shto Tabelë"
245
 
246
- #: wp-table-reloaded-admin.php:580
247
  #, php-format
248
  msgid "Edit Table \"%s\""
249
  msgstr "Formato tabelën \"%s\""
250
 
251
- #: wp-table-reloaded-admin.php:584
252
  msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
253
  msgstr "Këtu mund të përpunosh pëmbajtjen e tabelës. Gjithashtu mund të fshish, shtosh e ndërrosh rrjeshta apo kolona."
254
 
255
- #: wp-table-reloaded-admin.php:585
256
  #, php-format
257
  msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
258
  msgstr "Nëse don të bësh tabelën të shfaqet në një postim, atëherë duhet të përdorësh Shortcode: <strong>[table id=%s /]</strong>"
259
 
260
- #: wp-table-reloaded-admin.php:590
261
  msgid "Table Information"
262
  msgstr "Informacione mbi tabelën"
263
 
264
- #: wp-table-reloaded-admin.php:606
265
- #: wp-table-reloaded-admin.php:798
266
  msgid "Update Changes"
267
  msgstr "Ruaj ndryshimet"
268
 
269
- #: wp-table-reloaded-admin.php:607
270
- #: wp-table-reloaded-admin.php:799
271
  msgid "Save and go back"
272
  msgstr "Ruaj dhe kthehu mbrapsht"
273
 
274
- #: wp-table-reloaded-admin.php:610
275
- #: wp-table-reloaded-admin.php:802
276
  msgid "Cancel"
277
  msgstr "Anullo"
278
 
279
- #: wp-table-reloaded-admin.php:616
280
  msgid "Table Contents"
281
  msgstr "Përmbajtja e tabelës"
282
 
283
- #: wp-table-reloaded-admin.php:644
 
 
 
 
 
 
 
 
 
 
 
 
 
 
284
  msgid "Insert Row"
285
  msgstr "Shto rrjesht"
286
 
287
- #: wp-table-reloaded-admin.php:646
288
- msgid "Do you really want to delete this row?"
289
- msgstr "Jeni i sigurtë që të fshini këtë rrjesht?"
290
-
291
- #: wp-table-reloaded-admin.php:646
292
  msgid "Delete Row"
293
  msgstr "Fshi rrjeshtin"
294
 
295
- #: wp-table-reloaded-admin.php:656
296
  msgid "Insert Column"
297
  msgstr "Shto kolonë"
298
 
299
- #: wp-table-reloaded-admin.php:658
300
- msgid "Do you really want to delete this column?"
301
- msgstr "A jeni i sigurtë që doni me fshirë këtë kolonë?"
302
-
303
- #: wp-table-reloaded-admin.php:658
304
  msgid "Delete Column"
305
  msgstr "Fshi kolonën"
306
 
307
- #: wp-table-reloaded-admin.php:663
308
  msgid "Add Row"
309
  msgstr "Shto rrjesht"
310
 
311
- #: wp-table-reloaded-admin.php:663
312
  msgid "Add Column"
313
  msgstr "Shto kolonë"
314
 
315
- #: wp-table-reloaded-admin.php:672
316
  msgid "Data Manipulation"
317
  msgstr "Manipulimi Datave"
318
 
319
- #: wp-table-reloaded-admin.php:687
320
  #, php-format
321
  msgid "Swap rows %s and %s"
322
  msgstr "Ndërro rrjeshtat %s dhe %s"
323
 
324
- #: wp-table-reloaded-admin.php:690
325
- #: wp-table-reloaded-admin.php:710
326
  msgid "Swap"
327
  msgstr "Ndërroj"
328
 
329
- #: wp-table-reloaded-admin.php:707
330
  #, php-format
331
  msgid "Swap columns %s and %s"
332
  msgstr "Ndërro kolonat %s dhe %s"
333
 
334
- #: wp-table-reloaded-admin.php:714
335
  msgid "Insert Link"
336
  msgstr "Shto Link"
337
 
338
- #: wp-table-reloaded-admin.php:714
339
  msgid "Insert Image"
340
  msgstr "Shto foto"
341
 
342
- #: wp-table-reloaded-admin.php:732
343
- msgid "URL of link to insert"
344
- msgstr "URL e linkut për të futur"
345
-
346
- #: wp-table-reloaded-admin.php:734
347
- msgid "Text of link"
348
- msgstr "Tekst ose link"
349
 
350
- #: wp-table-reloaded-admin.php:737
351
- msgid "To insert the following link into a cell, just click the cell after closing this dialog."
352
- msgstr "Për të vendosur linkun në një kuti të tabelës, mjafton të klikoni një kuti mbas mbylljes së këtij dialogu."
353
-
354
- #: wp-table-reloaded-admin.php:746
355
- msgid "URL of image to insert"
356
- msgstr "URL e imazhit që do të vendoset"
357
 
358
- #: wp-table-reloaded-admin.php:748
359
- msgid "\"alt\" text of the image"
360
- msgstr "\"alt\" teksti i imazhit"
 
361
 
362
- #: wp-table-reloaded-admin.php:751
363
- msgid "To insert the following image into a cell, just click the cell after closing this dialog."
364
- msgstr "Për të shtuar imazhin në një kuti të tabelës, mjafton të klikosh kutinë mbasi të keni mbyllur këtë dialog."
365
 
366
- #: wp-table-reloaded-admin.php:767
367
  msgid "Table Settings"
368
  msgstr "Opsionet e tabelës"
369
 
370
- #: wp-table-reloaded-admin.php:769
371
  msgid "These settings will only be used for this table."
372
  msgstr "Këto opsione vlejnë vetëm për këtë tabelë."
373
 
374
- #: wp-table-reloaded-admin.php:772
375
  msgid "Alternating row colors"
376
  msgstr "ngjyrat e rrjeshtave janë të alternuara"
377
 
378
- #: wp-table-reloaded-admin.php:773
379
  msgid "Every second row will have an alternating background color."
380
  msgstr "Çdo rrjesht i dytë merr një ngjyrë të ndryshme në background."
381
 
382
- #: wp-table-reloaded-admin.php:776
383
  msgid "Use Table Headline"
384
  msgstr "Titulli i tabelës"
385
 
386
- #: wp-table-reloaded-admin.php:777
387
  msgid "The first row of your table will use the [th] tag."
388
  msgstr "Rrjeshti i parë i tabelës tënde do të shënohet me një HTML-tag [th]."
389
 
390
- #: wp-table-reloaded-admin.php:780
391
  msgid "Print Table Name"
392
  msgstr "Jepni emrin e tabelës"
393
 
394
- #: wp-table-reloaded-admin.php:781
395
  msgid "The Table Name will be written above the table in a [h2] tag."
396
  msgstr "Emri i tabelës do të shkruhet me një [h2]-HTML-Tag."
397
 
398
- #: wp-table-reloaded-admin.php:784
399
  msgid "Print Table Description"
400
  msgstr "Jep përshkrimin e tabelës"
401
 
402
- #: wp-table-reloaded-admin.php:785
403
  msgid "The Table Description will be written under the table."
404
  msgstr "Përshkrimi i tabelës do të shkruhet poshtë saj."
405
 
406
- #: wp-table-reloaded-admin.php:788
407
  msgid "Use Tablesorter"
408
  msgstr "Përdor Tablesorter"
409
 
410
- #: wp-table-reloaded-admin.php:789
411
  msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. <small>Attention: You must have Tablesorter enabled on the \"Plugin Options\" page and the option \"Use Table Headline\" has to be enabled above for this to work!</small>"
412
  msgstr "Ju mund të rradhisni elementët e tabelës me <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> . <small> KUJDES: Tablesorter duhet të jetë i aktivizuar në \"Plugin Options\" ! Gjithashtu duhet të aktivizohet edhe opsioni \"Use Table Headline\" (me [th]) (shiko lart) aktiviert sein!</small>"
413
 
414
- #: wp-table-reloaded-admin.php:804
415
  msgid "Other actions"
416
  msgstr "Aksione të tjera"
417
 
418
- #: wp-table-reloaded-admin.php:807
419
  msgid "Delete Table"
420
  msgstr "Fshi tabelën"
421
 
422
- #: wp-table-reloaded-admin.php:808
423
- #: wp-table-reloaded-admin.php:990
424
  msgid "Export Table"
425
  msgstr "Eksporto tabelën"
426
 
427
- #: wp-table-reloaded-admin.php:819
428
- #: wp-table-reloaded-admin.php:1172
429
  msgid "Import a Table"
430
  msgstr "Importo një tabelë"
431
 
432
- #: wp-table-reloaded-admin.php:823
433
  msgid "You may import a table from existing data here.<br/>It may be a CSV, XML or HTML file. It needs a certain structure though. Please consult the documentation."
434
  msgstr "Këtu mund të importohet një Tabelë nga një dokument ekzistues.<br/> Ky mund të jetë një CSV-, XML- ose HTML-dokument. Për probleme lexoni dokumentacionin përkatës."
435
 
436
- #: wp-table-reloaded-admin.php:830
437
  msgid "Select Import Format"
438
  msgstr "Zgjidh dokumentin e importimit"
439
 
440
- #: wp-table-reloaded-admin.php:840
441
- msgid "Used Delimiter"
442
- msgstr "Përdor shenjën ndarëse"
443
-
444
- #: wp-table-reloaded-admin.php:847
445
- #: wp-table-reloaded-admin.php:981
446
- msgid "<small>(Only needed for CSV export.)</small>"
447
- msgstr "<small>(Vetëm për Exportin e datave CSV.)</small>"
448
-
449
- #: wp-table-reloaded-admin.php:850
450
  msgid "Select File with Table to Import"
451
  msgstr "Zgjidh dokumentin me tabelën për tu importuar"
452
 
453
- #: wp-table-reloaded-admin.php:854
454
  msgid "- or -"
455
  msgstr "- ose -"
456
 
457
- #: wp-table-reloaded-admin.php:855
458
  msgid "(upload will be preferred over pasting)"
459
  msgstr "(Ngarkimi ka përparësi kundrejt kopimit)"
460
 
461
- #: wp-table-reloaded-admin.php:858
462
  msgid "Paste data with Table to Import"
463
  msgstr "ngjit tabelën që duhet importuar"
464
 
465
- #: wp-table-reloaded-admin.php:864
466
  msgid "Import Table"
467
  msgstr "Importo tabelën"
468
 
469
- #: wp-table-reloaded-admin.php:877
470
  msgid "Import from original wp-Table plugin"
471
  msgstr "Importo nga tabelat e Pluginit origjinal WP-Table"
472
 
473
- #: wp-table-reloaded-admin.php:910
474
- msgid "Do you really want to import this table from the wp-Table plugin?"
475
- msgstr "Jeni i sigurtë që doni të importoni këto tabela nga Plugini WP-Table?"
476
-
477
- #: wp-table-reloaded-admin.php:910
478
  msgid "Import"
479
  msgstr "Importo"
480
 
481
- #: wp-table-reloaded-admin.php:918
 
 
 
 
482
  msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
483
  msgstr "Plugini WP-Table vnga Alex Rabe duket sikur është i instaluar, por nuk u gjëndën asnjë tabela."
484
 
485
- #: wp-table-reloaded-admin.php:937
486
- #: wp-table-reloaded-admin.php:1173
487
  msgid "Export a Table"
488
  msgstr "Eksporto një tabelë"
489
 
490
- #: wp-table-reloaded-admin.php:941
491
  msgid "You may export a table here. Just select the table, your desired export format and a delimiter (needed for CSV only).<br/>You may opt to download the export file. Otherwise it will be shown on this page."
492
  msgstr "Këtu mund të eksportohet një tabelë. Si fillim zgjidh tabelën, më pas llojin e formatit të eksportit dhe ndarëset (vetëm për CVS).<br/> Gjithashtu mund të zgjedhës që ky dokument të shkarkohet apo të tregohet në faqe."
493
 
494
- #: wp-table-reloaded-admin.php:949
495
  msgid "Select Table to Export"
496
  msgstr "zgjidh tabelën për të eksportuar"
497
 
498
- #: wp-table-reloaded-admin.php:964
499
  msgid "Select Export Format"
500
  msgstr "Zgjidh formatin e eksportit"
501
 
502
- #: wp-table-reloaded-admin.php:974
503
  msgid "Select Delimiter to use"
504
  msgstr "Zgjidh ndarësin për të përdorur"
505
 
506
- #: wp-table-reloaded-admin.php:984
 
 
 
 
507
  msgid "Download file"
508
  msgstr "Shkarko dokumentin"
509
 
510
- #: wp-table-reloaded-admin.php:985
511
  msgid "Yes, I want to download the export file."
512
  msgstr "Po, unë dua të shkarkoj dokumentat e eksportuar."
513
 
514
- #: wp-table-reloaded-admin.php:1010
515
  msgid "General Plugin Options"
516
  msgstr "Opsionet e Pluginit"
517
 
518
- #: wp-table-reloaded-admin.php:1014
519
  msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
520
  msgstr "Këtu mund të ndryshohet opsione e përgjithshme të pluginit<br/>Këto ndryshime vlejnë për të gjitha tabelat."
521
 
522
- #: wp-table-reloaded-admin.php:1021
523
  msgid "Frontend Options"
524
  msgstr "Opsionet e Frontend"
525
 
526
- #: wp-table-reloaded-admin.php:1025
527
  msgid "Enable Tablesorter-JavaScript?"
528
  msgstr "Aktivizo Tablesorter-JavaScript?"
529
 
530
- #: wp-table-reloaded-admin.php:1026
531
- msgid "Yes, enable <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> to be used to make table sortable (can be changed for every table separatly)."
532
  msgstr "Po, aktivizo <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugins</a> , në mënyrë që tabelat të bëhen me elementë të rënditshëm (mund të aktivizohet edhe për çdo tabelë më vete)."
533
 
534
- #: wp-table-reloaded-admin.php:1029
535
  msgid "Add custom CSS?"
536
  msgstr "Shto CSS të personalizuar?"
537
 
538
- #: wp-table-reloaded-admin.php:1030
539
- #, php-format
540
- msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag. (If you do not want this, just add your CSS styling to your theme's \"style.css\" <small>(located at %s)</small>.) (See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin website</a> for examples.)"
541
- msgstr "Po, përdor CSS-snippet e mëposhtëme brënda [style]-HTML-tag. (Nëse nuk doni këtë, shtoni stilin tuaj të CSS tek thema juaj \"style.css\" <small>(gjëndet në %s)</small>.) (Shikoni <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">faqen e pluginit</a> për shëmbuj.)"
542
 
543
- #: wp-table-reloaded-admin.php:1034
544
  msgid "Enter custom CSS"
545
  msgstr "Vendos CSS"
546
 
547
- #: wp-table-reloaded-admin.php:1042
 
 
 
 
 
 
 
 
 
 
 
 
 
 
548
  msgid "Admin Options"
549
  msgstr "Opsionet e adminit"
550
 
551
- #: wp-table-reloaded-admin.php:1046
552
  msgid "Uninstall Plugin upon Deactivation?"
553
  msgstr "Ç'instalo pluginin mbas ç'aktivizimit?"
554
 
555
- #: wp-table-reloaded-admin.php:1047
556
- msgid "Yes, uninstall everything when plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page! (It does not influence the \"Manually Uninstall Plugin\" button below!)"
557
- msgstr "Po, ç'instalo të gjitha mbasi plugini është deaktivuar. Kujdes: Ti duhet të aktivizosh këtë kutiz përpara ç'aktivizimit të pluginit nga Wordpress-Plugin-Menager! (Nuk ka asnjë ndikim mbi ç'instalimin manual që ndodhet më poshtë)"
 
 
 
 
558
 
559
- #: wp-table-reloaded-admin.php:1057
560
  msgid "Save Options"
561
  msgstr "Ruaj opsionet"
562
 
563
- #: wp-table-reloaded-admin.php:1067
564
- msgid "Do you really want to activate this? You should only do that right before uninstallation!"
565
- msgstr "Je i sigurtë që të aktivosh këtë? Ju duhet ta bëni këtë vetëm nëse do ç'instaloni pluginin!"
566
-
567
- #: wp-table-reloaded-admin.php:1073
568
  msgid "Manually Uninstall Plugin"
569
  msgstr "Ç'instalim manual i pluginit"
570
 
571
- #: wp-table-reloaded-admin.php:1075
572
  msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported.<br/> Be very careful with this and only click the button if you know what you are doing!"
573
  msgstr "Këtu mund të ç'instalosh Pluginin. Ky veprim <strong>fshin</strong> të gjtihë tabelat, datat dhe opsionet që i përkasin pluginit, duke përfshirë këtu edhe të gjithë tabelat e importuara. Kështu që ki kujdes edhe kliko butonin vetëm kur të jesh i sigurtë për atë që po bën!"
574
 
575
- #: wp-table-reloaded-admin.php:1078
576
- msgid "Do you really want to uninstall the plugin and delete ALL data?"
577
- msgstr "Jeni i sigurtë që doni me fshi pluginin edhe të gjithë të dhënat që janë në të?"
578
-
579
- #: wp-table-reloaded-admin.php:1078
580
- msgid "Are you really sure?"
581
- msgstr "Je me të vërtet i sigurtë?"
582
-
583
- #: wp-table-reloaded-admin.php:1078
584
  msgid "Uninstall Plugin WP-Table Reloaded"
585
  msgstr "Ç'instalo Plugin WP-Table Reloaded"
586
 
587
- #: wp-table-reloaded-admin.php:1088
588
  msgid "Information about the plugin"
589
  msgstr "Informacione mbi këtë plugin"
590
 
591
- #: wp-table-reloaded-admin.php:1094
592
  msgid "Plugin Purpose"
593
  msgstr "Qëllimi i pluginit"
594
 
595
- #: wp-table-reloaded-admin.php:1096
596
- msgid "This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode."
597
- msgstr "Ky plugin ju lejoj juve të krijoni edhe menaxhoni tabela nëpërmjet panelit të Administratorit të Wordpress. Tabelat mund të integrohen ne faqe, postime apo Text-Widget me ane të një Shortcode."
 
 
 
 
598
 
599
- #: wp-table-reloaded-admin.php:1101
 
 
 
 
 
 
 
 
600
  msgid "Usage"
601
  msgstr "Përdorimi"
602
 
603
- #: wp-table-reloaded-admin.php:1103
604
- msgid "At first you should add or import a table. Then edit your data and select the options you want. To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them. You may then style your table via CSS. Every table has the CSS-class \"wp-table-reloaded\". A table also has the class \"wp-table-reloaded-&lt;table-id&gt;\". You can also use the classes \"column-&lt;number&gt;\" and \"row-&lt;number&gt;\" to style rows and columns individually. Use this to style columns width and text alignment."
605
- msgstr "Si fillim duhet të shtosh ose importosh një tabelë. Pastaj mund të përpunosh dokumentin dhe të zgjedhësh opsionet që dëshiron. Që të fusësh tabelën në një postim apo faqen tënde, vendos aty Shortcode [table id=&lt;ID-e-tabeles&gt;] . Pastaj ke edhe mundësinë të ndryshosh paraqitjen e tabelës me anë të CSS. Secila nga tabelat ka klasën CSS \"wp-table-reloaded\". Gjithashtu secila tabelë ka edhe klasën \"wp-table-reloaded-&lt;table-id&gt;\". Gjithashtu mund të përdorësh dhe klasat \"column-&lt;Nummer&gt;\" dhe \"row-&lt;Nummer&gt;\" , në mënyrë që të stilosh rrjeshtat apo kolonat individualisht. Gjithashtu përdor këtë për të caktuar gjërësinë e kolonave edhe rënditjen e tekstit."
 
 
 
 
 
 
 
 
 
 
 
 
606
 
607
- #: wp-table-reloaded-admin.php:1107
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
608
  msgid "More Information and Documentation"
609
  msgstr "Informacione dhe dokumentacione të tjera"
610
 
611
- #: wp-table-reloaded-admin.php:1109
612
- msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. A documentation and certain support and help request possibilities will be available soon."
613
- msgstr "Më shumë informacione gjen tek <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">Faqja e Plugin</a> ose tek faqja e <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory.</a> Një dokumentacion edhe ndihma të ndryshme do të jenë shumë shpejt në dispozicion."
 
 
 
 
 
614
 
615
- #: wp-table-reloaded-admin.php:1114
616
  msgid "Author and Licence"
617
  msgstr "Autori dhe liçenca"
618
 
619
- #: wp-table-reloaded-admin.php:1116
620
  msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. It is licenced as Free Software under GPL 2."
621
  msgstr "Ky Plugin u shkrua nga <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a> . Plugini është Falas dhe nën liçencën GPL v2 ."
622
 
623
- #: wp-table-reloaded-admin.php:1116
624
- msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">donating</a> or rating it at the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. Thanks!"
625
- msgstr "Nëse të pëlqen ky plugin atëher mund të<a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">dhurosh diçka</a> ose vlerëso pluginin në faqen e <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a> . Faleminderit!"
626
 
627
- #: wp-table-reloaded-admin.php:1121
 
 
 
 
628
  msgid "Credits and Thanks"
629
  msgstr "Credite dhe falenderime"
630
 
631
- #: wp-table-reloaded-admin.php:1124
632
  msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
633
  msgstr "Shumë faleminderit <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> për Pluginin WP-Table,"
634
 
635
- #: wp-table-reloaded-admin.php:1125
636
- msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
637
  msgstr "Christian Bach për <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
638
 
639
- #: wp-table-reloaded-admin.php:1126
640
  msgid "the submitters of translations:"
641
  msgstr "Personat që kanë përkthyer dokumentat"
642
 
643
- #: wp-table-reloaded-admin.php:1127
644
  msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
645
  msgstr "Shqip (falenderimet shkojnë për <a href=\"http://www.romeolab.com/\">Romeo</a>)"
646
 
647
- #: wp-table-reloaded-admin.php:1128
 
 
 
 
648
  msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
649
  msgstr "Frëngjisht (falenderimet shkojnë për <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
650
 
651
- #: wp-table-reloaded-admin.php:1129
652
  msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
653
  msgstr "Rusisht (falenderimet shkojnë për <a href=\"http://wp-skins.info/\">Truper</a>)"
654
 
655
- #: wp-table-reloaded-admin.php:1130
656
- msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>)"
657
- msgstr "Spanjisht (falenderimet shkojnë për <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>)"
658
 
659
- #: wp-table-reloaded-admin.php:1131
660
  msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
661
  msgstr "Suedisht (falenderimet shkojnë për <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
662
 
663
- #: wp-table-reloaded-admin.php:1132
664
  msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
665
  msgstr "Turqisht (falenderimet shkojnë për <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
666
 
667
- #: wp-table-reloaded-admin.php:1133
668
- msgid "and all contributors, supporters, reviewers and users of the plugin!"
669
  msgstr "dhe të gjithë ndihmësit, Reviewer dhe përdoruesit e Pluginit!"
670
 
671
- #: wp-table-reloaded-admin.php:1170
 
 
 
 
 
 
 
 
672
  msgid "List Tables"
673
  msgstr "Lista e tabelave"
674
 
675
- #: wp-table-reloaded-admin.php:1175
676
  msgid "Plugin Options"
677
  msgstr "Opsionet e pluginit"
678
 
679
- #: wp-table-reloaded-admin.php:1176
680
  msgid "About the Plugin"
681
  msgstr "Rreth Pluginit"
682
 
683
- #: wp-table-reloaded-admin.php:1184
684
- msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a>. A documentation and certain support and help request possibilities will be available soon."
685
- msgstr "Më shumë informacione gjeni në faqen e <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">Pluginit</a> . Aty do të gjeni edhe dokumenta ndihmëse."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
686
 
687
  #. Plugin URI of an extension
688
  msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
689
  msgstr "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
690
 
691
  #. Description of an extension
692
- msgid "This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode. The plugin is a completely rewritten and extended version of Alex Rabe's \"wp-Table\" and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin."
693
  msgstr "Ky plugin ju lejoj juve të krijoni edhe menaxhoni tabela nëpërmjet panelit të Administratorit të Wordpress. Tabelat mund të integrohen ne faqe, postime apo Text-Widget me ane të një Shortcode."
694
 
695
  #. Author of an extension
@@ -700,6 +888,51 @@ msgstr "Tobias B&auml;thge"
700
  msgid "http://tobias.baethge.com/"
701
  msgstr "http://tobias.baethge.com/"
702
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
703
  #~ msgid "Use global CSS-file?"
704
  #~ msgstr "Përdor dokumentin global CSS-StyleSheet ?"
705
  #~ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP-Table Reloaded v0.9.2\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
5
+ "POT-Creation-Date: 2009-05-06 08:33+0000\n"
6
+ "PO-Revision-Date: 2009-05-09 12:06+0100\n"
7
  "Last-Translator: Romeo Shuka <webmaster@romeolab.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\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 "; (pikë-presje)"
38
 
39
  #: php/wp-table-reloaded-export.class.php:36
 
40
  msgid ", (comma)"
41
  msgstr ", (presje)"
42
 
43
  #: php/wp-table-reloaded-export.class.php:37
 
44
  msgid ": (colon)"
45
  msgstr ": (Dy pika)"
46
 
47
+ #: php/wp-table-reloaded-export.class.php:38
48
+ msgid ". (dot)"
49
+ msgstr ". (pikë)"
50
+
51
+ #: php/wp-table-reloaded-export.class.php:39
52
+ msgid "| (pipe)"
53
+ msgstr "| (pipe)"
54
+
55
+ #: wp-table-reloaded-admin.php:150
56
  #, php-format
57
  msgid "Table \"%s\" added successfully."
58
  msgstr "Tabela \"%s\" u shtua me sukses."
59
 
60
+ #: wp-table-reloaded-admin.php:173
61
  msgid "Table edited successfully."
62
  msgstr "Tabela u përpunua me sukses."
63
 
64
+ #: wp-table-reloaded-admin.php:189
65
  msgid "Rows swapped successfully."
66
  msgstr "Rrjeshtat u ndërruan me sukses."
67
 
68
+ #: wp-table-reloaded-admin.php:208
69
  msgid "Columns swapped successfully."
70
  msgstr "Kolonat u ndërruan me sukses."
71
 
72
+ #: wp-table-reloaded-admin.php:226
73
+ msgid "Table sorted successfully."
74
+ msgstr "Tabela u rradhit me sukses."
75
+
76
+ #: wp-table-reloaded-admin.php:261
77
+ #: wp-table-reloaded-admin.php:310
78
  msgid "Copy of"
79
  msgstr "Kopje e"
80
 
81
+ #: wp-table-reloaded-admin.php:265
82
+ msgid "Table copied successfully."
83
+ msgid_plural "Tables copied successfully."
84
+ msgstr[0] "Tabela u kopjua me sukses."
85
+ msgstr[1] "Tabelat u kopjuan me sukses."
86
+
87
+ #: wp-table-reloaded-admin.php:274
88
+ msgid "Table deleted successfully."
89
+ msgid_plural "Tables deleted successfully."
90
+ msgstr[0] "Tabela u fshi me sukses."
91
+ msgstr[1] "Tabelat u fshin me sukses."
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] "Tabela u importua me sukses."
99
+ msgstr[1] "Tabelat u importuan me sukses."
100
+
101
+ #: wp-table-reloaded-admin.php:293
102
+ msgid "You did not select any tables!"
103
+ msgstr "Ti nuk ke selektuar asnjë tabelë."
104
+
105
+ #: wp-table-reloaded-admin.php:315
106
  #, php-format
107
  msgid "Table \"%s\" copied successfully."
108
  msgstr "Tabela \"%s\" u kopjua me sukses."
109
 
110
+ #: wp-table-reloaded-admin.php:334
111
  #, php-format
112
  msgid "Table \"%s\" deleted successfully."
113
  msgstr "Tabela \"%s\" u fshi me sukses."
114
 
115
+ #: wp-table-reloaded-admin.php:344
116
  msgid "Row deleted successfully."
117
  msgstr "Rrjeshti u fshi me sukses."
118
 
119
+ #: wp-table-reloaded-admin.php:357
120
  msgid "Column deleted successfully."
121
  msgstr "Kolona u fshi me sukses."
122
 
123
+ #: wp-table-reloaded-admin.php:362
124
  msgid "Delete failed."
125
  msgstr "Fshirja nuk u krye."
126
 
127
+ #: wp-table-reloaded-admin.php:386
128
  msgid "Row inserted successfully."
129
  msgstr "Rrjeshti u shtua me sukses."
130
 
131
+ #: wp-table-reloaded-admin.php:395
132
  msgid "Column inserted successfully."
133
  msgstr "Kolona u shtua me sukses."
134
 
135
+ #: wp-table-reloaded-admin.php:398
136
  msgid "Insert failed."
137
  msgstr "Shtimi nuk u krye."
138
 
139
+ #: wp-table-reloaded-admin.php:425
140
  msgid "Imported Table"
141
  msgstr "Tabelë e importuar"
142
 
143
+ #: wp-table-reloaded-admin.php:426
144
  msgid "via form"
145
  msgstr "via form"
146
 
147
+ #: wp-table-reloaded-admin.php:445
 
 
 
 
 
148
  msgid "Table could not be imported."
149
  msgstr "Tabela nuk mund të importohet"
150
 
151
+ #: wp-table-reloaded-admin.php:489
152
  #, php-format
153
  msgid "Table \"%s\" exported successfully."
154
  msgstr "Tabela \"%s\" u eksportua me sukses."
155
 
156
+ #: wp-table-reloaded-admin.php:517
157
  msgid "Options saved successfully."
158
  msgstr "Opsionet u ruajtën me sukses."
159
 
160
  #. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
161
  #. Plugin Name of an extension
162
+ #: wp-table-reloaded-admin.php:535
163
  msgid "WP-Table Reloaded"
164
  msgstr "WP-Table Reloaded"
165
 
166
+ #: wp-table-reloaded-admin.php:536
167
  msgid "Plugin deactivated successfully."
168
  msgstr "Plugini u ç'aktivizua me sukses."
169
 
170
+ #: wp-table-reloaded-admin.php:537
171
  msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
172
  msgstr "Të gjitha tabelat, datat edhe opsionet u fshinë. Tani mund të fshish edhe dosjen e Pluginit nga serveri juaj."
173
 
174
+ #: wp-table-reloaded-admin.php:553
175
+ #: wp-table-reloaded-admin.php:613
176
  msgid "List of Tables"
177
  msgstr "Lista e tabelave"
178
 
179
+ #: wp-table-reloaded-admin.php:555
180
+ #: wp-table-reloaded-admin.php:616
181
+ msgid "This is a list of all available tables."
182
+ msgstr "Kjo është një listë e të gjithë tabelave. "
183
+
184
+ #: wp-table-reloaded-admin.php:555
185
+ msgid "You may insert a table into a post or page here."
186
+ msgstr "Ti mund të shtosh një tabelë në një postim apo faqe këtu."
187
 
188
+ #: wp-table-reloaded-admin.php:556
189
+ 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>)."
190
+ msgstr "Klikoni linkun \"Insert\" mbas tabelës dëshiruar edhe shortcode do instalohet edito <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
191
 
192
+ #: wp-table-reloaded-admin.php:564
193
+ #: wp-table-reloaded-admin.php:628
194
+ #: wp-table-reloaded-admin.php:1008
195
  msgid "ID"
196
  msgstr "ID"
197
 
198
+ #: wp-table-reloaded-admin.php:565
199
+ #: wp-table-reloaded-admin.php:629
200
+ #: wp-table-reloaded-admin.php:697
201
+ #: wp-table-reloaded-admin.php:746
202
+ #: wp-table-reloaded-admin.php:1009
203
  msgid "Table Name"
204
  msgstr "Emri i Tabelës"
205
 
206
+ #: wp-table-reloaded-admin.php:566
207
+ #: wp-table-reloaded-admin.php:630
208
+ #: wp-table-reloaded-admin.php:701
209
+ #: wp-table-reloaded-admin.php:750
210
+ #: wp-table-reloaded-admin.php:1010
211
  msgid "Description"
212
  msgstr "Përshkrimi"
213
 
214
+ #: wp-table-reloaded-admin.php:567
215
+ #: wp-table-reloaded-admin.php:631
216
+ #: wp-table-reloaded-admin.php:1011
217
  msgid "Action"
218
  msgstr "Aksioni"
219
 
220
+ #: wp-table-reloaded-admin.php:587
221
+ msgid "Insert"
222
+ msgstr "Shto "
223
+
224
+ #: wp-table-reloaded-admin.php:596
225
+ #: wp-table-reloaded-admin.php:677
226
+ #: wp-table-reloaded-admin.php:1129
227
+ msgid "No tables found."
228
+ msgstr "Asnjë tabelë e gjetur."
229
+
230
+ #: wp-table-reloaded-admin.php:616
231
+ msgid "You may add, edit, copy or delete tables here."
232
+ msgstr "Ti mund të shtosh, të përpunosh, kopjosh apo fshish tabelat këtu."
233
+
234
+ #: wp-table-reloaded-admin.php:617
235
+ 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."
236
+ msgstr "Nëse don të bësh tabelën të shfaqet në një postim, atëherë duhet të përdorësh Shortcode: <strong>[table id=&lt;the_table_ID&gt; /]</strong> ose të klikosh butonin \"Table\" nëeditor toolbar."
237
+
238
+ #: wp-table-reloaded-admin.php:657
239
  msgid "Edit"
240
  msgstr "Përpuno"
241
 
242
+ #: wp-table-reloaded-admin.php:658
 
 
 
 
243
  msgid "Copy"
244
  msgstr "Kopjo"
245
 
246
+ #: wp-table-reloaded-admin.php:659
247
  msgid "Export"
248
  msgstr "Eksporto"
249
 
250
+ #: wp-table-reloaded-admin.php:660
 
 
 
 
 
251
  msgid "Delete"
252
  msgstr "Fshi"
253
 
254
+ #: wp-table-reloaded-admin.php:668
255
+ #: wp-table-reloaded-admin.php:1040
256
+ msgid "Bulk actions:"
257
+ msgstr "Aksionet Bulk:"
258
 
259
+ #: wp-table-reloaded-admin.php:668
260
+ msgid "Copy Tables"
261
+ msgstr "Kopjo tabela"
262
+
263
+ #: wp-table-reloaded-admin.php:668
264
+ msgid "Delete Tables"
265
+ msgstr "Fshi tabela"
266
+
267
+ #: wp-table-reloaded-admin.php:677
268
+ #: wp-table-reloaded-admin.php:1129
269
  #, php-format
270
  msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
271
  msgstr "Mund të <a href=\"%s\">shtosh</a> ose <a href=\"%s\">importosh</a> një tabelë!"
272
 
273
+ #: wp-table-reloaded-admin.php:685
274
+ #: wp-table-reloaded-admin.php:1312
275
  msgid "Add new Table"
276
  msgstr "Shto tabelë të re"
277
 
278
+ #: wp-table-reloaded-admin.php:689
279
  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."
280
  msgstr "Këtu mund të shtosh ti një tabelë të re. Vendos emrin e saj, pëshkrimin (me dëshirë) dhe numrin e kolonave dhe rrjeshtave.<br/> Ti mund të shtosh apo fshish kolona e rrjeshta edhe me vone. löschen."
281
 
282
+ #: wp-table-reloaded-admin.php:698
283
  msgid "Enter Table Name"
284
  msgstr "Vendos emrin e tabelës"
285
 
286
+ #: wp-table-reloaded-admin.php:702
287
  msgid "Enter Description"
288
  msgstr "Vendos përshkrimit"
289
 
290
+ #: wp-table-reloaded-admin.php:705
291
  msgid "Number of Rows"
292
  msgstr "Numri i rrjeshtave"
293
 
294
+ #: wp-table-reloaded-admin.php:709
295
  msgid "Number of Columns"
296
  msgstr "Numri i kolonave"
297
 
298
+ #: wp-table-reloaded-admin.php:716
299
  msgid "Add Table"
300
  msgstr "Shto Tabelë"
301
 
302
+ #: wp-table-reloaded-admin.php:733
303
  #, php-format
304
  msgid "Edit Table \"%s\""
305
  msgstr "Formato tabelën \"%s\""
306
 
307
+ #: wp-table-reloaded-admin.php:736
308
  msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
309
  msgstr "Këtu mund të përpunosh pëmbajtjen e tabelës. Gjithashtu mund të fshish, shtosh e ndërrosh rrjeshta apo kolona."
310
 
311
+ #: wp-table-reloaded-admin.php:737
312
  #, php-format
313
  msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
314
  msgstr "Nëse don të bësh tabelën të shfaqet në një postim, atëherë duhet të përdorësh Shortcode: <strong>[table id=%s /]</strong>"
315
 
316
+ #: wp-table-reloaded-admin.php:742
317
  msgid "Table Information"
318
  msgstr "Informacione mbi tabelën"
319
 
320
+ #: wp-table-reloaded-admin.php:758
321
+ #: wp-table-reloaded-admin.php:926
322
  msgid "Update Changes"
323
  msgstr "Ruaj ndryshimet"
324
 
325
+ #: wp-table-reloaded-admin.php:759
326
+ #: wp-table-reloaded-admin.php:927
327
  msgid "Save and go back"
328
  msgstr "Ruaj dhe kthehu mbrapsht"
329
 
330
+ #: wp-table-reloaded-admin.php:762
331
+ #: wp-table-reloaded-admin.php:930
332
  msgid "Cancel"
333
  msgstr "Anullo"
334
 
335
+ #: wp-table-reloaded-admin.php:768
336
  msgid "Table Contents"
337
  msgstr "Përmbajtja e tabelës"
338
 
339
+ #: wp-table-reloaded-admin.php:768
340
+ #: wp-table-reloaded-admin.php:824
341
+ #: wp-table-reloaded-admin.php:895
342
+ #: wp-table-reloaded-admin.php:1265
343
+ msgid "Hide"
344
+ msgstr "Fshi"
345
+
346
+ #: wp-table-reloaded-admin.php:768
347
+ #: wp-table-reloaded-admin.php:824
348
+ #: wp-table-reloaded-admin.php:895
349
+ #: wp-table-reloaded-admin.php:1265
350
+ msgid "Expand"
351
+ msgstr "Zgjero"
352
+
353
+ #: wp-table-reloaded-admin.php:796
354
  msgid "Insert Row"
355
  msgstr "Shto rrjesht"
356
 
357
+ #: wp-table-reloaded-admin.php:798
 
 
 
 
358
  msgid "Delete Row"
359
  msgstr "Fshi rrjeshtin"
360
 
361
+ #: wp-table-reloaded-admin.php:808
362
  msgid "Insert Column"
363
  msgstr "Shto kolonë"
364
 
365
+ #: wp-table-reloaded-admin.php:810
 
 
 
 
366
  msgid "Delete Column"
367
  msgstr "Fshi kolonën"
368
 
369
+ #: wp-table-reloaded-admin.php:815
370
  msgid "Add Row"
371
  msgstr "Shto rrjesht"
372
 
373
+ #: wp-table-reloaded-admin.php:815
374
  msgid "Add Column"
375
  msgstr "Shto kolonë"
376
 
377
+ #: wp-table-reloaded-admin.php:824
378
  msgid "Data Manipulation"
379
  msgstr "Manipulimi Datave"
380
 
381
+ #: wp-table-reloaded-admin.php:839
382
  #, php-format
383
  msgid "Swap rows %s and %s"
384
  msgstr "Ndërro rrjeshtat %s dhe %s"
385
 
386
+ #: wp-table-reloaded-admin.php:842
387
+ #: wp-table-reloaded-admin.php:862
388
  msgid "Swap"
389
  msgstr "Ndërroj"
390
 
391
+ #: wp-table-reloaded-admin.php:859
392
  #, php-format
393
  msgid "Swap columns %s and %s"
394
  msgstr "Ndërro kolonat %s dhe %s"
395
 
396
+ #: wp-table-reloaded-admin.php:866
397
  msgid "Insert Link"
398
  msgstr "Shto Link"
399
 
400
+ #: wp-table-reloaded-admin.php:866
401
  msgid "Insert Image"
402
  msgstr "Shto foto"
403
 
404
+ #: wp-table-reloaded-admin.php:878
405
+ msgid "ascending"
406
+ msgstr "rritës"
 
 
 
 
407
 
408
+ #: wp-table-reloaded-admin.php:879
409
+ msgid "descending"
410
+ msgstr "zbritës"
 
 
 
 
411
 
412
+ #: wp-table-reloaded-admin.php:882
413
+ #, php-format
414
+ msgid "Sort table by column %s in %s order"
415
+ msgstr "Rradhit tabelën nga kolonat %s në %s "
416
 
417
+ #: wp-table-reloaded-admin.php:885
418
+ msgid "Sort"
419
+ msgstr "Rradhit"
420
 
421
+ #: wp-table-reloaded-admin.php:895
422
  msgid "Table Settings"
423
  msgstr "Opsionet e tabelës"
424
 
425
+ #: wp-table-reloaded-admin.php:897
426
  msgid "These settings will only be used for this table."
427
  msgstr "Këto opsione vlejnë vetëm për këtë tabelë."
428
 
429
+ #: wp-table-reloaded-admin.php:900
430
  msgid "Alternating row colors"
431
  msgstr "ngjyrat e rrjeshtave janë të alternuara"
432
 
433
+ #: wp-table-reloaded-admin.php:901
434
  msgid "Every second row will have an alternating background color."
435
  msgstr "Çdo rrjesht i dytë merr një ngjyrë të ndryshme në background."
436
 
437
+ #: wp-table-reloaded-admin.php:904
438
  msgid "Use Table Headline"
439
  msgstr "Titulli i tabelës"
440
 
441
+ #: wp-table-reloaded-admin.php:905
442
  msgid "The first row of your table will use the [th] tag."
443
  msgstr "Rrjeshti i parë i tabelës tënde do të shënohet me një HTML-tag [th]."
444
 
445
+ #: wp-table-reloaded-admin.php:908
446
  msgid "Print Table Name"
447
  msgstr "Jepni emrin e tabelës"
448
 
449
+ #: wp-table-reloaded-admin.php:909
450
  msgid "The Table Name will be written above the table in a [h2] tag."
451
  msgstr "Emri i tabelës do të shkruhet me një [h2]-HTML-Tag."
452
 
453
+ #: wp-table-reloaded-admin.php:912
454
  msgid "Print Table Description"
455
  msgstr "Jep përshkrimin e tabelës"
456
 
457
+ #: wp-table-reloaded-admin.php:913
458
  msgid "The Table Description will be written under the table."
459
  msgstr "Përshkrimi i tabelës do të shkruhet poshtë saj."
460
 
461
+ #: wp-table-reloaded-admin.php:916
462
  msgid "Use Tablesorter"
463
  msgstr "Përdor Tablesorter"
464
 
465
+ #: wp-table-reloaded-admin.php:917
466
  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>"
467
  msgstr "Ju mund të rradhisni elementët e tabelës me <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> . <small> KUJDES: Tablesorter duhet të jetë i aktivizuar në \"Plugin Options\" ! Gjithashtu duhet të aktivizohet edhe opsioni \"Use Table Headline\" (me [th]) (shiko lart) aktiviert sein!</small>"
468
 
469
+ #: wp-table-reloaded-admin.php:932
470
  msgid "Other actions"
471
  msgstr "Aksione të tjera"
472
 
473
+ #: wp-table-reloaded-admin.php:935
474
  msgid "Delete Table"
475
  msgstr "Fshi tabelën"
476
 
477
+ #: wp-table-reloaded-admin.php:936
478
+ #: wp-table-reloaded-admin.php:1118
479
  msgid "Export Table"
480
  msgstr "Eksporto tabelën"
481
 
482
+ #: wp-table-reloaded-admin.php:947
483
+ #: wp-table-reloaded-admin.php:1313
484
  msgid "Import a Table"
485
  msgstr "Importo një tabelë"
486
 
487
+ #: wp-table-reloaded-admin.php:951
488
  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."
489
  msgstr "Këtu mund të importohet një Tabelë nga një dokument ekzistues.<br/> Ky mund të jetë një CSV-, XML- ose HTML-dokument. Për probleme lexoni dokumentacionin përkatës."
490
 
491
+ #: wp-table-reloaded-admin.php:958
492
  msgid "Select Import Format"
493
  msgstr "Zgjidh dokumentin e importimit"
494
 
495
+ #: wp-table-reloaded-admin.php:968
 
 
 
 
 
 
 
 
 
496
  msgid "Select File with Table to Import"
497
  msgstr "Zgjidh dokumentin me tabelën për tu importuar"
498
 
499
+ #: wp-table-reloaded-admin.php:972
500
  msgid "- or -"
501
  msgstr "- ose -"
502
 
503
+ #: wp-table-reloaded-admin.php:973
504
  msgid "(upload will be preferred over pasting)"
505
  msgstr "(Ngarkimi ka përparësi kundrejt kopimit)"
506
 
507
+ #: wp-table-reloaded-admin.php:976
508
  msgid "Paste data with Table to Import"
509
  msgstr "ngjit tabelën që duhet importuar"
510
 
511
+ #: wp-table-reloaded-admin.php:982
512
  msgid "Import Table"
513
  msgstr "Importo tabelën"
514
 
515
+ #: wp-table-reloaded-admin.php:995
516
  msgid "Import from original wp-Table plugin"
517
  msgstr "Importo nga tabelat e Pluginit origjinal WP-Table"
518
 
519
+ #: wp-table-reloaded-admin.php:1032
 
 
 
 
520
  msgid "Import"
521
  msgstr "Importo"
522
 
523
+ #: wp-table-reloaded-admin.php:1040
524
+ msgid "Import Tables"
525
+ msgstr "Importo tabela"
526
+
527
+ #: wp-table-reloaded-admin.php:1046
528
  msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
529
  msgstr "Plugini WP-Table vnga Alex Rabe duket sikur është i instaluar, por nuk u gjëndën asnjë tabela."
530
 
531
+ #: wp-table-reloaded-admin.php:1065
532
+ #: wp-table-reloaded-admin.php:1314
533
  msgid "Export a Table"
534
  msgstr "Eksporto një tabelë"
535
 
536
+ #: wp-table-reloaded-admin.php:1069
537
  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."
538
  msgstr "Këtu mund të eksportohet një tabelë. Si fillim zgjidh tabelën, më pas llojin e formatit të eksportit dhe ndarëset (vetëm për CVS).<br/> Gjithashtu mund të zgjedhës që ky dokument të shkarkohet apo të tregohet në faqe."
539
 
540
+ #: wp-table-reloaded-admin.php:1077
541
  msgid "Select Table to Export"
542
  msgstr "zgjidh tabelën për të eksportuar"
543
 
544
+ #: wp-table-reloaded-admin.php:1092
545
  msgid "Select Export Format"
546
  msgstr "Zgjidh formatin e eksportit"
547
 
548
+ #: wp-table-reloaded-admin.php:1102
549
  msgid "Select Delimiter to use"
550
  msgstr "Zgjidh ndarësin për të përdorur"
551
 
552
+ #: wp-table-reloaded-admin.php:1109
553
+ msgid "<small>(Only needed for CSV export.)</small>"
554
+ msgstr "<small>(Vetëm për Exportin e datave CSV.)</small>"
555
+
556
+ #: wp-table-reloaded-admin.php:1112
557
  msgid "Download file"
558
  msgstr "Shkarko dokumentin"
559
 
560
+ #: wp-table-reloaded-admin.php:1113
561
  msgid "Yes, I want to download the export file."
562
  msgstr "Po, unë dua të shkarkoj dokumentat e eksportuar."
563
 
564
+ #: wp-table-reloaded-admin.php:1138
565
  msgid "General Plugin Options"
566
  msgstr "Opsionet e Pluginit"
567
 
568
+ #: wp-table-reloaded-admin.php:1142
569
  msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
570
  msgstr "Këtu mund të ndryshohet opsione e përgjithshme të pluginit<br/>Këto ndryshime vlejnë për të gjitha tabelat."
571
 
572
+ #: wp-table-reloaded-admin.php:1149
573
  msgid "Frontend Options"
574
  msgstr "Opsionet e Frontend"
575
 
576
+ #: wp-table-reloaded-admin.php:1153
577
  msgid "Enable Tablesorter-JavaScript?"
578
  msgstr "Aktivizo Tablesorter-JavaScript?"
579
 
580
+ #: wp-table-reloaded-admin.php:1154
581
+ 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)."
582
  msgstr "Po, aktivizo <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugins</a> , në mënyrë që tabelat të bëhen me elementë të rënditshëm (mund të aktivizohet edhe për çdo tabelë më vete)."
583
 
584
+ #: wp-table-reloaded-admin.php:1157
585
  msgid "Add custom CSS?"
586
  msgstr "Shto CSS të personalizuar?"
587
 
588
+ #: wp-table-reloaded-admin.php:1159
589
+ msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag."
590
+ msgstr "Po, përshi dhe ngarko dokumentin CSS faqet time brënda [style]-HTML-tag."
 
591
 
592
+ #: wp-table-reloaded-admin.php:1164
593
  msgid "Enter custom CSS"
594
  msgstr "Vendos CSS"
595
 
596
+ #: wp-table-reloaded-admin.php:1166
597
+ #, php-format
598
+ 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."
599
+ msgstr "(Ti mund të kesh një performancë më të mirë të faqes nëse filet CSS i shton tek dokumenti CSS i themes \"style.css\" <small> (lokalizuar tek %s) </small>."
600
+
601
+ #: wp-table-reloaded-admin.php:1167
602
+ #, php-format
603
+ 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>"
604
+ msgstr "Shiko <a href=\"%s\">faqen e pluginit</a> për shembuj ose përdor këto në vijim: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
605
+
606
+ #: wp-table-reloaded-admin.php:1167
607
+ msgid "Just copy the contents of a file into the textarea."
608
+ msgstr "Vetëm kopjo përmbajtjen e një dokumenti ne textarea."
609
+
610
+ #: wp-table-reloaded-admin.php:1175
611
  msgid "Admin Options"
612
  msgstr "Opsionet e adminit"
613
 
614
+ #: wp-table-reloaded-admin.php:1179
615
  msgid "Uninstall Plugin upon Deactivation?"
616
  msgstr "Ç'instalo pluginin mbas ç'aktivizimit?"
617
 
618
+ #: wp-table-reloaded-admin.php:1180
619
+ 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!"
620
+ msgstr "Po, ç'instalo të gjitha mbasi plugini është deaktivuar. Kujdes: Ti duhet të aktivizosh këtë kutiz përpara ç'aktivizimit të pluginit nga Wordpress-Plugin-Menager! "
621
+
622
+ #: wp-table-reloaded-admin.php:1180
623
+ msgid "<small>(This setting does not influence the \"Manually Uninstall Plugin\" button below!)</small>"
624
+ msgstr "<small>(Ky opsion nuk ndikon në butonin \"Manually Unistall Plugin\" )</small>"
625
 
626
+ #: wp-table-reloaded-admin.php:1190
627
  msgid "Save Options"
628
  msgstr "Ruaj opsionet"
629
 
630
+ #: wp-table-reloaded-admin.php:1196
 
 
 
 
631
  msgid "Manually Uninstall Plugin"
632
  msgstr "Ç'instalim manual i pluginit"
633
 
634
+ #: wp-table-reloaded-admin.php:1198
635
  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!"
636
  msgstr "Këtu mund të ç'instalosh Pluginin. Ky veprim <strong>fshin</strong> të gjtihë tabelat, datat dhe opsionet që i përkasin pluginit, duke përfshirë këtu edhe të gjithë tabelat e importuara. Kështu që ki kujdes edhe kliko butonin vetëm kur të jesh i sigurtë për atë që po bën!"
637
 
638
+ #: wp-table-reloaded-admin.php:1201
 
 
 
 
 
 
 
 
639
  msgid "Uninstall Plugin WP-Table Reloaded"
640
  msgstr "Ç'instalo Plugin WP-Table Reloaded"
641
 
642
+ #: wp-table-reloaded-admin.php:1212
643
  msgid "Information about the plugin"
644
  msgstr "Informacione mbi këtë plugin"
645
 
646
+ #: wp-table-reloaded-admin.php:1218
647
  msgid "Plugin Purpose"
648
  msgstr "Qëllimi i pluginit"
649
 
650
+ #: wp-table-reloaded-admin.php:1220
651
+ msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
652
+ msgstr "Ky plugin ju lejoj juve të krijoni edhe menaxhoni tabela nëpërmjet panelit të Administratorit të Wordpress."
653
+
654
+ #: wp-table-reloaded-admin.php:1220
655
+ msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
656
+ msgstr "Tabelat mund të përmbajnë strings, numra dhe HTML(psh. për të përfshirë imazhe dhe linke.)"
657
 
658
+ #: wp-table-reloaded-admin.php:1220
659
+ msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
660
+ msgstr "Ti mund ti shfaqësh tabelat më pas në postimet e tuaja, faqet e tuaja apo ne widgets duke përdorur shortcode"
661
+
662
+ #: wp-table-reloaded-admin.php:1220
663
+ msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
664
+ msgstr "Nëse doni që tabelat të shfaqen diku ne themen tuaj, atëher mund të përdorësh një template tag funksion."
665
+
666
+ #: wp-table-reloaded-admin.php:1225
667
  msgid "Usage"
668
  msgstr "Përdorimi"
669
 
670
+ #: wp-table-reloaded-admin.php:1227
671
+ msgid "At first you should add or import a table."
672
+ msgstr "Si fillim ju duhet të shtoni apo importoni një tabelë."
673
+
674
+ #: wp-table-reloaded-admin.php:1227
675
+ 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."
676
+ msgstr "Kjo tregon se ju lejoni pluginin të krijoj një tabelë boshe për ju dhe gjithashtu të ngarkoj një tabelë ekzistuese nga një dokument CSV, XML ose HTML."
677
+
678
+ #: wp-table-reloaded-admin.php:1227
679
+ 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."
680
+ msgstr "Mund të ndryshoni datat tuaja ose të ndryshoni strukturën e tabelës (psh. me fshirjen ose shtimin e kolonave) dhe mund të selektoni opsionet e tabelës si alternimi i ngjyrave të rrjeshtave etj."
681
+
682
+ #: wp-table-reloaded-admin.php:1227
683
+ 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."
684
+ msgstr "Për të shtuar një imazh apo link ju mund të përdorni butonat përkatës. Ato do ju kërkojnë ju URL dhe titull. Më pas mund të klikoni në kutinë ku doni të shtohet edhe gjithcka do të bëhet automatikisht."
685
 
686
+ #: wp-table-reloaded-admin.php:1227
687
+ msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them."
688
+ msgstr "Nëse don të bësh tabelën të shfaqet në një postim,faqe apo widget atëherë duhet të përdorësh Shortcode:[table id=&lt;table-id&gt;]"
689
+
690
+ #: wp-table-reloaded-admin.php:1227
691
+ 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."
692
+ msgstr "Ju gjithashtu mund të zgjidhni edhe tabelën e preferuar nga një liste (mbasi të keni klikuar butonin \"Table\" në editor toolbar) dhe shortkodi përkatës do të shtohet"
693
+
694
+ #: wp-table-reloaded-admin.php:1227
695
+ 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;\"."
696
+ msgstr "Ju mund të stiloni tabelën tuaj përmes CSS. Shembuj të ndryshëm janë dhënë në faqen e pluginit. Secila tabelë ka këtë CSS class \"wp-table-reloaded\" .Gjithashtu secila tabelë ka class \"wp-table-reloaded-&lt;table-id&gt;\"."
697
+
698
+ #: wp-table-reloaded-admin.php:1227
699
+ 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."
700
+ msgstr "Ju mund të përdorni klasën \"column-&lt;number&gt;\" dhe \"row-&lt;number&gt;\" për të stiluar rrjeshtat edhe kollonat. Përdor këtë për të stiluar gjërësinë e kolonave dhe alignment të tekstit."
701
+
702
+ #: wp-table-reloaded-admin.php:1232
703
  msgid "More Information and Documentation"
704
  msgstr "Informacione dhe dokumentacione të tjera"
705
 
706
+ #: wp-table-reloaded-admin.php:1234
707
+ 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>."
708
+ msgstr "Më shumë informacione gjen tek <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">Faqja e Plugin</a> ose tek faqja e <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory.</a>"
709
+
710
+ #: wp-table-reloaded-admin.php:1234
711
+ #: wp-table-reloaded-admin.php:1325
712
+ 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>."
713
+ msgstr "Shikoni <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">dokumentacionin</a> ose gjeni si të merrni <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
714
 
715
+ #: wp-table-reloaded-admin.php:1239
716
  msgid "Author and Licence"
717
  msgstr "Autori dhe liçenca"
718
 
719
+ #: wp-table-reloaded-admin.php:1241
720
  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."
721
  msgstr "Ky Plugin u shkrua nga <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a> . Plugini është Falas dhe nën liçencën GPL v2 ."
722
 
723
+ #: wp-table-reloaded-admin.php:1241
724
+ 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>."
725
+ msgstr "Nëse të pëlqen ky plugin atëher mund të<a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>dhurosh diçka</strong></a> ose vlerëso pluginin në faqen e <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a> . Faleminderit!"
726
 
727
+ #: wp-table-reloaded-admin.php:1241
728
+ msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
729
+ msgstr "Donacionet dhe vlerësimet më inkurajojnë mua që të zhvilloj këtë plugin dhe të ofroj suport. Çdo shumë është e mirëpritur! Faleminderit!"
730
+
731
+ #: wp-table-reloaded-admin.php:1246
732
  msgid "Credits and Thanks"
733
  msgstr "Credite dhe falenderime"
734
 
735
+ #: wp-table-reloaded-admin.php:1249
736
  msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
737
  msgstr "Shumë faleminderit <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> për Pluginin WP-Table,"
738
 
739
+ #: wp-table-reloaded-admin.php:1250
740
+ msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
741
  msgstr "Christian Bach për <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
742
 
743
+ #: wp-table-reloaded-admin.php:1251
744
  msgid "the submitters of translations:"
745
  msgstr "Personat që kanë përkthyer dokumentat"
746
 
747
+ #: wp-table-reloaded-admin.php:1252
748
  msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
749
  msgstr "Shqip (falenderimet shkojnë për <a href=\"http://www.romeolab.com/\">Romeo</a>)"
750
 
751
+ #: wp-table-reloaded-admin.php:1253
752
+ msgid "Czech (thanks to <a href=\"http://separatista.net/\">Pavel</a>)"
753
+ msgstr "Çekisht (falenderimet shkojnë për <a href=\"http://separatista.net/\">Pavel</a>)"
754
+
755
+ #: wp-table-reloaded-admin.php:1254
756
  msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
757
  msgstr "Frëngjisht (falenderimet shkojnë për <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
758
 
759
+ #: wp-table-reloaded-admin.php:1255
760
  msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
761
  msgstr "Rusisht (falenderimet shkojnë për <a href=\"http://wp-skins.info/\">Truper</a>)"
762
 
763
+ #: wp-table-reloaded-admin.php:1256
764
+ msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
765
+ msgstr "Spanjisht (falenderimet shkojnë për <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>) dhe <a href=\"http://halles.cl/\">Matias Halles</a>)"
766
 
767
+ #: wp-table-reloaded-admin.php:1257
768
  msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
769
  msgstr "Suedisht (falenderimet shkojnë për <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
770
 
771
+ #: wp-table-reloaded-admin.php:1258
772
  msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
773
  msgstr "Turqisht (falenderimet shkojnë për <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
774
 
775
+ #: wp-table-reloaded-admin.php:1259
776
+ msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
777
  msgstr "dhe të gjithë ndihmësit, Reviewer dhe përdoruesit e Pluginit!"
778
 
779
+ #: wp-table-reloaded-admin.php:1265
780
+ msgid "Debug and Version Information"
781
+ msgstr "Debug dhe informacione mbi versionin"
782
+
783
+ #: wp-table-reloaded-admin.php:1268
784
+ msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
785
+ msgstr "Ju jeni duke përdorur versionin e mëposhtëm të softwarit. <strong>Ju lutem jepni këtë informacion në raportimet e bugeve. </strong>"
786
+
787
+ #: wp-table-reloaded-admin.php:1311
788
  msgid "List Tables"
789
  msgstr "Lista e tabelave"
790
 
791
+ #: wp-table-reloaded-admin.php:1316
792
  msgid "Plugin Options"
793
  msgstr "Opsionet e pluginit"
794
 
795
+ #: wp-table-reloaded-admin.php:1317
796
  msgid "About the Plugin"
797
  msgstr "Rreth Pluginit"
798
 
799
+ #: wp-table-reloaded-admin.php:1325
800
+ msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
801
+ msgstr "Më shumë informacione gjeni në faqen e <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">Pluginit</a> ."
802
+
803
+ #: wp-table-reloaded-admin.php:1533
804
+ msgid "Do you really want to activate this? You should only do that right before uninstallation!"
805
+ msgstr "Je i sigurtë që të aktivosh këtë? Ju duhet ta bëni këtë vetëm nëse do ç'instaloni pluginin!"
806
+
807
+ #: wp-table-reloaded-admin.php:1534
808
+ msgid "URL of link to insert"
809
+ msgstr "URL e linkut për të futur"
810
+
811
+ #: wp-table-reloaded-admin.php:1535
812
+ msgid "Text of link"
813
+ msgstr "Tekst ose link"
814
+
815
+ #: wp-table-reloaded-admin.php:1536
816
+ msgid "To insert the following link into a cell, just click the cell after closing this dialog."
817
+ msgstr "Për të vendosur linkun në një kuti të tabelës, mjafton të klikoni një kuti mbas mbylljes së këtij dialogu."
818
+
819
+ #: wp-table-reloaded-admin.php:1537
820
+ msgid "URL of image to insert"
821
+ msgstr "URL e imazhit që do të vendoset"
822
+
823
+ #: wp-table-reloaded-admin.php:1538
824
+ msgid "''alt'' text of the image"
825
+ msgstr "\"alt\" teksti i imazhit"
826
+
827
+ #: wp-table-reloaded-admin.php:1539
828
+ msgid "To insert the following image into a cell, just click the cell after closing this dialog."
829
+ msgstr "Për të shtuar imazhin në një kuti të tabelës, mjafton të klikosh kutinë mbasi të keni mbyllur këtë dialog."
830
+
831
+ #: wp-table-reloaded-admin.php:1540
832
+ msgid "Do you want to copy the selected tables?"
833
+ msgstr "Don të kopjosh këtë tabelë?"
834
+
835
+ #: wp-table-reloaded-admin.php:1541
836
+ msgid "The selected tables and all content will be erased. Do you really want to delete them?"
837
+ msgstr "E gjithë tabela bashkë me përmbajtjen do të fshihet. Je i sigurtë për këtë?"
838
+
839
+ #: wp-table-reloaded-admin.php:1542
840
+ msgid "Do you really want to import the selected tables from the wp-Table plugin?"
841
+ msgstr "Jeni i sigurtë që doni të importoni këto tabela nga Plugini WP-Table?"
842
+
843
+ #: wp-table-reloaded-admin.php:1543
844
+ msgid "Do you want to copy this table?"
845
+ msgstr "Don të kopjosh këtë tabelë?"
846
+
847
+ #: wp-table-reloaded-admin.php:1544
848
+ msgid "The complete table and all content will be erased. Do you really want to delete it?"
849
+ msgstr "E gjithë tabela bashkë me përmbajtjen do të fshihet. Je i sigurtë për këtë?"
850
+
851
+ #: wp-table-reloaded-admin.php:1545
852
+ msgid "Do you really want to delete this row?"
853
+ msgstr "Jeni i sigurtë që të fshini këtë rrjesht?"
854
+
855
+ #: wp-table-reloaded-admin.php:1546
856
+ msgid "Do you really want to delete this column?"
857
+ msgstr "A jeni i sigurtë që doni me fshirë këtë kolonë?"
858
+
859
+ #: wp-table-reloaded-admin.php:1547
860
+ msgid "Do you really want to import this table from the wp-Table plugin?"
861
+ msgstr "Jeni i sigurtë që doni të importoni këto tabela nga Plugini WP-Table?"
862
+
863
+ #: wp-table-reloaded-admin.php:1548
864
+ msgid "Do you really want to uninstall the plugin and delete ALL data?"
865
+ msgstr "Jeni i sigurtë që doni me fshi pluginin edhe të gjithë të dhënat që janë në të?"
866
+
867
+ #: wp-table-reloaded-admin.php:1549
868
+ msgid "Are you really sure?"
869
+ msgstr "Je me të vërtet i sigurtë?"
870
+
871
+ #: wp-table-reloaded-admin.php:1597
872
+ msgid "Table"
873
+ msgstr "Tabela"
874
 
875
  #. Plugin URI of an extension
876
  msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
877
  msgstr "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
878
 
879
  #. Description of an extension
880
+ msgid "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."
881
  msgstr "Ky plugin ju lejoj juve të krijoni edhe menaxhoni tabela nëpërmjet panelit të Administratorit të Wordpress. Tabelat mund të integrohen ne faqe, postime apo Text-Widget me ane të një Shortcode."
882
 
883
  #. Author of an extension
888
  msgid "http://tobias.baethge.com/"
889
  msgstr "http://tobias.baethge.com/"
890
 
891
+ #~ msgid "Used Delimiter"
892
+ #~ msgstr "Përdor shenjën ndarëse"
893
+ #~ msgid ""
894
+ #~ "Yes, include and load the following CSS-snippet on my site inside a "
895
+ #~ "[style]-HTML-tag. (If you do not want this, just add your CSS styling to "
896
+ #~ "your theme's \"style.css\" <small>(located at %s)</small>.) (See the <a "
897
+ #~ "href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-"
898
+ #~ "english/\">plugin website</a> for examples.)"
899
+ #~ msgstr ""
900
+ #~ "Po, përdor CSS-snippet e mëposhtëme brënda [style]-HTML-tag. (Nëse nuk "
901
+ #~ "doni këtë, shtoni stilin tuaj të CSS tek thema juaj \"style.css\" <small>"
902
+ #~ "(gjëndet në %s)</small>.) (Shikoni <a href=\"http://tobias.baethge.com/"
903
+ #~ "wordpress-plugins/wp-table-reloaded-english/\">faqen e pluginit</a> për "
904
+ #~ "shëmbuj.)"
905
+ #~ msgid ""
906
+ #~ "At first you should add or import a table. Then edit your data and select "
907
+ #~ "the options you want. To include the table into your posts, pages or text "
908
+ #~ "widgets, write the shortcode [table id=&lt;table-id&gt;] into them. You "
909
+ #~ "may then style your table via CSS. Every table has the CSS-class \"wp-"
910
+ #~ "table-reloaded\". A table also has the class \"wp-table-reloaded-&lt;"
911
+ #~ "table-id&gt;\". You can also use the classes \"column-&lt;number&gt;\" "
912
+ #~ "and \"row-&lt;number&gt;\" to style rows and columns individually. Use "
913
+ #~ "this to style columns width and text alignment."
914
+ #~ msgstr ""
915
+ #~ "Si fillim duhet të shtosh ose importosh një tabelë. Pastaj mund të "
916
+ #~ "përpunosh dokumentin dhe të zgjedhësh opsionet që dëshiron. Që të fusësh "
917
+ #~ "tabelën në një postim apo faqen tënde, vendos aty Shortcode [table "
918
+ #~ "id=&lt;ID-e-tabeles&gt;] . Pastaj ke edhe mundësinë të ndryshosh "
919
+ #~ "paraqitjen e tabelës me anë të CSS. Secila nga tabelat ka klasën CSS \"wp-"
920
+ #~ "table-reloaded\". Gjithashtu secila tabelë ka edhe klasën \"wp-table-"
921
+ #~ "reloaded-&lt;table-id&gt;\". Gjithashtu mund të përdorësh dhe klasat "
922
+ #~ "\"column-&lt;Nummer&gt;\" dhe \"row-&lt;Nummer&gt;\" , në mënyrë që të "
923
+ #~ "stilosh rrjeshtat apo kolonat individualisht. Gjithashtu përdor këtë për "
924
+ #~ "të caktuar gjërësinë e kolonave edhe rënditjen e tekstit."
925
+ #~ msgid ""
926
+ #~ "This plugin allows you to create and manage tables in the admin-area of "
927
+ #~ "WordPress. You can then show them in your posts, on your pages or in text "
928
+ #~ "widgets by using a shortcode. The plugin is a completely rewritten and "
929
+ #~ "extended version of Alex Rabe's \"wp-Table\" and uses the state-of-the-"
930
+ #~ "art WordPress techniques which makes it faster and lighter than the "
931
+ #~ "original plugin."
932
+ #~ msgstr ""
933
+ #~ "Ky plugin ju lejoj juve të krijoni edhe menaxhoni tabela nëpërmjet "
934
+ #~ "panelit të Administratorit të Wordpress. Tabelat mund të integrohen ne "
935
+ #~ "faqe, postime apo Text-Widget me ane të një Shortcode."
936
  #~ msgid "Use global CSS-file?"
937
  #~ msgstr "Përdor dokumentin global CSS-StyleSheet ?"
938
  #~ msgid ""
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-04-27 19:27+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: ZuperZed <info@zuperzed.se>\n"
8
  "Language-Team: www.zuperzed.se <info@zuperzed.se>\n"
@@ -14,673 +14,880 @@ msgstr ""
14
  "X-Poedit-Country: SWEDEN\n"
15
  "X-Poedit-Basepath: .\n"
16
  ": \n"
 
17
  "X-Poedit-SearchPath-0: D:\\Hemsida\\ZuperZed.se\\wp-content\\plugins\\wp-table-reloaded\n"
18
 
19
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:137
20
  #, php-format
21
  msgid "Table \"%s\" added successfully."
22
  msgstr "Tabellen \"%s\" tillagd framgångsrikt."
23
 
24
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:160
25
  msgid "Table edited successfully."
26
  msgstr "Tabell redigerad framgångsrikt."
27
 
28
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:176
29
  msgid "Rows swapped successfully."
30
  msgstr "Rader bytte plats framgångsrikt."
31
 
32
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:195
33
  msgid "Columns swapped successfully."
34
  msgstr "Kolumner bytte plats framgångsrikt."
35
 
36
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:224
 
 
 
 
 
37
  msgid "Copy of"
38
  msgstr "Kopia av"
39
 
40
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:229
 
 
 
 
41
  #, php-format
42
  msgid "Table \"%s\" copied successfully."
43
  msgstr "Tabellen \"%s\" kopierades framgångsrikt."
44
 
45
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:248
46
  #, php-format
47
  msgid "Table \"%s\" deleted successfully."
48
  msgstr "Tabellen \"%s\" raderades framgångsrikt."
49
 
50
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:258
51
  msgid "Row deleted successfully."
52
  msgstr "Rad raderades framgångsrikt."
53
 
54
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:271
55
  msgid "Column deleted successfully."
56
  msgstr "Kolumn raderades framgångsrikt."
57
 
58
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:276
59
  msgid "Delete failed."
60
  msgstr "Radering misslyckades."
61
 
62
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:300
63
  msgid "Row inserted successfully."
64
  msgstr "Infoga rad lyckades."
65
 
66
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:309
67
  msgid "Column inserted successfully."
68
  msgstr "Infoga kolumn lyckades."
69
 
70
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:312
71
  msgid "Insert failed."
72
  msgstr "Infogning misslyckades."
73
 
74
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:340
75
  msgid "Imported Table"
76
  msgstr "Importerad Tabell"
77
 
78
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:341
79
  msgid "via form"
80
  msgstr "via formulär"
81
 
82
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:358
83
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:379
84
  msgid "Table imported successfully."
85
  msgstr "Tabellimport lyckades."
86
 
87
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:361
88
  msgid "Table could not be imported."
89
  msgstr "Tabellen kunde inte importeras."
90
 
91
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:405
92
  #, php-format
93
  msgid "Table \"%s\" exported successfully."
94
  msgstr "Tabellen \"%s\" exporterades framgångsrikt."
95
 
96
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:433
97
  msgid "Options saved successfully."
98
  msgstr "Inställningar sparades framgångsrikt."
99
 
100
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:451
101
  msgid "WP-Table Reloaded"
102
  msgstr "WP-Table Reloaded"
103
 
104
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:452
105
  msgid "Plugin deactivated successfully."
106
  msgstr "Tillägget inaktiverades framgångsrikt."
107
 
108
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:453
109
  msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
110
  msgstr "Alla tabeller, data och inställningar raderades. Du kan nu ta bort tilläggets undermapp från din Wordpress pluginmapp."
111
 
112
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:471
 
113
  msgid "List of Tables"
114
  msgstr "Tabellista"
115
 
116
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:474
117
- msgid "This is a list of all available tables. You may add, edit, copy or delete tables here."
118
- msgstr "Detta är en lista över alla tillgängliga tabeller. Du kan lägga till, redigera, kopiera eller radera tabeller här."
 
 
 
 
 
119
 
120
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:475
121
- msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode: <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
122
- msgstr "Om du vill visa en tabell en sida, i ett inlägg eller i en textwidget, använd snabbkoden: <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
123
 
124
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:483
125
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:887
 
126
  msgid "ID"
127
  msgstr "ID"
128
 
129
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:484
130
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:544
131
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:594
132
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:888
 
133
  msgid "Table Name"
134
  msgstr "Tabellnamn"
135
 
136
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:485
137
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:548
138
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:598
139
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:889
 
140
  msgid "Description"
141
  msgstr "Beskrivning"
142
 
143
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:486
144
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:890
 
145
  msgid "Action"
146
  msgstr "Åtgärd"
147
 
148
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:511
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
149
  msgid "Edit"
150
  msgstr "Redigera"
151
 
152
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:512
153
- msgid "Do you want to copy this table?"
154
- msgstr "Vill du kopiera denna tabell?"
155
-
156
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:512
157
  msgid "Copy"
158
  msgstr "Kopiera"
159
 
160
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:513
161
  msgid "Export"
162
  msgstr "Exportera"
163
 
164
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:514
165
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:807
166
- msgid "The complete table and all content will be erased. Do you really want to delete it?"
167
- msgstr "Tabellen och dess inehåll kommer raderas. Vill du verkligen radera den?"
168
-
169
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:514
170
  msgid "Delete"
171
  msgstr "Radera"
172
 
173
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:524
174
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1001
175
- msgid "No tables found."
176
- msgstr "Inga tabeller hittades."
 
 
 
 
177
 
178
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:524
179
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1001
 
 
 
 
180
  #, php-format
181
  msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
182
  msgstr "Du kan <a href=\"%s\">lägga till</a> eller <a href=\"%s\">importera</a> en!"
183
 
184
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:532
185
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1171
186
  msgid "Add new Table"
187
  msgstr "Lägg till tabell"
188
 
189
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:536
190
  msgid "You can add a new table here. Just enter it's name, a description (optional) and the number of rows and columns.<br/>You may add, insert or delete rows and columns later."
191
  msgstr "Du kan lägga till en tabell här. Ange tabellens namn, en beskrivning (valfritt) och antal rader och kolumner.<br/>Du kan även lägga till, infoga eller radera rader och kolumner senare."
192
 
193
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:545
194
  msgid "Enter Table Name"
195
  msgstr "Ange tabellnamn"
196
 
197
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:549
198
  msgid "Enter Description"
199
  msgstr "Ange beskrivning"
200
 
201
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:552
202
  msgid "Number of Rows"
203
  msgstr "Antal rader"
204
 
205
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:556
206
  msgid "Number of Columns"
207
  msgstr "Antal kolumner"
208
 
209
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:563
210
  msgid "Add Table"
211
  msgstr "Lägg till tabell"
212
 
213
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:580
214
  #, php-format
215
  msgid "Edit Table \"%s\""
216
  msgstr "Redigera tabellen \"%s\""
217
 
218
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:584
219
  msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
220
  msgstr "Du kan redigera tabellens innehåll här. Det är även möjligt att lägga till eller radera kolumner och rader."
221
 
222
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:585
223
  #, php-format
224
  msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
225
  msgstr "Om du vill visa en tabell på dina sidor, i inlägg eller i textwidgets, använd denna snabbkod: <strong>[table id=%s /]</strong>"
226
 
227
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:590
228
  msgid "Table Information"
229
  msgstr "Tabellinformation"
230
 
231
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:606
232
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:798
233
  msgid "Update Changes"
234
  msgstr "Spara ändringar"
235
 
236
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:607
237
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:799
238
  msgid "Save and go back"
239
  msgstr "Spara och gå tillbaka"
240
 
241
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:610
242
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:802
243
  msgid "Cancel"
244
  msgstr "Ångra"
245
 
246
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:616
247
  msgid "Table Contents"
248
  msgstr "Tabellinnehåll"
249
 
250
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:644
 
 
 
 
 
 
 
 
 
 
 
 
 
 
251
  msgid "Insert Row"
252
  msgstr "Infoga rad"
253
 
254
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:646
255
- msgid "Do you really want to delete this row?"
256
- msgstr "Vill du verkligen radera denna rad?"
257
-
258
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:646
259
  msgid "Delete Row"
260
  msgstr "Radera rad"
261
 
262
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:656
263
  msgid "Insert Column"
264
  msgstr "Infoga kolumn"
265
 
266
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:658
267
- msgid "Do you really want to delete this column?"
268
- msgstr "Vill du verkligen radera denna kolumn?"
269
-
270
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:658
271
  msgid "Delete Column"
272
  msgstr "Radera kolumn"
273
 
274
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:663
275
  msgid "Add Row"
276
  msgstr "Lägg till rad"
277
 
278
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:663
279
  msgid "Add Column"
280
  msgstr "Lägg till kolumn"
281
 
282
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:672
283
  msgid "Data Manipulation"
284
  msgstr "Datahantering"
285
 
286
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:687
287
  #, php-format
288
  msgid "Swap rows %s and %s"
289
  msgstr "Byt plats på rader %s och %s"
290
 
291
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:690
292
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:710
293
  msgid "Swap"
294
  msgstr "Byt plats"
295
 
296
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:707
297
  #, php-format
298
  msgid "Swap columns %s and %s"
299
  msgstr "Byt plats på kolumner %s och %s"
300
 
301
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:714
302
  msgid "Insert Link"
303
  msgstr "Infoga Länk"
304
 
305
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:714
306
  msgid "Insert Image"
307
  msgstr "Infoga Bild"
308
 
309
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:732
310
- msgid "URL of link to insert"
311
- msgstr "URL till länken som ska infogas"
312
-
313
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:734
314
- msgid "Text of link"
315
- msgstr "Länkens text"
316
-
317
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:737
318
- msgid "To insert the following link into a cell, just click the cell after closing this dialog."
319
- msgstr "För att infoga följande länk i en cell, klicka bara på cellen efter att denna ruta har stängts."
320
 
321
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:746
322
- msgid "URL of image to insert"
323
- msgstr "URL till bilden som ska infogas"
324
 
325
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:748
326
- msgid "\"alt\" text of the image"
327
- msgstr "\"alt\" bildens text"
 
328
 
329
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:751
330
- msgid "To insert the following image into a cell, just click the cell after closing this dialog."
331
- msgstr "För att infoga foljande bild i en cell, klicka bara på cellen efter att denna ruta har stängts."
332
 
333
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:767
334
  msgid "Table Settings"
335
  msgstr "Tabellinställningar"
336
 
337
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:769
338
  msgid "These settings will only be used for this table."
339
  msgstr "Dessa inställningar kommer endast användas för denna tabell."
340
 
341
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:772
342
  msgid "Alternating row colors"
343
  msgstr "Växlande radfärg"
344
 
345
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:773
346
  msgid "Every second row will have an alternating background color."
347
  msgstr "Varannan rad kommer att ha en alternativ bakgrundsfärg."
348
 
349
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:776
350
  msgid "Use Table Headline"
351
  msgstr "Använd tabellrubrik"
352
 
353
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:777
354
  msgid "The first row of your table will use the [th] tag."
355
  msgstr "Första raden i din tabell kommer använda etiketten [th]."
356
 
357
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:780
358
  msgid "Print Table Name"
359
  msgstr "Visa tabellnamn"
360
 
361
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:781
362
  msgid "The Table Name will be written above the table in a [h2] tag."
363
  msgstr "Tabellens namn kommer att visas ovanför tabellen med etiketten [h2]."
364
 
365
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:784
366
  msgid "Print Table Description"
367
  msgstr "Visa tabellbeskrivning"
368
 
369
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:785
370
  msgid "The Table Description will be written under the table."
371
  msgstr "Tabellens beskrivning kommer att visas under tabellen."
372
 
373
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:788
374
  msgid "Use Tablesorter"
375
  msgstr "Använd Tablesorter"
376
 
377
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:789
378
  msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. <small>Attention: You must have Tablesorter enabled on the \"Plugin Options\" page and the option \"Use Table Headline\" has to be enabled above for this to work!</small>"
379
  msgstr "Du kan använda tabellsortering med hjälp av <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-tillägget</a>. <small>OBS!: Tablesorter måste aktiveras på \"Inställningssidan\" och \"Använd tabellrubrik\" ovan måste vara förbockat för att detta ska fungera!</small>"
380
 
381
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:804
382
  msgid "Other actions"
383
  msgstr "Andra åtgärder"
384
 
385
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:807
386
  msgid "Delete Table"
387
  msgstr "Radera tabell"
388
 
389
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:808
390
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:990
391
  msgid "Export Table"
392
  msgstr "Exportera tabell"
393
 
394
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:819
395
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1172
396
  msgid "Import a Table"
397
  msgstr "Importera tabell"
398
 
399
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:823
400
  msgid "You may import a table from existing data here.<br/>It may be a CSV, XML or HTML file. It needs a certain structure though. Please consult the documentation."
401
  msgstr "Du kan importera en tabell från existerande data här.<br/>Det kan vara en CSV, XML eller HTML-fil. Den måste dock vara strukturerad på ett visst sätt. Var vänlig kolla dokumentationen."
402
 
403
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:830
404
  msgid "Select Import Format"
405
  msgstr "Välj importformat"
406
 
407
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:840
408
- msgid "Used Delimiter"
409
- msgstr "Välj avgränsare"
410
-
411
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:847
412
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:981
413
- msgid "<small>(Only needed for CSV export.)</small>"
414
- msgstr "<small>(Behövs endast för CSV export.)</small>"
415
-
416
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:850
417
  msgid "Select File with Table to Import"
418
  msgstr "Välj tabellfil som ska importeras"
419
 
420
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:854
421
  msgid "- or -"
422
  msgstr "- eller -"
423
 
424
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:855
425
  msgid "(upload will be preferred over pasting)"
426
  msgstr "(ladda upp föredras framför klistra in)"
427
 
428
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:858
429
  msgid "Paste data with Table to Import"
430
  msgstr "Klistra in data med tabell som ska importeras"
431
 
432
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:864
433
  msgid "Import Table"
434
  msgstr "Importera tabell"
435
 
436
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:877
437
  msgid "Import from original wp-Table plugin"
438
  msgstr "Importera från originalet wp-Table"
439
 
440
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:910
441
- msgid "Do you really want to import this table from the wp-Table plugin?"
442
- msgstr "Vill du verkligen importera denna tabell från wp-Table tillägget?"
443
-
444
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:910
445
  msgid "Import"
446
  msgstr "Importera"
447
 
448
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:918
 
 
 
 
449
  msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
450
  msgstr "wp-Table av Alex Rabe verkar vara installerat men inga tabeller kunde hittas."
451
 
452
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:937
453
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1173
454
  msgid "Export a Table"
455
  msgstr "Exportera tabell"
456
 
457
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:941
458
  msgid "You may export a table here. Just select the table, your desired export format and a delimiter (needed for CSV only).<br/>You may opt to download the export file. Otherwise it will be shown on this page."
459
  msgstr "Du kan exportera en tabell här. Välj en tabell, önskat exportformat och avgränsare (endast för CSV).<br/>Du kan välja att ladda ner exportfilen annars kommer den att visas på denna sida."
460
 
461
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:949
462
  msgid "Select Table to Export"
463
  msgstr "Välj tabell som ska exporteras"
464
 
465
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:964
466
  msgid "Select Export Format"
467
  msgstr "Välj exportformat"
468
 
469
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:974
470
  msgid "Select Delimiter to use"
471
  msgstr "Välj avgränsare"
472
 
473
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:984
 
 
 
 
474
  msgid "Download file"
475
  msgstr "Ladda ner"
476
 
477
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:985
478
  msgid "Yes, I want to download the export file."
479
  msgstr "Ja, jag vill ladda ner exportfilen."
480
 
481
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1010
482
  msgid "General Plugin Options"
483
  msgstr "Allmänna inställningar"
484
 
485
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1014
486
  msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
487
  msgstr "Detta är globala inställningar.<br/>De kommer påverka alla tabeller eller tilläggets generella beteende."
488
 
489
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1021
490
  msgid "Frontend Options"
491
  msgstr "Gränssnittsalternativ"
492
 
493
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1025
494
  msgid "Enable Tablesorter-JavaScript?"
495
  msgstr "Aktivera Tablesorter-JavaScript?"
496
 
497
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1026
498
- msgid "Yes, enable <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> to be used to make table sortable (can be changed for every table separatly)."
499
- msgstr "Ja, aktivera <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> för att möjliggöra tabellsortering (kan ställas in separat för varje tabell)."
500
 
501
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1029
502
  msgid "Add custom CSS?"
503
  msgstr "Lägg till anpassad CSS?"
504
 
505
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1030
506
- #, php-format
507
- msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag. (If you do not want this, just add your CSS styling to your theme's \"style.css\" <small>(located at %s)</small>.) (See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin website</a> for examples.)"
508
- msgstr "Ja, inkludera och ladda följande CSS-sträng på min hemsida inuti [style]-HTML-tag. (Om du inte vill göra detta, lägg till din CSS-kod till temats \"style.css\" <small>(som finns i %s)</small>.) (Se <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">tilläggets hemsida</a> för exempel.)"
509
 
510
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1034
511
  msgid "Enter custom CSS"
512
  msgstr "Ange anpassad CSS"
513
 
514
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1042
 
 
 
 
 
 
 
 
 
 
 
 
 
 
515
  msgid "Admin Options"
516
  msgstr "Adminalternativ"
517
 
518
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1046
519
  msgid "Uninstall Plugin upon Deactivation?"
520
  msgstr "Avinstallera tillägget vid inaktivering?"
521
 
522
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1047
523
- msgid "Yes, uninstall everything when plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page! (It does not influence the \"Manually Uninstall Plugin\" button below!)"
524
- msgstr "Ja, avinstallera allt när tillägget inaktiveras. OBS! Du bör endast markera denna ruta precis innan du inaktiverar tillägget via WordPress tilläggssida! (Detta påverkar inte \"Avinstallera manuellt\"-knappen nedan!)"
 
 
 
 
525
 
526
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1057
527
  msgid "Save Options"
528
  msgstr "Spara"
529
 
530
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1067
531
- msgid "Do you really want to activate this? You should only do that right before uninstallation!"
532
- msgstr "Vill du verkligen aktivera det här? Du bör endast göra detta precis innan avinstallation!"
533
-
534
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1073
535
  msgid "Manually Uninstall Plugin"
536
  msgstr "Avinstallera tillägget manuellt"
537
 
538
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1075
539
  msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported.<br/> Be very careful with this and only click the button if you know what you are doing!"
540
  msgstr "Du kan avinstallera tillägget här. Detta <strong>kommer att radera</strong> alla tabeller, data, inställningar, etc. som hör till tillägget, inklusive alla tabeller som lagts till eller importerats.<br/>Var väldigt försiktig med detta och klicka på knappen bara om du vet vad du gör!"
541
 
542
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1078
543
- msgid "Do you really want to uninstall the plugin and delete ALL data?"
544
- msgstr "Vill du verkligen avinstallera tillägget och radera ALL data?"
545
-
546
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1078
547
- msgid "Are you really sure?"
548
- msgstr "Är du riktigt säker?"
549
-
550
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1078
551
  msgid "Uninstall Plugin WP-Table Reloaded"
552
  msgstr "Avinstallera WP-Table Reloaded"
553
 
554
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1088
555
  msgid "Information about the plugin"
556
  msgstr "Information om tillägget"
557
 
558
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1094
559
  msgid "Plugin Purpose"
560
  msgstr "Tilläggets ändamål"
561
 
562
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1096
563
- msgid "This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode."
564
- msgstr "Med detta tillägg kan du skapa och hantera tabeller i adminpanelen i WordPress. Du kan sedan visa dem i dina inlägg, på dina sidor eller i textwidgets genom att använda en snabbkod."
565
 
566
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1101
 
 
 
 
 
 
 
 
 
 
 
 
567
  msgid "Usage"
568
  msgstr "Användning"
569
 
570
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1103
571
- msgid "At first you should add or import a table. Then edit your data and select the options you want. To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them. You may then style your table via CSS. Every table has the CSS-class \"wp-table-reloaded\". A table also has the class \"wp-table-reloaded-&lt;table-id&gt;\". You can also use the classes \"column-&lt;number&gt;\" and \"row-&lt;number&gt;\" to style rows and columns individually. Use this to style columns width and text alignment."
572
- msgstr "Du bör först lägga till eller importera en tabell. Sedan kan du redigera data och välja inställningar som du vill. Använd snabbkoden [table id=&lt;table-id&gt;] för att inkludera tabellen på dina sidor, i dina inlägg eller i textwidgets. Du kan bestämma stil med hjälp av CSS. Varje tabell har CSS-class \"wp-table-reloaded\". En specifik tabell har även CSS-class \"wp-table-reloaded-&lt;table-id&gt;\". Du kan även använda CSS-class \"column-&lt;number&gt;\" och \"row-&lt;number&gt;\" för att ställa in stil för rader och kolumner individuellt. Använd detta för att ställa in kolumnernas bredd och textjustering."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
573
 
574
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1107
575
  msgid "More Information and Documentation"
576
  msgstr "Mer Information och Dokumentation"
577
 
578
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1109
579
- msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. A documentation and certain support and help request possibilities will be available soon."
580
- msgstr "Mer information hittar du på <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">tilläggets hemsida</a> eller på denna sida i <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. Dokumentation, viss support och möjlighet att få hjälp kommer att finnas tillgängligt inom kort."
 
 
 
 
 
581
 
582
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1114
583
  msgid "Author and Licence"
584
  msgstr "Författare och Licens"
585
 
586
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1116
587
  msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. It is licenced as Free Software under GPL 2."
588
  msgstr "Detta tillägg är skrivet av <a href=\"http://tobias.baethge.com/\">Tobias B&auml;thge</a>. Det är licensierat som Gratis Programvara under GPL 2."
589
 
590
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1116
591
- msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">donating</a> or rating it at the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. Thanks!"
592
- msgstr "Om du gillar detta tillägg var vänlig <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">donera</a> eller betygsätt det på <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. Tack!"
 
 
 
 
593
 
594
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1121
595
  msgid "Credits and Thanks"
596
  msgstr "Medverkande och Tack"
597
 
598
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1124
599
  msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
600
  msgstr "Tack till <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> skaparen av originaltillägget wp-Table,"
601
 
602
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1125
603
- msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
604
- msgstr "Christian Bach för <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-tillägget</a>,"
605
 
606
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1126
607
  msgid "the submitters of translations:"
608
  msgstr "inskickade översättningar:"
609
 
610
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1127
611
  msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
612
  msgstr "Albanska (tack till <a href=\"http://www.romeolab.com/\">Romeo</a>)"
613
 
614
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1128
 
 
 
 
615
  msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
616
  msgstr "Franska (tack till <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
617
 
618
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1129
619
  msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
620
  msgstr "Ryska (tack till <a href=\"http://wp-skins.info/\">Truper</a>)"
621
 
622
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1130
623
- msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>)"
624
- msgstr "Spanska (tack till <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>)"
625
 
626
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1131
627
  msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
628
  msgstr "Svenska (tack till <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
629
 
630
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1132
631
  msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
632
  msgstr "Turkiska (tack till <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
633
 
634
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1133
635
- msgid "and all contributors, supporters, reviewers and users of the plugin!"
636
- msgstr "och alla bidragsgivare, anhängare, recensenter och användare av tillägget!"
637
 
638
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1170
 
 
 
 
 
 
 
 
639
  msgid "List Tables"
640
  msgstr "Visa tabeller"
641
 
642
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1175
643
  msgid "Plugin Options"
644
  msgstr "Inställningar"
645
 
646
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1176
647
  msgid "About the Plugin"
648
  msgstr "Om tillägget"
649
 
650
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1184
651
- msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a>. A documentation and certain support and help request possibilities will be available soon."
652
- msgstr "Mer information hittar du på <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">tilläggets hemsida</a>. Dokumentation och viss support och möjlighet att få hjälp finns tillgängligt inom kort."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
653
 
654
  #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:30
655
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-import.class.php:41
656
  msgid "CSV - Character-Separated Values"
657
  msgstr "CSV - Character-Separated Values"
658
 
659
  #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:31
660
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-import.class.php:42
661
  msgid "HTML - Hypertext Markup Language"
662
  msgstr "HTML - Hypertext Markup Language"
663
 
664
  #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:32
665
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-import.class.php:43
666
  msgid "XML - eXtended Markup Language"
667
  msgstr "XML - eXtended Markup Language"
668
 
669
  #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:35
670
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-import.class.php:36
671
  msgid "; (semicolon)"
672
  msgstr "; (semikolon)"
673
 
674
  #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:36
675
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-import.class.php:37
676
  msgid ", (comma)"
677
  msgstr ", (komma)"
678
 
679
  #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:37
680
- #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-import.class.php:38
681
  msgid ": (colon)"
682
  msgstr ": (kolon)"
683
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
684
  #~ msgid "Use global CSS-file?"
685
  #~ msgstr "Använd global CSS-fil?"
686
  #~ msgid ""
@@ -706,10 +913,6 @@ msgstr ": (kolon)"
706
  #~ "översättningar: <br/>&middot; Turkiska (tack till <a href=\"http://www."
707
  #~ "wpuzmani.com/\">Semih</a>)<br/>&middot; Svenska (tack till <a href="
708
  #~ "\"http://www.zuperzed.se/\">ZuperZed</a>)"
709
- #~ msgid "and"
710
- #~ msgstr "och"
711
- #~ msgid "You may export a table here."
712
- #~ msgstr "Du kan exportera en tabell här."
713
  #~ msgid ""
714
  #~ "Yes, load the global CSS-file wp-table-reloaded.css, which contains basic "
715
  #~ "styles and graphics for the Tablesorter. (File \"global-frontend-style.css"
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"
14
  "X-Poedit-Country: SWEDEN\n"
15
  "X-Poedit-Basepath: .\n"
16
  ": \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: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 \"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 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
 
823
  #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:30
824
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-import.class.php:38
825
  msgid "CSV - Character-Separated Values"
826
  msgstr "CSV - Character-Separated Values"
827
 
828
  #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:31
829
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-import.class.php:39
830
  msgid "HTML - Hypertext Markup Language"
831
  msgstr "HTML - Hypertext Markup Language"
832
 
833
  #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:32
834
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-import.class.php:40
835
  msgid "XML - eXtended Markup Language"
836
  msgstr "XML - eXtended Markup Language"
837
 
838
  #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:35
 
839
  msgid "; (semicolon)"
840
  msgstr "; (semikolon)"
841
 
842
  #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:36
 
843
  msgid ", (comma)"
844
  msgstr ", (komma)"
845
 
846
  #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:37
 
847
  msgid ": (colon)"
848
  msgstr ": (kolon)"
849
 
850
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:38
851
+ msgid ". (dot)"
852
+ msgstr ". (punkt)"
853
+
854
+ #: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:39
855
+ msgid "| (pipe)"
856
+ msgstr "| (pipe)"
857
+
858
+ #~ msgid "Used Delimiter"
859
+ #~ msgstr "Välj avgränsare"
860
+ #~ msgid ""
861
+ #~ "Yes, include and load the following CSS-snippet on my site inside a "
862
+ #~ "[style]-HTML-tag. (If you do not want this, just add your CSS styling to "
863
+ #~ "your theme's \"style.css\" <small>(located at %s)</small>.) (See the <a "
864
+ #~ "href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-"
865
+ #~ "english/\">plugin website</a> for examples.)"
866
+ #~ msgstr ""
867
+ #~ "Ja, inkludera och ladda följande CSS-sträng på min hemsida inuti [style]-"
868
+ #~ "HTML-tag. (Om du inte vill göra detta, lägg till din CSS-kod till temats "
869
+ #~ "\"style.css\" <small>(som finns i %s)</small>.) (Se <a href=\"http://"
870
+ #~ "tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
871
+ #~ "\">tilläggets hemsida</a> för exempel.)"
872
+ #~ msgid ""
873
+ #~ "At first you should add or import a table. Then edit your data and select "
874
+ #~ "the options you want. To include the table into your posts, pages or text "
875
+ #~ "widgets, write the shortcode [table id=&lt;table-id&gt;] into them. You "
876
+ #~ "may then style your table via CSS. Every table has the CSS-class \"wp-"
877
+ #~ "table-reloaded\". A table also has the class \"wp-table-reloaded-&lt;"
878
+ #~ "table-id&gt;\". You can also use the classes \"column-&lt;number&gt;\" "
879
+ #~ "and \"row-&lt;number&gt;\" to style rows and columns individually. Use "
880
+ #~ "this to style columns width and text alignment."
881
+ #~ msgstr ""
882
+ #~ "Du bör först lägga till eller importera en tabell. Sedan kan du redigera "
883
+ #~ "data och välja inställningar som du vill. Använd snabbkoden [table id=&lt;"
884
+ #~ "table-id&gt;] för att inkludera tabellen på dina sidor, i dina inlägg "
885
+ #~ "eller i textwidgets. Du kan bestämma stil med hjälp av CSS. Varje tabell "
886
+ #~ "har CSS-class \"wp-table-reloaded\". En specifik tabell har även CSS-"
887
+ #~ "class \"wp-table-reloaded-&lt;table-id&gt;\". Du kan även använda CSS-"
888
+ #~ "class \"column-&lt;number&gt;\" och \"row-&lt;number&gt;\" för att ställa "
889
+ #~ "in stil för rader och kolumner individuellt. Använd detta för att ställa "
890
+ #~ "in kolumnernas bredd och textjustering."
891
  #~ msgid "Use global CSS-file?"
892
  #~ msgstr "Använd global CSS-fil?"
893
  #~ msgid ""
913
  #~ "översättningar: <br/>&middot; Turkiska (tack till <a href=\"http://www."
914
  #~ "wpuzmani.com/\">Semih</a>)<br/>&middot; Svenska (tack till <a href="
915
  #~ "\"http://www.zuperzed.se/\">ZuperZed</a>)"
 
 
 
 
916
  #~ msgid ""
917
  #~ "Yes, load the global CSS-file wp-table-reloaded.css, which contains basic "
918
  #~ "styles and graphics for the Tablesorter. (File \"global-frontend-style.css"
languages/wp-table-reloaded.pot CHANGED
@@ -8,409 +8,454 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: PACKAGE VERSION\n"
10
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
11
- "POT-Creation-Date: 2009-04-27 16:30+0000\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=CHARSET\n"
17
  "Content-Transfer-Encoding: 8bit\n"
 
18
 
19
  #: php/wp-table-reloaded-export.class.php:30
20
- #: php/wp-table-reloaded-import.class.php:41
21
  msgid "CSV - Character-Separated Values"
22
  msgstr ""
23
 
24
  #: php/wp-table-reloaded-export.class.php:31
25
- #: php/wp-table-reloaded-import.class.php:42
26
  msgid "HTML - Hypertext Markup Language"
27
  msgstr ""
28
 
29
  #: php/wp-table-reloaded-export.class.php:32
30
- #: php/wp-table-reloaded-import.class.php:43
31
  msgid "XML - eXtended Markup Language"
32
  msgstr ""
33
 
34
  #: php/wp-table-reloaded-export.class.php:35
35
- #: php/wp-table-reloaded-import.class.php:36
36
  msgid "; (semicolon)"
37
  msgstr ""
38
 
39
  #: php/wp-table-reloaded-export.class.php:36
40
- #: php/wp-table-reloaded-import.class.php:37
41
  msgid ", (comma)"
42
  msgstr ""
43
 
44
  #: php/wp-table-reloaded-export.class.php:37
45
- #: php/wp-table-reloaded-import.class.php:38
46
  msgid ": (colon)"
47
  msgstr ""
48
 
49
- #: wp-table-reloaded-admin.php:137
 
 
 
 
 
 
 
 
50
  #, php-format
51
  msgid "Table \"%s\" added successfully."
52
  msgstr ""
53
 
54
- #: wp-table-reloaded-admin.php:160
55
  msgid "Table edited successfully."
56
  msgstr ""
57
 
58
- #: wp-table-reloaded-admin.php:176
59
  msgid "Rows swapped successfully."
60
  msgstr ""
61
 
62
- #: wp-table-reloaded-admin.php:195
63
  msgid "Columns swapped successfully."
64
  msgstr ""
65
 
66
- #: wp-table-reloaded-admin.php:224
 
 
 
 
67
  msgid "Copy of"
68
  msgstr ""
69
 
70
- #: wp-table-reloaded-admin.php:229
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  #, php-format
72
  msgid "Table \"%s\" copied successfully."
73
  msgstr ""
74
 
75
- #: wp-table-reloaded-admin.php:248
76
  #, php-format
77
  msgid "Table \"%s\" deleted successfully."
78
  msgstr ""
79
 
80
- #: wp-table-reloaded-admin.php:258
81
  msgid "Row deleted successfully."
82
  msgstr ""
83
 
84
- #: wp-table-reloaded-admin.php:271
85
  msgid "Column deleted successfully."
86
  msgstr ""
87
 
88
- #: wp-table-reloaded-admin.php:276
89
  msgid "Delete failed."
90
  msgstr ""
91
 
92
- #: wp-table-reloaded-admin.php:300
93
  msgid "Row inserted successfully."
94
  msgstr ""
95
 
96
- #: wp-table-reloaded-admin.php:309
97
  msgid "Column inserted successfully."
98
  msgstr ""
99
 
100
- #: wp-table-reloaded-admin.php:312
101
  msgid "Insert failed."
102
  msgstr ""
103
 
104
- #: wp-table-reloaded-admin.php:340
105
  msgid "Imported Table"
106
  msgstr ""
107
 
108
- #: wp-table-reloaded-admin.php:341
109
  msgid "via form"
110
  msgstr ""
111
 
112
- #: wp-table-reloaded-admin.php:358 wp-table-reloaded-admin.php:379
113
- msgid "Table imported successfully."
114
- msgstr ""
115
-
116
- #: wp-table-reloaded-admin.php:361
117
  msgid "Table could not be imported."
118
  msgstr ""
119
 
120
- #: wp-table-reloaded-admin.php:405
121
  #, php-format
122
  msgid "Table \"%s\" exported successfully."
123
  msgstr ""
124
 
125
- #: wp-table-reloaded-admin.php:433
126
  msgid "Options saved successfully."
127
  msgstr ""
128
 
129
  #. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
130
  #. Plugin Name of an extension
131
- #: wp-table-reloaded-admin.php:451
132
  msgid "WP-Table Reloaded"
133
  msgstr ""
134
 
135
- #: wp-table-reloaded-admin.php:452
136
  msgid "Plugin deactivated successfully."
137
  msgstr ""
138
 
139
- #: wp-table-reloaded-admin.php:453
140
  msgid ""
141
  "All tables, data and options were deleted. You may now remove the plugin's "
142
  "subfolder from your WordPress plugin folder."
143
  msgstr ""
144
 
145
- #: wp-table-reloaded-admin.php:471
146
  msgid "List of Tables"
147
  msgstr ""
148
 
149
- #: wp-table-reloaded-admin.php:474
150
- msgid ""
151
- "This is a list of all available tables. You may add, edit, copy or delete "
152
- "tables here."
 
 
153
  msgstr ""
154
 
155
- #: wp-table-reloaded-admin.php:475
156
  msgid ""
157
- "If you want to show a table in your pages, posts or text-widgets, use the "
158
- "shortcode: <strong>[table id=&lt;the_table_ID&gt; /]</strong>"
 
159
  msgstr ""
160
 
161
- #: wp-table-reloaded-admin.php:483 wp-table-reloaded-admin.php:887
 
162
  msgid "ID"
163
  msgstr ""
164
 
165
- #: wp-table-reloaded-admin.php:484 wp-table-reloaded-admin.php:544
166
- #: wp-table-reloaded-admin.php:594 wp-table-reloaded-admin.php:888
 
167
  msgid "Table Name"
168
  msgstr ""
169
 
170
- #: wp-table-reloaded-admin.php:485 wp-table-reloaded-admin.php:548
171
- #: wp-table-reloaded-admin.php:598 wp-table-reloaded-admin.php:889
 
172
  msgid "Description"
173
  msgstr ""
174
 
175
- #: wp-table-reloaded-admin.php:486 wp-table-reloaded-admin.php:890
 
176
  msgid "Action"
177
  msgstr ""
178
 
179
- #: wp-table-reloaded-admin.php:511
180
- msgid "Edit"
181
  msgstr ""
182
 
183
- #: wp-table-reloaded-admin.php:512
184
- msgid "Do you want to copy this table?"
 
185
  msgstr ""
186
 
187
- #: wp-table-reloaded-admin.php:512
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
188
  msgid "Copy"
189
  msgstr ""
190
 
191
- #: wp-table-reloaded-admin.php:513
192
  msgid "Export"
193
  msgstr ""
194
 
195
- #: wp-table-reloaded-admin.php:514 wp-table-reloaded-admin.php:807
196
- msgid ""
197
- "The complete table and all content will be erased. Do you really want to "
198
- "delete it?"
199
  msgstr ""
200
 
201
- #: wp-table-reloaded-admin.php:514
202
- msgid "Delete"
203
  msgstr ""
204
 
205
- #: wp-table-reloaded-admin.php:524 wp-table-reloaded-admin.php:1001
206
- msgid "No tables found."
207
  msgstr ""
208
 
209
- #: wp-table-reloaded-admin.php:524 wp-table-reloaded-admin.php:1001
 
 
 
 
210
  #, php-format
211
  msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
212
  msgstr ""
213
 
214
- #: wp-table-reloaded-admin.php:532 wp-table-reloaded-admin.php:1171
215
  msgid "Add new Table"
216
  msgstr ""
217
 
218
- #: wp-table-reloaded-admin.php:536
219
  msgid ""
220
  "You can add a new table here. Just enter it's name, a description (optional) "
221
  "and the number of rows and columns.<br/>You may add, insert or delete rows "
222
  "and columns later."
223
  msgstr ""
224
 
225
- #: wp-table-reloaded-admin.php:545
226
  msgid "Enter Table Name"
227
  msgstr ""
228
 
229
- #: wp-table-reloaded-admin.php:549
230
  msgid "Enter Description"
231
  msgstr ""
232
 
233
- #: wp-table-reloaded-admin.php:552
234
  msgid "Number of Rows"
235
  msgstr ""
236
 
237
- #: wp-table-reloaded-admin.php:556
238
  msgid "Number of Columns"
239
  msgstr ""
240
 
241
- #: wp-table-reloaded-admin.php:563
242
  msgid "Add Table"
243
  msgstr ""
244
 
245
- #: wp-table-reloaded-admin.php:580
246
  #, php-format
247
  msgid "Edit Table \"%s\""
248
  msgstr ""
249
 
250
- #: wp-table-reloaded-admin.php:584
251
  msgid ""
252
  "You may edit the content of the table here. It is also possible to add or "
253
  "delete columns and rows."
254
  msgstr ""
255
 
256
- #: wp-table-reloaded-admin.php:585
257
  #, php-format
258
  msgid ""
259
  "If you want to show a table in your pages, posts or text-widgets, use this "
260
  "shortcode: <strong>[table id=%s /]</strong>"
261
  msgstr ""
262
 
263
- #: wp-table-reloaded-admin.php:590
264
  msgid "Table Information"
265
  msgstr ""
266
 
267
- #: wp-table-reloaded-admin.php:606 wp-table-reloaded-admin.php:798
268
  msgid "Update Changes"
269
  msgstr ""
270
 
271
- #: wp-table-reloaded-admin.php:607 wp-table-reloaded-admin.php:799
272
  msgid "Save and go back"
273
  msgstr ""
274
 
275
- #: wp-table-reloaded-admin.php:610 wp-table-reloaded-admin.php:802
276
  msgid "Cancel"
277
  msgstr ""
278
 
279
- #: wp-table-reloaded-admin.php:616
280
  msgid "Table Contents"
281
  msgstr ""
282
 
283
- #: wp-table-reloaded-admin.php:644
284
- msgid "Insert Row"
 
285
  msgstr ""
286
 
287
- #: wp-table-reloaded-admin.php:646
288
- msgid "Do you really want to delete this row?"
 
289
  msgstr ""
290
 
291
- #: wp-table-reloaded-admin.php:646
292
- msgid "Delete Row"
293
  msgstr ""
294
 
295
- #: wp-table-reloaded-admin.php:656
296
- msgid "Insert Column"
297
  msgstr ""
298
 
299
- #: wp-table-reloaded-admin.php:658
300
- msgid "Do you really want to delete this column?"
301
  msgstr ""
302
 
303
- #: wp-table-reloaded-admin.php:658
304
  msgid "Delete Column"
305
  msgstr ""
306
 
307
- #: wp-table-reloaded-admin.php:663
308
  msgid "Add Row"
309
  msgstr ""
310
 
311
- #: wp-table-reloaded-admin.php:663
312
  msgid "Add Column"
313
  msgstr ""
314
 
315
- #: wp-table-reloaded-admin.php:672
316
  msgid "Data Manipulation"
317
  msgstr ""
318
 
319
- #: wp-table-reloaded-admin.php:687
320
  #, php-format
321
  msgid "Swap rows %s and %s"
322
  msgstr ""
323
 
324
- #: wp-table-reloaded-admin.php:690 wp-table-reloaded-admin.php:710
325
  msgid "Swap"
326
  msgstr ""
327
 
328
- #: wp-table-reloaded-admin.php:707
329
  #, php-format
330
  msgid "Swap columns %s and %s"
331
  msgstr ""
332
 
333
- #: wp-table-reloaded-admin.php:714
334
  msgid "Insert Link"
335
  msgstr ""
336
 
337
- #: wp-table-reloaded-admin.php:714
338
  msgid "Insert Image"
339
  msgstr ""
340
 
341
- #: wp-table-reloaded-admin.php:732
342
- msgid "URL of link to insert"
343
- msgstr ""
344
-
345
- #: wp-table-reloaded-admin.php:734
346
- msgid "Text of link"
347
- msgstr ""
348
-
349
- #: wp-table-reloaded-admin.php:737
350
- msgid ""
351
- "To insert the following link into a cell, just click the cell after closing "
352
- "this dialog."
353
  msgstr ""
354
 
355
- #: wp-table-reloaded-admin.php:746
356
- msgid "URL of image to insert"
357
  msgstr ""
358
 
359
- #: wp-table-reloaded-admin.php:748
360
- msgid "\"alt\" text of the image"
 
361
  msgstr ""
362
 
363
- #: wp-table-reloaded-admin.php:751
364
- msgid ""
365
- "To insert the following image into a cell, just click the cell after closing "
366
- "this dialog."
367
  msgstr ""
368
 
369
- #: wp-table-reloaded-admin.php:767
370
  msgid "Table Settings"
371
  msgstr ""
372
 
373
- #: wp-table-reloaded-admin.php:769
374
  msgid "These settings will only be used for this table."
375
  msgstr ""
376
 
377
- #: wp-table-reloaded-admin.php:772
378
  msgid "Alternating row colors"
379
  msgstr ""
380
 
381
- #: wp-table-reloaded-admin.php:773
382
  msgid "Every second row will have an alternating background color."
383
  msgstr ""
384
 
385
- #: wp-table-reloaded-admin.php:776
386
  msgid "Use Table Headline"
387
  msgstr ""
388
 
389
- #: wp-table-reloaded-admin.php:777
390
  msgid "The first row of your table will use the [th] tag."
391
  msgstr ""
392
 
393
- #: wp-table-reloaded-admin.php:780
394
  msgid "Print Table Name"
395
  msgstr ""
396
 
397
- #: wp-table-reloaded-admin.php:781
398
  msgid "The Table Name will be written above the table in a [h2] tag."
399
  msgstr ""
400
 
401
- #: wp-table-reloaded-admin.php:784
402
  msgid "Print Table Description"
403
  msgstr ""
404
 
405
- #: wp-table-reloaded-admin.php:785
406
  msgid "The Table Description will be written under the table."
407
  msgstr ""
408
 
409
- #: wp-table-reloaded-admin.php:788
410
  msgid "Use Tablesorter"
411
  msgstr ""
412
 
413
- #: wp-table-reloaded-admin.php:789
414
  msgid ""
415
  "You may sort a table using the <a href=\"http://www.tablesorter.com/"
416
  "\">Tablesorter-jQuery-Plugin</a>. <small>Attention: You must have "
@@ -418,182 +463,192 @@ msgid ""
418
  "Table Headline\" has to be enabled above for this to work!</small>"
419
  msgstr ""
420
 
421
- #: wp-table-reloaded-admin.php:804
422
  msgid "Other actions"
423
  msgstr ""
424
 
425
- #: wp-table-reloaded-admin.php:807
426
  msgid "Delete Table"
427
  msgstr ""
428
 
429
- #: wp-table-reloaded-admin.php:808 wp-table-reloaded-admin.php:990
430
  msgid "Export Table"
431
  msgstr ""
432
 
433
- #: wp-table-reloaded-admin.php:819 wp-table-reloaded-admin.php:1172
434
  msgid "Import a Table"
435
  msgstr ""
436
 
437
- #: wp-table-reloaded-admin.php:823
438
  msgid ""
439
  "You may import a table from existing data here.<br/>It may be a CSV, XML or "
440
  "HTML file. It needs a certain structure though. Please consult the "
441
  "documentation."
442
  msgstr ""
443
 
444
- #: wp-table-reloaded-admin.php:830
445
  msgid "Select Import Format"
446
  msgstr ""
447
 
448
- #: wp-table-reloaded-admin.php:840
449
- msgid "Used Delimiter"
450
- msgstr ""
451
-
452
- #: wp-table-reloaded-admin.php:847 wp-table-reloaded-admin.php:981
453
- msgid "<small>(Only needed for CSV export.)</small>"
454
- msgstr ""
455
-
456
- #: wp-table-reloaded-admin.php:850
457
  msgid "Select File with Table to Import"
458
  msgstr ""
459
 
460
- #: wp-table-reloaded-admin.php:854
461
  msgid "- or -"
462
  msgstr ""
463
 
464
- #: wp-table-reloaded-admin.php:855
465
  msgid "(upload will be preferred over pasting)"
466
  msgstr ""
467
 
468
- #: wp-table-reloaded-admin.php:858
469
  msgid "Paste data with Table to Import"
470
  msgstr ""
471
 
472
- #: wp-table-reloaded-admin.php:864
473
  msgid "Import Table"
474
  msgstr ""
475
 
476
- #: wp-table-reloaded-admin.php:877
477
  msgid "Import from original wp-Table plugin"
478
  msgstr ""
479
 
480
- #: wp-table-reloaded-admin.php:910
481
- msgid "Do you really want to import this table from the wp-Table plugin?"
482
  msgstr ""
483
 
484
- #: wp-table-reloaded-admin.php:910
485
- msgid "Import"
486
  msgstr ""
487
 
488
- #: wp-table-reloaded-admin.php:918
489
  msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
490
  msgstr ""
491
 
492
- #: wp-table-reloaded-admin.php:937 wp-table-reloaded-admin.php:1173
493
  msgid "Export a Table"
494
  msgstr ""
495
 
496
- #: wp-table-reloaded-admin.php:941
497
  msgid ""
498
  "You may export a table here. Just select the table, your desired export "
499
  "format and a delimiter (needed for CSV only).<br/>You may opt to download "
500
  "the export file. Otherwise it will be shown on this page."
501
  msgstr ""
502
 
503
- #: wp-table-reloaded-admin.php:949
504
  msgid "Select Table to Export"
505
  msgstr ""
506
 
507
- #: wp-table-reloaded-admin.php:964
508
  msgid "Select Export Format"
509
  msgstr ""
510
 
511
- #: wp-table-reloaded-admin.php:974
512
  msgid "Select Delimiter to use"
513
  msgstr ""
514
 
515
- #: wp-table-reloaded-admin.php:984
 
 
 
 
516
  msgid "Download file"
517
  msgstr ""
518
 
519
- #: wp-table-reloaded-admin.php:985
520
  msgid "Yes, I want to download the export file."
521
  msgstr ""
522
 
523
- #: wp-table-reloaded-admin.php:1010
524
  msgid "General Plugin Options"
525
  msgstr ""
526
 
527
- #: wp-table-reloaded-admin.php:1014
528
  msgid ""
529
  "You may change these global options.<br/>They will effect all tables or the "
530
  "general plugin behaviour."
531
  msgstr ""
532
 
533
- #: wp-table-reloaded-admin.php:1021
534
  msgid "Frontend Options"
535
  msgstr ""
536
 
537
- #: wp-table-reloaded-admin.php:1025
538
  msgid "Enable Tablesorter-JavaScript?"
539
  msgstr ""
540
 
541
- #: wp-table-reloaded-admin.php:1026
542
  msgid ""
543
- "Yes, enable <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-"
544
- "Plugin</a> to be used to make table sortable (can be changed for every table "
545
- "separatly)."
546
  msgstr ""
547
 
548
- #: wp-table-reloaded-admin.php:1029
549
  msgid "Add custom CSS?"
550
  msgstr ""
551
 
552
- #: wp-table-reloaded-admin.php:1030
553
- #, php-format
554
  msgid ""
555
  "Yes, include and load the following CSS-snippet on my site inside a [style]-"
556
- "HTML-tag. (If you do not want this, just add your CSS styling to your "
557
- "theme's \"style.css\" <small>(located at %s)</small>.) (See the <a href="
558
- "\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
559
- "\">plugin website</a> for examples.)"
560
  msgstr ""
561
 
562
- #: wp-table-reloaded-admin.php:1034
563
  msgid "Enter custom CSS"
564
  msgstr ""
565
 
566
- #: wp-table-reloaded-admin.php:1042
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
567
  msgid "Admin Options"
568
  msgstr ""
569
 
570
- #: wp-table-reloaded-admin.php:1046
571
  msgid "Uninstall Plugin upon Deactivation?"
572
  msgstr ""
573
 
574
- #: wp-table-reloaded-admin.php:1047
575
  msgid ""
576
- "Yes, uninstall everything when plugin is deactivated. Attention: You should "
577
- "only enable this checkbox directly before deactivating the plugin from the "
578
- "WordPress plugins page! (It does not influence the \"Manually Uninstall "
579
- "Plugin\" button below!)"
580
  msgstr ""
581
 
582
- #: wp-table-reloaded-admin.php:1057
583
- msgid "Save Options"
 
 
584
  msgstr ""
585
 
586
- #: wp-table-reloaded-admin.php:1067
587
- msgid ""
588
- "Do you really want to activate this? You should only do that right before "
589
- "uninstallation!"
590
  msgstr ""
591
 
592
- #: wp-table-reloaded-admin.php:1073
593
  msgid "Manually Uninstall Plugin"
594
  msgstr ""
595
 
596
- #: wp-table-reloaded-admin.php:1075
597
  msgid ""
598
  "You may uninstall the plugin here. This <strong>will delete</strong> all "
599
  "tables, data, options, etc., that belong to the plugin, including all tables "
@@ -601,147 +656,307 @@ msgid ""
601
  "button if you know what you are doing!"
602
  msgstr ""
603
 
604
- #: wp-table-reloaded-admin.php:1078
605
- msgid "Do you really want to uninstall the plugin and delete ALL data?"
606
- msgstr ""
607
-
608
- #: wp-table-reloaded-admin.php:1078
609
- msgid "Are you really sure?"
610
- msgstr ""
611
-
612
- #: wp-table-reloaded-admin.php:1078
613
  msgid "Uninstall Plugin WP-Table Reloaded"
614
  msgstr ""
615
 
616
- #: wp-table-reloaded-admin.php:1088
617
  msgid "Information about the plugin"
618
  msgstr ""
619
 
620
- #: wp-table-reloaded-admin.php:1094
621
  msgid "Plugin Purpose"
622
  msgstr ""
623
 
624
- #: wp-table-reloaded-admin.php:1096
625
  msgid ""
626
  "This plugin allows you to create and manage tables in the admin-area of "
627
- "WordPress. You can then show them in your posts, on your pages or in text "
628
- "widgets by using a shortcode."
 
 
 
 
 
629
  msgstr ""
630
 
631
- #: wp-table-reloaded-admin.php:1101
 
 
 
 
 
 
 
 
 
 
 
 
632
  msgid "Usage"
633
  msgstr ""
634
 
635
- #: wp-table-reloaded-admin.php:1103
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
636
  msgid ""
637
- "At first you should add or import a table. Then edit your data and select "
638
- "the options you want. To include the table into your posts, pages or text "
639
- "widgets, write the shortcode [table id=&lt;table-id&gt;] into them. You may "
640
- "then style your table via CSS. Every table has the CSS-class \"wp-table-"
641
- "reloaded\". A table also has the class \"wp-table-reloaded-&lt;table-id&gt;"
642
- "\". You can also use the classes \"column-&lt;number&gt;\" and \"row-&lt;"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
643
  "number&gt;\" to style rows and columns individually. Use this to style "
644
- "columns width and text alignment."
645
  msgstr ""
646
 
647
- #: wp-table-reloaded-admin.php:1107
648
  msgid "More Information and Documentation"
649
  msgstr ""
650
 
651
- #: wp-table-reloaded-admin.php:1109
652
  msgid ""
653
  "More information can be found on the <a href=\"http://tobias.baethge.com/"
654
- "wordpress-plugins/wp-table-reloaded/\">plugin's website</a> or on its page "
655
- "in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/"
656
- "\">WordPress Plugin Directory</a>. A documentation and certain support and "
657
- "help request possibilities will be available soon."
 
 
 
 
 
 
 
658
  msgstr ""
659
 
660
- #: wp-table-reloaded-admin.php:1114
661
  msgid "Author and Licence"
662
  msgstr ""
663
 
664
- #: wp-table-reloaded-admin.php:1116
665
  msgid ""
666
  "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias "
667
  "B&auml;thge</a>. It is licenced as Free Software under GPL 2."
668
  msgstr ""
669
 
670
- #: wp-table-reloaded-admin.php:1116
671
  msgid ""
672
  "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/"
673
- "wordpress-plugins/donate/\">donating</a> or rating it at the <a href="
674
- "\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin "
675
- "Directory</a>. Thanks!"
676
  msgstr ""
677
 
678
- #: wp-table-reloaded-admin.php:1121
 
 
 
 
 
 
679
  msgid "Credits and Thanks"
680
  msgstr ""
681
 
682
- #: wp-table-reloaded-admin.php:1124
683
  msgid ""
684
  "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for "
685
  "the original wp-Table plugin,"
686
  msgstr ""
687
 
688
- #: wp-table-reloaded-admin.php:1125
689
  msgid ""
690
- "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter-"
691
- "jQuery-Plugin</a>,"
692
  msgstr ""
693
 
694
- #: wp-table-reloaded-admin.php:1126
695
  msgid "the submitters of translations:"
696
  msgstr ""
697
 
698
- #: wp-table-reloaded-admin.php:1127
699
  msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
700
  msgstr ""
701
 
702
- #: wp-table-reloaded-admin.php:1128
 
 
 
 
703
  msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
704
  msgstr ""
705
 
706
- #: wp-table-reloaded-admin.php:1129
707
  msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
708
  msgstr ""
709
 
710
- #: wp-table-reloaded-admin.php:1130
711
  msgid ""
712
  "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro "
713
- "Urrutia</a>)"
714
  msgstr ""
715
 
716
- #: wp-table-reloaded-admin.php:1131
717
  msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
718
  msgstr ""
719
 
720
- #: wp-table-reloaded-admin.php:1132
721
  msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
722
  msgstr ""
723
 
724
- #: wp-table-reloaded-admin.php:1133
725
- msgid "and all contributors, supporters, reviewers and users of the plugin!"
 
 
 
 
 
 
 
 
 
 
 
 
726
  msgstr ""
727
 
728
- #: wp-table-reloaded-admin.php:1170
729
  msgid "List Tables"
730
  msgstr ""
731
 
732
- #: wp-table-reloaded-admin.php:1175
733
  msgid "Plugin Options"
734
  msgstr ""
735
 
736
- #: wp-table-reloaded-admin.php:1176
737
  msgid "About the Plugin"
738
  msgstr ""
739
 
740
- #: wp-table-reloaded-admin.php:1184
741
  msgid ""
742
  "More information can be found on the <a href=\"http://tobias.baethge.com/"
743
- "wordpress-plugins/wp-table-reloaded/\">plugin's website</a>. A documentation "
744
- "and certain support and help request possibilities will be available soon."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
745
  msgstr ""
746
 
747
  #. Plugin URI of an extension
@@ -750,12 +965,11 @@ msgstr ""
750
 
751
  #. Description of an extension
752
  msgid ""
753
- "This plugin allows you to create and manage tables in the admin-area of "
754
- "WordPress. You can then show them in your posts, on your pages or in text "
755
- "widgets by using a shortcode. The plugin is a completely rewritten and "
756
- "extended version of Alex Rabe's \"wp-Table\" and uses the state-of-the-art "
757
- "WordPress techniques which makes it faster and lighter than the original "
758
- "plugin."
759
  msgstr ""
760
 
761
  #. Author of an extension
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-06 08:33+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"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=CHARSET\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\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 ""
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 ""
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 ""
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
+ #: php/wp-table-reloaded-export.class.php:38
48
+ msgid ". (dot)"
49
+ msgstr ""
50
+
51
+ #: php/wp-table-reloaded-export.class.php:39
52
+ msgid "| (pipe)"
53
+ msgstr ""
54
+
55
+ #: wp-table-reloaded-admin.php:150
56
  #, php-format
57
  msgid "Table \"%s\" added successfully."
58
  msgstr ""
59
 
60
+ #: wp-table-reloaded-admin.php:173
61
  msgid "Table edited successfully."
62
  msgstr ""
63
 
64
+ #: wp-table-reloaded-admin.php:189
65
  msgid "Rows swapped successfully."
66
  msgstr ""
67
 
68
+ #: wp-table-reloaded-admin.php:208
69
  msgid "Columns swapped successfully."
70
  msgstr ""
71
 
72
+ #: wp-table-reloaded-admin.php:226
73
+ msgid "Table sorted successfully."
74
+ msgstr ""
75
+
76
+ #: wp-table-reloaded-admin.php:261 wp-table-reloaded-admin.php:310
77
  msgid "Copy of"
78
  msgstr ""
79
 
80
+ #: wp-table-reloaded-admin.php:265
81
+ msgid "Table copied successfully."
82
+ msgid_plural "Tables copied successfully."
83
+ msgstr[0] ""
84
+ msgstr[1] ""
85
+
86
+ #: wp-table-reloaded-admin.php:274
87
+ msgid "Table deleted successfully."
88
+ msgid_plural "Tables deleted successfully."
89
+ msgstr[0] ""
90
+ msgstr[1] ""
91
+
92
+ #: wp-table-reloaded-admin.php:287 wp-table-reloaded-admin.php:442
93
+ #: wp-table-reloaded-admin.php:463
94
+ msgid "Table imported successfully."
95
+ msgid_plural "Tables imported successfully."
96
+ msgstr[0] ""
97
+ msgstr[1] ""
98
+
99
+ #: wp-table-reloaded-admin.php:293
100
+ msgid "You did not select any tables!"
101
+ msgstr ""
102
+
103
+ #: wp-table-reloaded-admin.php:315
104
  #, php-format
105
  msgid "Table \"%s\" copied successfully."
106
  msgstr ""
107
 
108
+ #: wp-table-reloaded-admin.php:334
109
  #, php-format
110
  msgid "Table \"%s\" deleted successfully."
111
  msgstr ""
112
 
113
+ #: wp-table-reloaded-admin.php:344
114
  msgid "Row deleted successfully."
115
  msgstr ""
116
 
117
+ #: wp-table-reloaded-admin.php:357
118
  msgid "Column deleted successfully."
119
  msgstr ""
120
 
121
+ #: wp-table-reloaded-admin.php:362
122
  msgid "Delete failed."
123
  msgstr ""
124
 
125
+ #: wp-table-reloaded-admin.php:386
126
  msgid "Row inserted successfully."
127
  msgstr ""
128
 
129
+ #: wp-table-reloaded-admin.php:395
130
  msgid "Column inserted successfully."
131
  msgstr ""
132
 
133
+ #: wp-table-reloaded-admin.php:398
134
  msgid "Insert failed."
135
  msgstr ""
136
 
137
+ #: wp-table-reloaded-admin.php:425
138
  msgid "Imported Table"
139
  msgstr ""
140
 
141
+ #: wp-table-reloaded-admin.php:426
142
  msgid "via form"
143
  msgstr ""
144
 
145
+ #: wp-table-reloaded-admin.php:445
 
 
 
 
146
  msgid "Table could not be imported."
147
  msgstr ""
148
 
149
+ #: wp-table-reloaded-admin.php:489
150
  #, php-format
151
  msgid "Table \"%s\" exported successfully."
152
  msgstr ""
153
 
154
+ #: wp-table-reloaded-admin.php:517
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:535
161
  msgid "WP-Table Reloaded"
162
  msgstr ""
163
 
164
+ #: wp-table-reloaded-admin.php:536
165
  msgid "Plugin deactivated successfully."
166
  msgstr ""
167
 
168
+ #: wp-table-reloaded-admin.php:537
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:553 wp-table-reloaded-admin.php:613
175
  msgid "List of Tables"
176
  msgstr ""
177
 
178
+ #: wp-table-reloaded-admin.php:555 wp-table-reloaded-admin.php:616
179
+ msgid "This is a list of all available tables."
180
+ msgstr ""
181
+
182
+ #: wp-table-reloaded-admin.php:555
183
+ msgid "You may insert a table into a post or page here."
184
  msgstr ""
185
 
186
+ #: wp-table-reloaded-admin.php:556
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:564 wp-table-reloaded-admin.php:628
194
+ #: wp-table-reloaded-admin.php:1008
195
  msgid "ID"
196
  msgstr ""
197
 
198
+ #: wp-table-reloaded-admin.php:565 wp-table-reloaded-admin.php:629
199
+ #: wp-table-reloaded-admin.php:697 wp-table-reloaded-admin.php:746
200
+ #: wp-table-reloaded-admin.php:1009
201
  msgid "Table Name"
202
  msgstr ""
203
 
204
+ #: wp-table-reloaded-admin.php:566 wp-table-reloaded-admin.php:630
205
+ #: wp-table-reloaded-admin.php:701 wp-table-reloaded-admin.php:750
206
+ #: wp-table-reloaded-admin.php:1010
207
  msgid "Description"
208
  msgstr ""
209
 
210
+ #: wp-table-reloaded-admin.php:567 wp-table-reloaded-admin.php:631
211
+ #: wp-table-reloaded-admin.php:1011
212
  msgid "Action"
213
  msgstr ""
214
 
215
+ #: wp-table-reloaded-admin.php:587
216
+ msgid "Insert"
217
  msgstr ""
218
 
219
+ #: wp-table-reloaded-admin.php:596 wp-table-reloaded-admin.php:677
220
+ #: wp-table-reloaded-admin.php:1129
221
+ msgid "No tables found."
222
  msgstr ""
223
 
224
+ #: wp-table-reloaded-admin.php:616
225
+ msgid "You may add, edit, copy or delete tables here."
226
+ msgstr ""
227
+
228
+ #: wp-table-reloaded-admin.php:617
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:657
236
+ msgid "Edit"
237
+ msgstr ""
238
+
239
+ #: wp-table-reloaded-admin.php:658
240
  msgid "Copy"
241
  msgstr ""
242
 
243
+ #: wp-table-reloaded-admin.php:659
244
  msgid "Export"
245
  msgstr ""
246
 
247
+ #: wp-table-reloaded-admin.php:660
248
+ msgid "Delete"
 
 
249
  msgstr ""
250
 
251
+ #: wp-table-reloaded-admin.php:668 wp-table-reloaded-admin.php:1040
252
+ msgid "Bulk actions:"
253
  msgstr ""
254
 
255
+ #: wp-table-reloaded-admin.php:668
256
+ msgid "Copy Tables"
257
  msgstr ""
258
 
259
+ #: wp-table-reloaded-admin.php:668
260
+ msgid "Delete Tables"
261
+ msgstr ""
262
+
263
+ #: wp-table-reloaded-admin.php:677 wp-table-reloaded-admin.php:1129
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:685 wp-table-reloaded-admin.php:1312
269
  msgid "Add new Table"
270
  msgstr ""
271
 
272
+ #: wp-table-reloaded-admin.php:689
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:698
280
  msgid "Enter Table Name"
281
  msgstr ""
282
 
283
+ #: wp-table-reloaded-admin.php:702
284
  msgid "Enter Description"
285
  msgstr ""
286
 
287
+ #: wp-table-reloaded-admin.php:705
288
  msgid "Number of Rows"
289
  msgstr ""
290
 
291
+ #: wp-table-reloaded-admin.php:709
292
  msgid "Number of Columns"
293
  msgstr ""
294
 
295
+ #: wp-table-reloaded-admin.php:716
296
  msgid "Add Table"
297
  msgstr ""
298
 
299
+ #: wp-table-reloaded-admin.php:733
300
  #, php-format
301
  msgid "Edit Table \"%s\""
302
  msgstr ""
303
 
304
+ #: wp-table-reloaded-admin.php:736
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:737
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:742
318
  msgid "Table Information"
319
  msgstr ""
320
 
321
+ #: wp-table-reloaded-admin.php:758 wp-table-reloaded-admin.php:926
322
  msgid "Update Changes"
323
  msgstr ""
324
 
325
+ #: wp-table-reloaded-admin.php:759 wp-table-reloaded-admin.php:927
326
  msgid "Save and go back"
327
  msgstr ""
328
 
329
+ #: wp-table-reloaded-admin.php:762 wp-table-reloaded-admin.php:930
330
  msgid "Cancel"
331
  msgstr ""
332
 
333
+ #: wp-table-reloaded-admin.php:768
334
  msgid "Table Contents"
335
  msgstr ""
336
 
337
+ #: wp-table-reloaded-admin.php:768 wp-table-reloaded-admin.php:824
338
+ #: wp-table-reloaded-admin.php:895 wp-table-reloaded-admin.php:1265
339
+ msgid "Hide"
340
  msgstr ""
341
 
342
+ #: wp-table-reloaded-admin.php:768 wp-table-reloaded-admin.php:824
343
+ #: wp-table-reloaded-admin.php:895 wp-table-reloaded-admin.php:1265
344
+ msgid "Expand"
345
  msgstr ""
346
 
347
+ #: wp-table-reloaded-admin.php:796
348
+ msgid "Insert Row"
349
  msgstr ""
350
 
351
+ #: wp-table-reloaded-admin.php:798
352
+ msgid "Delete Row"
353
  msgstr ""
354
 
355
+ #: wp-table-reloaded-admin.php:808
356
+ msgid "Insert Column"
357
  msgstr ""
358
 
359
+ #: wp-table-reloaded-admin.php:810
360
  msgid "Delete Column"
361
  msgstr ""
362
 
363
+ #: wp-table-reloaded-admin.php:815
364
  msgid "Add Row"
365
  msgstr ""
366
 
367
+ #: wp-table-reloaded-admin.php:815
368
  msgid "Add Column"
369
  msgstr ""
370
 
371
+ #: wp-table-reloaded-admin.php:824
372
  msgid "Data Manipulation"
373
  msgstr ""
374
 
375
+ #: wp-table-reloaded-admin.php:839
376
  #, php-format
377
  msgid "Swap rows %s and %s"
378
  msgstr ""
379
 
380
+ #: wp-table-reloaded-admin.php:842 wp-table-reloaded-admin.php:862
381
  msgid "Swap"
382
  msgstr ""
383
 
384
+ #: wp-table-reloaded-admin.php:859
385
  #, php-format
386
  msgid "Swap columns %s and %s"
387
  msgstr ""
388
 
389
+ #: wp-table-reloaded-admin.php:866
390
  msgid "Insert Link"
391
  msgstr ""
392
 
393
+ #: wp-table-reloaded-admin.php:866
394
  msgid "Insert Image"
395
  msgstr ""
396
 
397
+ #: wp-table-reloaded-admin.php:878
398
+ msgid "ascending"
 
 
 
 
 
 
 
 
 
 
399
  msgstr ""
400
 
401
+ #: wp-table-reloaded-admin.php:879
402
+ msgid "descending"
403
  msgstr ""
404
 
405
+ #: wp-table-reloaded-admin.php:882
406
+ #, php-format
407
+ msgid "Sort table by column %s in %s order"
408
  msgstr ""
409
 
410
+ #: wp-table-reloaded-admin.php:885
411
+ msgid "Sort"
 
 
412
  msgstr ""
413
 
414
+ #: wp-table-reloaded-admin.php:895
415
  msgid "Table Settings"
416
  msgstr ""
417
 
418
+ #: wp-table-reloaded-admin.php:897
419
  msgid "These settings will only be used for this table."
420
  msgstr ""
421
 
422
+ #: wp-table-reloaded-admin.php:900
423
  msgid "Alternating row colors"
424
  msgstr ""
425
 
426
+ #: wp-table-reloaded-admin.php:901
427
  msgid "Every second row will have an alternating background color."
428
  msgstr ""
429
 
430
+ #: wp-table-reloaded-admin.php:904
431
  msgid "Use Table Headline"
432
  msgstr ""
433
 
434
+ #: wp-table-reloaded-admin.php:905
435
  msgid "The first row of your table will use the [th] tag."
436
  msgstr ""
437
 
438
+ #: wp-table-reloaded-admin.php:908
439
  msgid "Print Table Name"
440
  msgstr ""
441
 
442
+ #: wp-table-reloaded-admin.php:909
443
  msgid "The Table Name will be written above the table in a [h2] tag."
444
  msgstr ""
445
 
446
+ #: wp-table-reloaded-admin.php:912
447
  msgid "Print Table Description"
448
  msgstr ""
449
 
450
+ #: wp-table-reloaded-admin.php:913
451
  msgid "The Table Description will be written under the table."
452
  msgstr ""
453
 
454
+ #: wp-table-reloaded-admin.php:916
455
  msgid "Use Tablesorter"
456
  msgstr ""
457
 
458
+ #: wp-table-reloaded-admin.php:917
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
  "Table Headline\" has to be enabled above for this to work!</small>"
464
  msgstr ""
465
 
466
+ #: wp-table-reloaded-admin.php:932
467
  msgid "Other actions"
468
  msgstr ""
469
 
470
+ #: wp-table-reloaded-admin.php:935
471
  msgid "Delete Table"
472
  msgstr ""
473
 
474
+ #: wp-table-reloaded-admin.php:936 wp-table-reloaded-admin.php:1118
475
  msgid "Export Table"
476
  msgstr ""
477
 
478
+ #: wp-table-reloaded-admin.php:947 wp-table-reloaded-admin.php:1313
479
  msgid "Import a Table"
480
  msgstr ""
481
 
482
+ #: wp-table-reloaded-admin.php:951
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:958
490
  msgid "Select Import Format"
491
  msgstr ""
492
 
493
+ #: wp-table-reloaded-admin.php:968
 
 
 
 
 
 
 
 
494
  msgid "Select File with Table to Import"
495
  msgstr ""
496
 
497
+ #: wp-table-reloaded-admin.php:972
498
  msgid "- or -"
499
  msgstr ""
500
 
501
+ #: wp-table-reloaded-admin.php:973
502
  msgid "(upload will be preferred over pasting)"
503
  msgstr ""
504
 
505
+ #: wp-table-reloaded-admin.php:976
506
  msgid "Paste data with Table to Import"
507
  msgstr ""
508
 
509
+ #: wp-table-reloaded-admin.php:982
510
  msgid "Import Table"
511
  msgstr ""
512
 
513
+ #: wp-table-reloaded-admin.php:995
514
  msgid "Import from original wp-Table plugin"
515
  msgstr ""
516
 
517
+ #: wp-table-reloaded-admin.php:1032
518
+ msgid "Import"
519
  msgstr ""
520
 
521
+ #: wp-table-reloaded-admin.php:1040
522
+ msgid "Import Tables"
523
  msgstr ""
524
 
525
+ #: wp-table-reloaded-admin.php:1046
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:1065 wp-table-reloaded-admin.php:1314
530
  msgid "Export a Table"
531
  msgstr ""
532
 
533
+ #: wp-table-reloaded-admin.php:1069
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:1077
541
  msgid "Select Table to Export"
542
  msgstr ""
543
 
544
+ #: wp-table-reloaded-admin.php:1092
545
  msgid "Select Export Format"
546
  msgstr ""
547
 
548
+ #: wp-table-reloaded-admin.php:1102
549
  msgid "Select Delimiter to use"
550
  msgstr ""
551
 
552
+ #: wp-table-reloaded-admin.php:1109
553
+ msgid "<small>(Only needed for CSV export.)</small>"
554
+ msgstr ""
555
+
556
+ #: wp-table-reloaded-admin.php:1112
557
  msgid "Download file"
558
  msgstr ""
559
 
560
+ #: wp-table-reloaded-admin.php:1113
561
  msgid "Yes, I want to download the export file."
562
  msgstr ""
563
 
564
+ #: wp-table-reloaded-admin.php:1138
565
  msgid "General Plugin Options"
566
  msgstr ""
567
 
568
+ #: wp-table-reloaded-admin.php:1142
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:1149
575
  msgid "Frontend Options"
576
  msgstr ""
577
 
578
+ #: wp-table-reloaded-admin.php:1153
579
  msgid "Enable Tablesorter-JavaScript?"
580
  msgstr ""
581
 
582
+ #: wp-table-reloaded-admin.php:1154
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:1157
590
  msgid "Add custom CSS?"
591
  msgstr ""
592
 
593
+ #: wp-table-reloaded-admin.php:1159
 
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:1164
600
  msgid "Enter custom CSS"
601
  msgstr ""
602
 
603
+ #: wp-table-reloaded-admin.php:1166
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:1167
611
+ #, php-format
612
+ msgid ""
613
+ "See the <a href=\"%s\">plugin website</a> for styling examples or use one of "
614
+ "the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example "
615
+ "Style 2</a>"
616
+ msgstr ""
617
+
618
+ #: wp-table-reloaded-admin.php:1167
619
+ msgid "Just copy the contents of a file into the textarea."
620
+ msgstr ""
621
+
622
+ #: wp-table-reloaded-admin.php:1175
623
  msgid "Admin Options"
624
  msgstr ""
625
 
626
+ #: wp-table-reloaded-admin.php:1179
627
  msgid "Uninstall Plugin upon Deactivation?"
628
  msgstr ""
629
 
630
+ #: wp-table-reloaded-admin.php:1180
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:1180
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:1190
644
+ msgid "Save Options"
 
 
645
  msgstr ""
646
 
647
+ #: wp-table-reloaded-admin.php:1196
648
  msgid "Manually Uninstall Plugin"
649
  msgstr ""
650
 
651
+ #: wp-table-reloaded-admin.php:1198
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
  "button if you know what you are doing!"
657
  msgstr ""
658
 
659
+ #: wp-table-reloaded-admin.php:1201
 
 
 
 
 
 
 
 
660
  msgid "Uninstall Plugin WP-Table Reloaded"
661
  msgstr ""
662
 
663
+ #: wp-table-reloaded-admin.php:1212
664
  msgid "Information about the plugin"
665
  msgstr ""
666
 
667
+ #: wp-table-reloaded-admin.php:1218
668
  msgid "Plugin Purpose"
669
  msgstr ""
670
 
671
+ #: wp-table-reloaded-admin.php:1220
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:1220
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:1220
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:1220
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:1225
696
  msgid "Usage"
697
  msgstr ""
698
 
699
+ #: wp-table-reloaded-admin.php:1227
700
+ msgid "At first you should add or import a table."
701
+ msgstr ""
702
+
703
+ #: wp-table-reloaded-admin.php:1227
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:1227
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 "
713
+ "them) and select specific table options like alternating row colors or "
714
+ "whether to print the name or description, if you want."
715
+ msgstr ""
716
+
717
+ #: wp-table-reloaded-admin.php:1227
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:1227
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:1227
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:1227
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:1227
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:1232
752
  msgid "More Information and Documentation"
753
  msgstr ""
754
 
755
+ #: wp-table-reloaded-admin.php:1234
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 "
759
+ "its page in the <a href=\"http://wordpress.org/extend/plugins/wp-table-"
760
+ "reloaded/\">WordPress Plugin Directory</a>."
761
+ msgstr ""
762
+
763
+ #: wp-table-reloaded-admin.php:1234 wp-table-reloaded-admin.php:1325
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 "
767
+ "<a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-"
768
+ "english/support/\">support</a>."
769
  msgstr ""
770
 
771
+ #: wp-table-reloaded-admin.php:1239
772
  msgid "Author and Licence"
773
  msgstr ""
774
 
775
+ #: wp-table-reloaded-admin.php:1241
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:1241
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 "
785
+ "plugin in the <a href=\"http://wordpress.org/extend/plugins/wp-table-"
786
+ "reloaded/\">WordPress Plugin Directory</a>."
787
  msgstr ""
788
 
789
+ #: wp-table-reloaded-admin.php:1241
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:1246
796
  msgid "Credits and Thanks"
797
  msgstr ""
798
 
799
+ #: wp-table-reloaded-admin.php:1249
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:1250
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:1251
812
  msgid "the submitters of translations:"
813
  msgstr ""
814
 
815
+ #: wp-table-reloaded-admin.php:1252
816
  msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
817
  msgstr ""
818
 
819
+ #: wp-table-reloaded-admin.php:1253
820
+ msgid "Czech (thanks to <a href=\"http://separatista.net/\">Pavel</a>)"
821
+ msgstr ""
822
+
823
+ #: wp-table-reloaded-admin.php:1254
824
  msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
825
  msgstr ""
826
 
827
+ #: wp-table-reloaded-admin.php:1255
828
  msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
829
  msgstr ""
830
 
831
+ #: wp-table-reloaded-admin.php:1256
832
  msgid ""
833
  "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro "
834
+ "Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
835
  msgstr ""
836
 
837
+ #: wp-table-reloaded-admin.php:1257
838
  msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
839
  msgstr ""
840
 
841
+ #: wp-table-reloaded-admin.php:1258
842
  msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
843
  msgstr ""
844
 
845
+ #: wp-table-reloaded-admin.php:1259
846
+ msgid ""
847
+ "and to all donors, contributors, supporters, reviewers and users of the "
848
+ "plugin!"
849
+ msgstr ""
850
+
851
+ #: wp-table-reloaded-admin.php:1265
852
+ msgid "Debug and Version Information"
853
+ msgstr ""
854
+
855
+ #: wp-table-reloaded-admin.php:1268
856
+ msgid ""
857
+ "You are using the following versions of the software. <strong>Please provide "
858
+ "this information in bug reports.</strong>"
859
  msgstr ""
860
 
861
+ #: wp-table-reloaded-admin.php:1311
862
  msgid "List Tables"
863
  msgstr ""
864
 
865
+ #: wp-table-reloaded-admin.php:1316
866
  msgid "Plugin Options"
867
  msgstr ""
868
 
869
+ #: wp-table-reloaded-admin.php:1317
870
  msgid "About the Plugin"
871
  msgstr ""
872
 
873
+ #: wp-table-reloaded-admin.php:1325
874
  msgid ""
875
  "More information can be found on the <a href=\"http://tobias.baethge.com/"
876
+ "wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
877
+ msgstr ""
878
+
879
+ #: wp-table-reloaded-admin.php:1533
880
+ msgid ""
881
+ "Do you really want to activate this? You should only do that right before "
882
+ "uninstallation!"
883
+ msgstr ""
884
+
885
+ #: wp-table-reloaded-admin.php:1534
886
+ msgid "URL of link to insert"
887
+ msgstr ""
888
+
889
+ #: wp-table-reloaded-admin.php:1535
890
+ msgid "Text of link"
891
+ msgstr ""
892
+
893
+ #: wp-table-reloaded-admin.php:1536
894
+ msgid ""
895
+ "To insert the following link into a cell, just click the cell after closing "
896
+ "this dialog."
897
+ msgstr ""
898
+
899
+ #: wp-table-reloaded-admin.php:1537
900
+ msgid "URL of image to insert"
901
+ msgstr ""
902
+
903
+ #: wp-table-reloaded-admin.php:1538
904
+ msgid "''alt'' text of the image"
905
+ msgstr ""
906
+
907
+ #: wp-table-reloaded-admin.php:1539
908
+ msgid ""
909
+ "To insert the following image into a cell, just click the cell after closing "
910
+ "this dialog."
911
+ msgstr ""
912
+
913
+ #: wp-table-reloaded-admin.php:1540
914
+ msgid "Do you want to copy the selected tables?"
915
+ msgstr ""
916
+
917
+ #: wp-table-reloaded-admin.php:1541
918
+ msgid ""
919
+ "The selected tables and all content will be erased. Do you really want to "
920
+ "delete them?"
921
+ msgstr ""
922
+
923
+ #: wp-table-reloaded-admin.php:1542
924
+ msgid ""
925
+ "Do you really want to import the selected tables from the wp-Table plugin?"
926
+ msgstr ""
927
+
928
+ #: wp-table-reloaded-admin.php:1543
929
+ msgid "Do you want to copy this table?"
930
+ msgstr ""
931
+
932
+ #: wp-table-reloaded-admin.php:1544
933
+ msgid ""
934
+ "The complete table and all content will be erased. Do you really want to "
935
+ "delete it?"
936
+ msgstr ""
937
+
938
+ #: wp-table-reloaded-admin.php:1545
939
+ msgid "Do you really want to delete this row?"
940
+ msgstr ""
941
+
942
+ #: wp-table-reloaded-admin.php:1546
943
+ msgid "Do you really want to delete this column?"
944
+ msgstr ""
945
+
946
+ #: wp-table-reloaded-admin.php:1547
947
+ msgid "Do you really want to import this table from the wp-Table plugin?"
948
+ msgstr ""
949
+
950
+ #: wp-table-reloaded-admin.php:1548
951
+ msgid "Do you really want to uninstall the plugin and delete ALL data?"
952
+ msgstr ""
953
+
954
+ #: wp-table-reloaded-admin.php:1549
955
+ msgid "Are you really sure?"
956
+ msgstr ""
957
+
958
+ #: wp-table-reloaded-admin.php:1597
959
+ msgid "Table"
960
  msgstr ""
961
 
962
  #. Plugin URI of an extension
965
 
966
  #. Description of an extension
967
  msgid ""
968
+ "This plugin allows you to create and easily manage tables in the admin-area "
969
+ "of WordPress. A comfortable backend allows an easy manipulation of table "
970
+ "data. You can then include the tables into your posts, on your pages or in "
971
+ "text widgets by using a shortcode or a template tag function. Tables can be "
972
+ "imported and exported from/to CSV, XML and HTML."
 
973
  msgstr ""
974
 
975
  #. Author of an extension
php/arraysort.class.php ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
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
+ */
10
+
11
+ // should be included by WP_Table_Reloaded_Admin!
12
+ class arraysort {
13
+
14
+ var $input_array = array();
15
+ var $sorted_array = array();
16
+ var $column = -1;
17
+ var $order = 'ASC';
18
+ var $error = false;
19
+
20
+ function arraysort( $array = array(), $column = -1, $order = 'ASC' )
21
+ {
22
+ $this->input_array = $array;
23
+ $this->column = $column;
24
+ $this->order = $order;
25
+ if ( !empty ($array) && -1 != $column )
26
+ $this->sort();
27
+ }
28
+
29
+ function compare_rows( $a, $b )
30
+ {
31
+ if ( -1 == $this->column )
32
+ return 0;
33
+
34
+ if ( $a[ $this->column ] == $b[ $this->column ] )
35
+ return 0;
36
+
37
+ return ( $a[ $this->column ] < $b[ $this->column ] ) ? -1 : 1;
38
+ // return strcmp( $a[ $this->column ], $b[ $this->column ] ); // doesn't work for integer columns obviously
39
+ }
40
+
41
+ function sort() {
42
+ $array_to_sort = $this->input_array;
43
+ if ( usort( $array_to_sort, array( &$this, 'compare_rows' ) ) ) {
44
+ $this->sorted_array = ( 'DESC' == $this->order ) ? array_reverse( $array_to_sort ) : $array_to_sort;
45
+ } else {
46
+ $this->sorted_array = $this->input_array;
47
+ $this->error = true;
48
+ }
49
+ }
50
+ }
51
+
52
+ ?>
php/parsecsv.class.php ADDED
@@ -0,0 +1,765 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class parseCSV {
4
+
5
+ /*
6
+ Class: parseCSV v0.4.3 beta
7
+ http://code.google.com/p/parsecsv-for-php/
8
+
9
+ Fully conforms to the specifications lined out on wikipedia:
10
+ - http://en.wikipedia.org/wiki/Comma-separated_values
11
+
12
+ Based on the concept of Ming Hong Ng's CsvFileParser class:
13
+ - http://minghong.blogspot.com/2006/07/csv-parser-for-php.html
14
+
15
+ Copyright (c) 2007 Jim Myhrberg (jim@zydev.info).
16
+
17
+ Permission is hereby granted, free of charge, to any person obtaining a copy
18
+ of this software and associated documentation files (the "Software"), to deal
19
+ in the Software without restriction, including without limitation the rights
20
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
21
+ copies of the Software, and to permit persons to whom the Software is
22
+ furnished to do so, subject to the following conditions:
23
+
24
+ The above copyright notice and this permission notice shall be included in
25
+ all copies or substantial portions of the Software.
26
+
27
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
30
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
31
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
32
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
33
+ THE SOFTWARE.
34
+
35
+ Code Examples
36
+ ----------------
37
+ # general usage
38
+ $csv = new parseCSV('data.csv');
39
+ print_r($csv->data);
40
+ ----------------
41
+ # tab delimited, and encoding conversion
42
+ $csv = new parseCSV();
43
+ $csv->encoding('UTF-16', 'UTF-8');
44
+ $csv->delimiter = "\t";
45
+ $csv->parse('data.tsv');
46
+ print_r($csv->data);
47
+ ----------------
48
+ # auto-detect delimiter character
49
+ $csv = new parseCSV();
50
+ $csv->auto('data.csv');
51
+ print_r($csv->data);
52
+ ----------------
53
+ # modify data in a csv file
54
+ $csv = new parseCSV();
55
+ $csv->sort_by = 'id';
56
+ $csv->parse('data.csv');
57
+ # "4" is the value of the "id" column of the CSV row
58
+ $csv->data[4] = array('firstname' => 'John', 'lastname' => 'Doe', 'email' => 'john@doe.com');
59
+ $csv->save();
60
+ ----------------
61
+ # add row/entry to end of CSV file
62
+ # - only recommended when you know the extact sctructure of the file
63
+ $csv = new parseCSV();
64
+ $csv->save('data.csv', array('1986', 'Home', 'Nowhere', ''), true);
65
+ ----------------
66
+ # convert 2D array to csv data and send headers
67
+ # to browser to treat output as a file and download it
68
+ $csv = new parseCSV();
69
+ $csv->output (true, 'movies.csv', $array);
70
+ ----------------
71
+
72
+ */
73
+
74
+ /**
75
+ * Configuration
76
+ * - set these options with $object->var_name = 'value';
77
+ */
78
+
79
+ # use first line/entry as field names
80
+ var $heading = true;
81
+
82
+ # override field names
83
+ var $fields = array();
84
+
85
+ # sort entries by this field
86
+ var $sort_by = null;
87
+ var $sort_reverse = false;
88
+
89
+ # sort behavior passed to ksort/krsort functions
90
+ # regular = SORT_REGULAR
91
+ # numeric = SORT_NUMERIC
92
+ # string = SORT_STRING
93
+ var $sort_type = null;
94
+
95
+ # delimiter (semicolon) and enclosure (double quote)
96
+ var $delimiter = ';';
97
+ var $enclosure = '"';
98
+
99
+ # basic SQL-like conditions for row matching
100
+ var $conditions = null;
101
+
102
+ # number of rows to ignore from beginning of data
103
+ var $offset = null;
104
+
105
+ # limits the number of returned rows to specified amount
106
+ var $limit = null;
107
+
108
+ # number of rows to analyze when attempting to auto-detect delimiter
109
+ var $auto_depth = 15;
110
+
111
+ # characters to ignore when attempting to auto-detect delimiter
112
+ var $auto_non_chars = "a-zA-Z0-9\n\r";
113
+
114
+ # preferred delimiter characters, only used when all filtering method
115
+ # returns multiple possible delimiters (happens very rarely)
116
+ var $auto_preferred = ",;\t.:|";
117
+
118
+ # character encoding options
119
+ var $convert_encoding = false;
120
+ var $input_encoding = 'ISO-8859-1';
121
+ var $output_encoding = 'ISO-8859-1';
122
+
123
+ # used by unparse(), save(), and output() functions
124
+ var $linefeed = "\r\n";
125
+
126
+ # only used by output() function
127
+ var $output_delimiter = ';';
128
+ var $output_filename = 'data.csv';
129
+
130
+ # keep raw file data in memory after successful parsing (useful for debugging)
131
+ var $keep_file_data = false;
132
+
133
+ /**
134
+ * Internal variables
135
+ */
136
+
137
+ # current file
138
+ var $file;
139
+
140
+ # loaded file contents
141
+ var $file_data;
142
+
143
+ # error while parsing input data
144
+ # 0 = No errors found. Everything should be fine :)
145
+ # 1 = Hopefully correctable syntax error was found.
146
+ # 2 = Enclosure character (double quote by default)
147
+ # was found in non-enclosed field. This means
148
+ # the file is either corrupt, or does not
149
+ # standard CSV formatting. Please validate
150
+ # the parsed data yourself.
151
+ var $error = 0;
152
+
153
+ # detailed error info
154
+ var $error_info = array();
155
+
156
+ # array of field values in data parsed
157
+ var $titles = array();
158
+
159
+ # two dimentional array of CSV data
160
+ var $data = array();
161
+
162
+
163
+ /**
164
+ * Constructor
165
+ * @param input CSV file or string
166
+ * @return nothing
167
+ */
168
+ function parseCSV ($input = null, $offset = null, $limit = null, $conditions = null) {
169
+ if ( $offset !== null ) $this->offset = $offset;
170
+ if ( $limit !== null ) $this->limit = $limit;
171
+ if ( count($conditions) > 0 ) $this->conditions = $conditions;
172
+ if ( !empty($input) ) $this->parse($input);
173
+ }
174
+
175
+
176
+ // ==============================================
177
+ // ----- [ Main Functions ] ---------------------
178
+ // ==============================================
179
+
180
+ /**
181
+ * Parse CSV file or string
182
+ * @param input CSV file or string
183
+ * @return nothing
184
+ */
185
+ function parse ($input = null, $offset = null, $limit = null, $conditions = null) {
186
+ if ( $input === null ) $input = $this->file;
187
+ if ( !empty($input) ) {
188
+ if ( $offset !== null ) $this->offset = $offset;
189
+ if ( $limit !== null ) $this->limit = $limit;
190
+ if ( count($conditions) > 0 ) $this->conditions = $conditions;
191
+ if ( is_readable($input) ) {
192
+ $this->data = $this->parse_file($input);
193
+ } else {
194
+ $this->file_data = &$input;
195
+ $this->data = $this->parse_string();
196
+ }
197
+ if ( $this->data === false ) return false;
198
+ }
199
+ return true;
200
+ }
201
+
202
+ /**
203
+ * Save changes, or new file and/or data
204
+ * @param file file to save to
205
+ * @param data 2D array with data
206
+ * @param append append current data to end of target CSV if exists
207
+ * @param fields field names
208
+ * @return true or false
209
+ */
210
+ function save ($file = null, $data = array(), $append = false, $fields = array()) {
211
+ if ( empty($file) ) $file = &$this->file;
212
+ $mode = ( $append ) ? 'at' : 'wt' ;
213
+ $is_php = ( preg_match('/\.php$/i', $file) ) ? true : false ;
214
+ return $this->_wfile($file, $this->unparse($data, $fields, $append, $is_php), $mode);
215
+ }
216
+
217
+ /**
218
+ * Generate CSV based string for output
219
+ * @param filename if specified, headers and data will be output directly to browser as a downloable file
220
+ * @param data 2D array with data
221
+ * @param fields field names
222
+ * @param delimiter delimiter used to separate data
223
+ * @return CSV data using delimiter of choice, or default
224
+ */
225
+ function output ($filename = null, $data = array(), $fields = array(), $delimiter = null) {
226
+ if ( empty($filename) ) $filename = $this->output_filename;
227
+ if ( $delimiter === null ) $delimiter = $this->output_delimiter;
228
+ $data = $this->unparse($data, $fields, null, null, $delimiter);
229
+ if ( $filename !== null ) {
230
+ header('Content-type: application/csv');
231
+ header('Content-Disposition: attachment; filename="'.$filename.'"');
232
+ echo $data;
233
+ }
234
+ return $data;
235
+ }
236
+
237
+ /**
238
+ * Convert character encoding
239
+ * @param input input character encoding, uses default if left blank
240
+ * @param output output character encoding, uses default if left blank
241
+ * @return nothing
242
+ */
243
+ function encoding ($input = null, $output = null) {
244
+ $this->convert_encoding = true;
245
+ if ( $input !== null ) $this->input_encoding = $input;
246
+ if ( $output !== null ) $this->output_encoding = $output;
247
+ }
248
+
249
+ /**
250
+ * Auto-Detect Delimiter: Find delimiter by analyzing a specific number of
251
+ * rows to determine most probable delimiter character
252
+ * @param file local CSV file
253
+ * @param parse true/false parse file directly
254
+ * @param search_depth number of rows to analyze
255
+ * @param preferred preferred delimiter characters
256
+ * @param enclosure enclosure character, default is double quote (").
257
+ * @return delimiter character
258
+ */
259
+ function auto ($file = null, $parse = true, $search_depth = null, $preferred = null, $enclosure = null) {
260
+
261
+ if ( $file === null ) $file = $this->file;
262
+ if ( empty($search_depth) ) $search_depth = $this->auto_depth;
263
+ if ( $enclosure === null ) $enclosure = $this->enclosure;
264
+
265
+ if ( $preferred === null ) $preferred = $this->auto_preferred;
266
+
267
+ if ( empty($this->file_data) ) {
268
+ if ( $this->_check_data($file) ) {
269
+ $data = &$this->file_data;
270
+ } else return false;
271
+ } else {
272
+ $data = &$this->file_data;
273
+ }
274
+
275
+ $chars = array();
276
+ $strlen = strlen($data);
277
+ $enclosed = false;
278
+ $n = 1;
279
+ $to_end = true;
280
+
281
+ // walk specific depth finding posssible delimiter characters
282
+ for ( $i=0; $i < $strlen; $i++ ) {
283
+ $ch = $data{$i};
284
+ $nch = ( isset($data{$i+1}) ) ? $data{$i+1} : false ;
285
+ $pch = ( isset($data{$i-1}) ) ? $data{$i-1} : false ;
286
+
287
+ // open and closing quotes
288
+ if ( $ch == $enclosure ) {
289
+ if ( !$enclosed || $nch != $enclosure ) {
290
+ $enclosed = ( $enclosed ) ? false : true ;
291
+ } elseif ( $enclosed ) {
292
+ $i++;
293
+ }
294
+
295
+ // end of row
296
+ } elseif ( ($ch == "\n" && $pch != "\r" || $ch == "\r") && !$enclosed ) {
297
+ if ( $n >= $search_depth ) {
298
+ $strlen = 0;
299
+ $to_end = false;
300
+ } else {
301
+ $n++;
302
+ }
303
+
304
+ // count character
305
+ } elseif (!$enclosed) {
306
+ if ( !preg_match('/['.preg_quote($this->auto_non_chars, '/').']/i', $ch) ) {
307
+ if ( !isset($chars[$ch][$n]) ) {
308
+ $chars[$ch][$n] = 1;
309
+ } else {
310
+ $chars[$ch][$n]++;
311
+ }
312
+ }
313
+ }
314
+ }
315
+
316
+ // filtering
317
+ $depth = ( $to_end ) ? $n-1 : $n ;
318
+ $filtered = array();
319
+ foreach( $chars as $char => $value ) {
320
+ if ( $match = $this->_check_count($char, $value, $depth, $preferred) ) {
321
+ $filtered[$match] = $char;
322
+ }
323
+ }
324
+
325
+ // capture most probable delimiter
326
+ ksort($filtered);
327
+
328
+ $this->delimiter = reset($filtered);
329
+
330
+ // parse data
331
+ if ( $parse ) $this->data = $this->parse_string();
332
+
333
+ return $this->delimiter;
334
+
335
+ }
336
+
337
+
338
+ // ==============================================
339
+ // ----- [ Core Functions ] ---------------------
340
+ // ==============================================
341
+
342
+ /**
343
+ * Read file to string and call parse_string()
344
+ * @param file local CSV file
345
+ * @return 2D array with CSV data, or false on failure
346
+ */
347
+ function parse_file ($file = null) {
348
+ if ( $file === null ) $file = $this->file;
349
+ if ( empty($this->file_data) ) $this->load_data($file);
350
+ return ( !empty($this->file_data) ) ? $this->parse_string() : false ;
351
+ }
352
+
353
+ /**
354
+ * Parse CSV strings to arrays
355
+ * @param data CSV string
356
+ * @return 2D array with CSV data, or false on failure
357
+ */
358
+ function parse_string ($data = null) {
359
+ if ( empty($data) ) {
360
+ if ( $this->_check_data() ) {
361
+ $data = &$this->file_data;
362
+ } else return false;
363
+ }
364
+
365
+ $white_spaces = str_replace($this->delimiter, '', " \t\x0B\0");
366
+
367
+ $rows = array();
368
+ $row = array();
369
+ $row_count = 0;
370
+ $current = '';
371
+ $head = ( !empty($this->fields) ) ? $this->fields : array() ;
372
+ $col = 0;
373
+ $enclosed = false;
374
+ $was_enclosed = false;
375
+ $strlen = strlen($data);
376
+
377
+ // walk through each character
378
+ for ( $i=0; $i < $strlen; $i++ ) {
379
+ $ch = $data{$i};
380
+ $nch = ( isset($data{$i+1}) ) ? $data{$i+1} : false ;
381
+ $pch = ( isset($data{$i-1}) ) ? $data{$i-1} : false ;
382
+
383
+ // open/close quotes, and inline quotes
384
+ if ( $ch == $this->enclosure ) {
385
+ if ( !$enclosed ) {
386
+ if ( ltrim($current, $white_spaces) == '' ) {
387
+ $enclosed = true;
388
+ $was_enclosed = true;
389
+ } else {
390
+ $this->error = 2;
391
+ $error_row = count($rows) + 1;
392
+ $error_col = $col + 1;
393
+ if ( !isset($this->error_info[$error_row.'-'.$error_col]) ) {
394
+ $this->error_info[$error_row.'-'.$error_col] = array(
395
+ 'type' => 2,
396
+ 'info' => 'Syntax error found on row '.$error_row.'. Non-enclosed fields can not contain double-quotes.',
397
+ 'row' => $error_row,
398
+ 'field' => $error_col,
399
+ 'field_name' => (!empty($head[$col])) ? $head[$col] : null,
400
+ );
401
+ }
402
+ $current .= $ch;
403
+ }
404
+ } elseif ($nch == $this->enclosure) {
405
+ $current .= $ch;
406
+ $i++;
407
+ } elseif ( $nch != $this->delimiter && $nch != "\r" && $nch != "\n" ) {
408
+ for ( $x=($i+1); isset($data{$x}) && ltrim($data{$x}, $white_spaces) == ''; $x++ ) {}
409
+ if ( $data{$x} == $this->delimiter ) {
410
+ $enclosed = false;
411
+ $i = $x;
412
+ } else {
413
+ if ( $this->error < 1 ) {
414
+ $this->error = 1;
415
+ }
416
+ $error_row = count($rows) + 1;
417
+ $error_col = $col + 1;
418
+ if ( !isset($this->error_info[$error_row.'-'.$error_col]) ) {
419
+ $this->error_info[$error_row.'-'.$error_col] = array(
420
+ 'type' => 1,
421
+ 'info' =>
422
+ 'Syntax error found on row '.(count($rows) + 1).'. '.
423
+ 'A single double-quote was found within an enclosed string. '.
424
+ 'Enclosed double-quotes must be escaped with a second double-quote.',
425
+ 'row' => count($rows) + 1,
426
+ 'field' => $col + 1,
427
+ 'field_name' => (!empty($head[$col])) ? $head[$col] : null,
428
+ );
429
+ }
430
+ $current .= $ch;
431
+ $enclosed = false;
432
+ }
433
+ } else {
434
+ $enclosed = false;
435
+ }
436
+
437
+ // end of field/row
438
+ } elseif ( ($ch == $this->delimiter || $ch == "\n" || $ch == "\r") && !$enclosed ) {
439
+ $key = ( !empty($head[$col]) ) ? $head[$col] : $col ;
440
+ $row[$key] = ( $was_enclosed ) ? $current : trim($current) ;
441
+ $current = '';
442
+ $was_enclosed = false;
443
+ $col++;
444
+
445
+ // end of row
446
+ if ( $ch == "\n" || $ch == "\r" ) {
447
+ if ( $this->_validate_offset($row_count) && $this->_validate_row_conditions($row, $this->conditions) ) {
448
+ if ( $this->heading && empty($head) ) {
449
+ $head = $row;
450
+ } elseif ( empty($this->fields) || (!empty($this->fields) && (($this->heading && $row_count > 0) || !$this->heading)) ) {
451
+ if ( !empty($this->sort_by) && !empty($row[$this->sort_by]) ) {
452
+ if ( isset($rows[$row[$this->sort_by]]) ) {
453
+ $rows[$row[$this->sort_by].'_0'] = &$rows[$row[$this->sort_by]];
454
+ unset($rows[$row[$this->sort_by]]);
455
+ for ( $sn=1; isset($rows[$row[$this->sort_by].'_'.$sn]); $sn++ ) {}
456
+ $rows[$row[$this->sort_by].'_'.$sn] = $row;
457
+ } else $rows[$row[$this->sort_by]] = $row;
458
+ } else $rows[] = $row;
459
+ }
460
+ }
461
+ $row = array();
462
+ $col = 0;
463
+ $row_count++;
464
+ if ( $this->sort_by === null && $this->limit !== null && count($rows) == $this->limit ) {
465
+ $i = $strlen;
466
+ }
467
+ if ( $ch == "\r" && $nch == "\n" ) $i++;
468
+ }
469
+
470
+ // append character to current field
471
+ } else {
472
+ $current .= $ch;
473
+ }
474
+ }
475
+ $this->titles = $head;
476
+ if ( !empty($this->sort_by) ) {
477
+ $sort_type = SORT_REGULAR;
478
+ if ( $this->sort_type == 'numeric' ) {
479
+ $sort_type = SORT_NUMERIC;
480
+ } elseif ( $this->sort_type == 'string' ) {
481
+ $sort_type = SORT_STRING;
482
+ }
483
+ ( $this->sort_reverse ) ? krsort($rows, $sort_type) : ksort($rows, $sort_type) ;
484
+ if ( $this->offset !== null || $this->limit !== null ) {
485
+ $rows = array_slice($rows, ($this->offset === null ? 0 : $this->offset) , $this->limit, true);
486
+ }
487
+ }
488
+ if ( !$this->keep_file_data ) {
489
+ $this->file_data = null;
490
+ }
491
+ return $rows;
492
+ }
493
+
494
+ /**
495
+ * Create CSV data from array
496
+ * @param data 2D array with data
497
+ * @param fields field names
498
+ * @param append if true, field names will not be output
499
+ * @param is_php if a php die() call should be put on the first
500
+ * line of the file, this is later ignored when read.
501
+ * @param delimiter field delimiter to use
502
+ * @return CSV data (text string)
503
+ */
504
+ function unparse ( $data = array(), $fields = array(), $append = false , $is_php = false, $delimiter = null) {
505
+ if ( !is_array($data) || empty($data) ) $data = &$this->data;
506
+ if ( !is_array($fields) || empty($fields) ) $fields = &$this->titles;
507
+ if ( $delimiter === null ) $delimiter = $this->delimiter;
508
+
509
+ $string = ( $is_php ) ? "<?php header('Status: 403'); die(' '); ?>".$this->linefeed : '' ;
510
+ $entry = array();
511
+
512
+ // create heading
513
+ if ( $this->heading && !$append && !empty($fields) ) {
514
+ foreach( $fields as $key => $value ) {
515
+ $entry[] = $this->_enclose_value($value);
516
+ }
517
+ $string .= implode($delimiter, $entry).$this->linefeed;
518
+ $entry = array();
519
+ }
520
+
521
+ // create data
522
+ foreach( $data as $key => $row ) {
523
+ foreach( $row as $field => $value ) {
524
+ $entry[] = $this->_enclose_value($value);
525
+ }
526
+ $string .= implode($delimiter, $entry).$this->linefeed;
527
+ $entry = array();
528
+ }
529
+
530
+ return $string;
531
+ }
532
+
533
+ /**
534
+ * Load local file or string
535
+ * @param input local CSV file
536
+ * @return true or false
537
+ */
538
+ function load_data ($input = null) {
539
+ $data = null;
540
+ $file = null;
541
+ if ( $input === null ) {
542
+ $file = $this->file;
543
+ } elseif ( file_exists($input) ) {
544
+ $file = $input;
545
+ } else {
546
+ $data = $input;
547
+ }
548
+ if ( !empty($data) || $data = $this->_rfile($file) ) {
549
+ if ( $this->file != $file ) $this->file = $file;
550
+ if ( preg_match('/\.php$/i', $file) && preg_match('/<\?.*?\?>(.*)/ims', $data, $strip) ) {
551
+ $data = ltrim($strip[1]);
552
+ }
553
+ if ( $this->convert_encoding ) $data = iconv($this->input_encoding, $this->output_encoding, $data);
554
+ if ( substr($data, -1) != "\n" ) $data .= "\n";
555
+ $this->file_data = &$data;
556
+ return true;
557
+ }
558
+ return false;
559
+ }
560
+
561
+
562
+ // ==============================================
563
+ // ----- [ Internal Functions ] -----------------
564
+ // ==============================================
565
+
566
+ /**
567
+ * Validate a row against specified conditions
568
+ * @param row array with values from a row
569
+ * @param conditions specified conditions that the row must match
570
+ * @return true of false
571
+ */
572
+ function _validate_row_conditions ($row = array(), $conditions = null) {
573
+ if ( !empty($row) ) {
574
+ if ( !empty($conditions) ) {
575
+ $conditions = (strpos($conditions, ' OR ') !== false) ? explode(' OR ', $conditions) : array($conditions) ;
576
+ $or = '';
577
+ foreach( $conditions as $key => $value ) {
578
+ if ( strpos($value, ' AND ') !== false ) {
579
+ $value = explode(' AND ', $value);
580
+ $and = '';
581
+ foreach( $value as $k => $v ) {
582
+ $and .= $this->_validate_row_condition($row, $v);
583
+ }
584
+ $or .= (strpos($and, '0') !== false) ? '0' : '1' ;
585
+ } else {
586
+ $or .= $this->_validate_row_condition($row, $value);
587
+ }
588
+ }
589
+ return (strpos($or, '1') !== false) ? true : false ;
590
+ }
591
+ return true;
592
+ }
593
+ return false;
594
+ }
595
+
596
+ /**
597
+ * Validate a row against a single condition
598
+ * @param row array with values from a row
599
+ * @param condition specified condition that the row must match
600
+ * @return true of false
601
+ */
602
+ function _validate_row_condition ($row, $condition) {
603
+ $operators = array(
604
+ '=', 'equals', 'is',
605
+ '!=', 'is not',
606
+ '<', 'is less than',
607
+ '>', 'is greater than',
608
+ '<=', 'is less than or equals',
609
+ '>=', 'is greater than or equals',
610
+ 'contains',
611
+ 'does not contain',
612
+ );
613
+ $operators_regex = array();
614
+ foreach( $operators as $value ) {
615
+ $operators_regex[] = preg_quote($value, '/');
616
+ }
617
+ $operators_regex = implode('|', $operators_regex);
618
+ if ( preg_match('/^(.+) ('.$operators_regex.') (.+)$/i', trim($condition), $capture) ) {
619
+ $field = $capture[1];
620
+ $op = $capture[2];
621
+ $value = $capture[3];
622
+ if ( preg_match('/^([\'\"]{1})(.*)([\'\"]{1})$/i', $value, $capture) ) {
623
+ if ( $capture[1] == $capture[3] ) {
624
+ $value = $capture[2];
625
+ $value = str_replace("\\n", "\n", $value);
626
+ $value = str_replace("\\r", "\r", $value);
627
+ $value = str_replace("\\t", "\t", $value);
628
+ $value = stripslashes($value);
629
+ }
630
+ }
631
+ if ( array_key_exists($field, $row) ) {
632
+ if ( ($op == '=' || $op == 'equals' || $op == 'is') && $row[$field] == $value ) {
633
+ return '1';
634
+ } elseif ( ($op == '!=' || $op == 'is not') && $row[$field] != $value ) {
635
+ return '1';
636
+ } elseif ( ($op == '<' || $op == 'is less than' ) && $row[$field] < $value ) {
637
+ return '1';
638
+ } elseif ( ($op == '>' || $op == 'is greater than') && $row[$field] > $value ) {
639
+ return '1';
640
+ } elseif ( ($op == '<=' || $op == 'is less than or equals' ) && $row[$field] <= $value ) {
641
+ return '1';
642
+ } elseif ( ($op == '>=' || $op == 'is greater than or equals') && $row[$field] >= $value ) {
643
+ return '1';
644
+ } elseif ( $op == 'contains' && preg_match('/'.preg_quote($value, '/').'/i', $row[$field]) ) {
645
+ return '1';
646
+ } elseif ( $op == 'does not contain' && !preg_match('/'.preg_quote($value, '/').'/i', $row[$field]) ) {
647
+ return '1';
648
+ } else {
649
+ return '0';
650
+ }
651
+ }
652
+ }
653
+ return '1';
654
+ }
655
+
656
+ /**
657
+ * Validates if the row is within the offset or not if sorting is disabled
658
+ * @param current_row the current row number being processed
659
+ * @return true of false
660
+ */
661
+ function _validate_offset ($current_row) {
662
+ if ( $this->sort_by === null && $this->offset !== null && $current_row < $this->offset ) return false;
663
+ return true;
664
+ }
665
+
666
+ /**
667
+ * Enclose values if needed
668
+ * - only used by unparse()
669
+ * @param value string to process
670
+ * @return Processed value
671
+ */
672
+ function _enclose_value ($value = null) {
673
+ if ( $value !== null && $value != '' ) {
674
+ $delimiter = preg_quote($this->delimiter, '/');
675
+ $enclosure = preg_quote($this->enclosure, '/');
676
+ if ( preg_match("/".$delimiter."|".$enclosure."|\n|\r/i", $value) || ($value{0} == ' ' || substr($value, -1) == ' ') ) {
677
+ $value = str_replace($this->enclosure, $this->enclosure.$this->enclosure, $value);
678
+ $value = $this->enclosure.$value.$this->enclosure;
679
+ }
680
+ }
681
+ return $value;
682
+ }
683
+
684
+ /**
685
+ * Check file data
686
+ * @param file local filename
687
+ * @return true or false
688
+ */
689
+ function _check_data ($file = null) {
690
+ if ( empty($this->file_data) ) {
691
+ if ( $file === null ) $file = $this->file;
692
+ return $this->load_data($file);
693
+ }
694
+ return true;
695
+ }
696
+
697
+
698
+ /**
699
+ * Check if passed info might be delimiter
700
+ * - only used by find_delimiter()
701
+ * @return special string used for delimiter selection, or false
702
+ */
703
+ function _check_count ($char, $array, $depth, $preferred) {
704
+ if ( $depth == count($array) ) {
705
+ $first = null;
706
+ $equal = null;
707
+ $almost = false;
708
+ foreach( $array as $key => $value ) {
709
+ if ( $first == null ) {
710
+ $first = $value;
711
+ } elseif ( $value == $first && $equal !== false) {
712
+ $equal = true;
713
+ } elseif ( $value == $first+1 && $equal !== false ) {
714
+ $equal = true;
715
+ $almost = true;
716
+ } else {
717
+ $equal = false;
718
+ }
719
+ }
720
+
721
+ if ( $equal ) {
722
+ $match = ( $almost ) ? 2 : 1 ;
723
+ $pref = strpos($preferred, $char);
724
+ $pref = ( $pref !== false ) ? str_pad($pref, 3, '0', STR_PAD_LEFT) : '999' ;
725
+ return $pref.$match.'.'.(99999 - str_pad($first, 5, '0', STR_PAD_LEFT));
726
+ } else return false;
727
+ }
728
+ }
729
+
730
+ /**
731
+ * Read local file
732
+ * @param file local filename
733
+ * @return Data from file, or false on failure
734
+ */
735
+ function _rfile ($file = null) {
736
+ if ( is_readable($file) ) {
737
+ if ( !($fh = fopen($file, 'r')) ) return false;
738
+ $data = fread($fh, filesize($file));
739
+ fclose($fh);
740
+ return $data;
741
+ }
742
+ return false;
743
+ }
744
+
745
+ /**
746
+ * Write to local file
747
+ * @param file local filename
748
+ * @param string data to write to file
749
+ * @param mode fopen() mode
750
+ * @param lock flock() mode
751
+ * @return true or false
752
+ */
753
+ function _wfile ($file, $string = '', $mode = 'wb', $lock = 2) {
754
+ if ( $fp = fopen($file, $mode) ) {
755
+ flock($fp, $lock);
756
+ $re = fwrite($fp, $string);
757
+ $re2 = fclose($fp);
758
+ if ( $re != false && $re2 != false ) return true;
759
+ }
760
+ return false;
761
+ }
762
+
763
+ }
764
+
765
+ ?>
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.0
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.0';
16
 
17
  var $export_formats = array();
18
  var $delimiters = array();
@@ -34,7 +34,9 @@ class WP_Table_Reloaded_Export {
34
  $this->delimiters = array(
35
  ';' => __( '; (semicolon)', WP_TABLE_RELOADED_TEXTDOMAIN ),
36
  ',' => __( ', (comma)', WP_TABLE_RELOADED_TEXTDOMAIN ),
37
- ':' => __( ': (colon)', WP_TABLE_RELOADED_TEXTDOMAIN )
 
 
38
  );
39
  }
40
 
@@ -50,21 +52,10 @@ class WP_Table_Reloaded_Export {
50
  switch( $this->export_format ) {
51
  case 'csv':
52
  if ( 0 < $rows && 0 < $cols) {
53
- if ( function_exists( 'fputcsv' ) ) { // introduced in PHP 5.1.0
54
- $temp_file = tempnam( $this->get_temp_dir(), 'export_table_' . $this->table_to_export['id'] . '_' );
55
- $handle = fopen( $temp_file, 'w' );
56
- foreach ( $data as $row_idx => $row ) {
57
- $row = array_map( 'stripslashes', $row );
58
- fputcsv( $handle, $row, $this->delimiter, '"' );
59
- }
60
- fclose( $handle );
61
- $output = file_get_contents( $temp_file );
62
- } else { // should word for all PHP versions, but might not be as good as fputcsv
63
- foreach( $data as $row_idx => $row ) {
64
- $row = array_map( array( &$this, 'csv_wrap_and_escape' ), $row );
65
- $output .= implode( $this->delimiter, $row ) . "\n";
66
- }
67
- }
68
  }
69
  break;
70
  case 'xml':
@@ -97,13 +88,6 @@ class WP_Table_Reloaded_Export {
97
  $this->exported_table = $output;
98
  }
99
 
100
- // ###################################################################################################################
101
- function csv_wrap_and_escape( $string ) {
102
- $string = stripslashes( $string );
103
- $string = str_replace( '"', '""', $string );
104
- return ( false !== strpos( $string, $this->delimiter ) || false !== strpos( $string, '""' ) ) ? ( '"' . $string . '"' ) : $string;
105
- }
106
-
107
  // ###################################################################################################################
108
  function xml_wrap_and_escape( $string ) {
109
  $string = stripslashes( $string );
@@ -117,19 +101,13 @@ class WP_Table_Reloaded_Export {
117
  $string = stripslashes( $string );
118
  return "\t\t<td>" . $string . "</td>\n";
119
  }
120
-
121
  // ###################################################################################################################
122
- function get_temp_dir() {
123
- if ( function_exists( 'sys_get_temp_dir' ) ) { return sys_get_temp_dir(); } // introduced in PHP 5.2.1
124
-
125
- if ( !empty($_ENV['TMP'] ) ) { return realpath( $_ENV['TMP'] ); }
126
- if ( !empty($_ENV['TMPDIR'] ) ) { return realpath( $_ENV['TMPDIR'] ); }
127
- if ( !empty($_ENV['TEMP'] ) ) { return realpath( $_ENV['TEMP'] ); }
128
-
129
- $tempfile = tempnam( uniqid( rand(), true ), '' );
130
- if ( file_exists( $tempfile ) ) {
131
- unlink( $tempfile );
132
- return realpath( dirname( $tempfile ) );
133
  }
134
  }
135
 
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
  class WP_Table_Reloaded_Export {
13
 
14
  // ###################################################################################################################
15
+ var $export_class_version = '1.2';
16
 
17
  var $export_formats = array();
18
  var $delimiters = array();
34
  $this->delimiters = array(
35
  ';' => __( '; (semicolon)', WP_TABLE_RELOADED_TEXTDOMAIN ),
36
  ',' => __( ', (comma)', WP_TABLE_RELOADED_TEXTDOMAIN ),
37
+ ':' => __( ': (colon)', WP_TABLE_RELOADED_TEXTDOMAIN ),
38
+ '.' => __( '. (dot)', WP_TABLE_RELOADED_TEXTDOMAIN ),
39
+ '|' => __( '| (pipe)', WP_TABLE_RELOADED_TEXTDOMAIN )
40
  );
41
  }
42
 
52
  switch( $this->export_format ) {
53
  case 'csv':
54
  if ( 0 < $rows && 0 < $cols) {
55
+ $parseCSV = $this->create_class_instance( 'parseCSV', 'parsecsv.class.php' );
56
+ $parseCSV->output_filename = null; // no download initiated by parseCSV class
57
+ // might need to do something about encoding here as well
58
+ $output = $parseCSV->output( null, $data, array(), $this->delimiter );
 
 
 
 
 
 
 
 
 
 
 
59
  }
60
  break;
61
  case 'xml':
88
  $this->exported_table = $output;
89
  }
90
 
 
 
 
 
 
 
 
91
  // ###################################################################################################################
92
  function xml_wrap_and_escape( $string ) {
93
  $string = stripslashes( $string );
101
  $string = stripslashes( $string );
102
  return "\t\t<td>" . $string . "</td>\n";
103
  }
104
+
105
  // ###################################################################################################################
106
+ function create_class_instance( $class, $file) {
107
+ if ( !class_exists( $class ) ) {
108
+ include_once ( WP_TABLE_RELOADED_ABSPATH . 'php/' . $file );
109
+ if ( class_exists( $class ) )
110
+ return new $class;
 
 
 
 
 
 
111
  }
112
  }
113
 
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.0
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
@@ -12,37 +12,34 @@ Author URI: http://tobias.baethge.com/
12
  class WP_Table_Reloaded_Import {
13
 
14
  // ###################################################################################################################
15
- var $import_class_version = '1.0';
16
 
17
- var $delimiters = array();
18
  var $import_formats = array();
19
 
 
20
  var $filename = '';
21
  var $tempname = '';
22
  var $mimetype = '';
23
- var $delimiter = ';';
 
24
  var $import_format = '';
25
  var $import_from = '';
26
  var $wp_table_id = '';
 
 
27
  var $error = false;
28
  var $imported_table = array();
29
-
30
 
31
  // ###################################################################################################################
32
  // constructor class
33
  function WP_Table_Reloaded_Import() {
34
- // initiate here, because function call __() not allowed outside function
35
- $this->delimiters = array(
36
- ';' => __( '; (semicolon)', WP_TABLE_RELOADED_TEXTDOMAIN ),
37
- ',' => __( ', (comma)', WP_TABLE_RELOADED_TEXTDOMAIN ),
38
- ':' => __( ': (colon)', WP_TABLE_RELOADED_TEXTDOMAIN )
39
- );
40
  $this->import_formats = array(
41
  'csv' => __( 'CSV - Character-Separated Values', WP_TABLE_RELOADED_TEXTDOMAIN ),
42
  'html' => __( 'HTML - Hypertext Markup Language', WP_TABLE_RELOADED_TEXTDOMAIN ),
43
  'xml' => __( 'XML - eXtended Markup Language', WP_TABLE_RELOADED_TEXTDOMAIN )
44
  // don't have this show up in list, as handled in separate table
45
- //'wp_table' => _ _( 'wp-Table plugin database', WP_TABLE_RELOADED_TEXTDOMAIN )
46
  );
47
  }
48
 
@@ -69,13 +66,22 @@ class WP_Table_Reloaded_Import {
69
  // ###################################################################################################################
70
  function import_csv() {
71
  $table = $this->get_table_meta();
 
 
72
 
73
  if ( 'form-field' == $this->import_from )
74
- $this->tempname = $this->csv_string_to_file( $this->import_data );
 
 
75
 
76
- $temp_data = $this->csv_file_to_array( $this->tempname, $this->delimiter, '"' );
 
 
 
 
 
77
 
78
- $table['data'] = $this->pad_array_to_max_cols( $temp_data );
79
  $this->imported_table = $table;
80
  }
81
 
@@ -83,12 +89,7 @@ class WP_Table_Reloaded_Import {
83
  function import_html() {
84
  $table = $this->get_table_meta();
85
 
86
- if ( !class_exists( 'simplexml' ) ) {
87
- include_once ( WP_TABLE_RELOADED_ABSPATH . 'php/' . 'simplexml.class.php' );
88
- if ( class_exists( 'simplexml' ) ) {
89
- $simpleXML = new simplexml();
90
- }
91
- }
92
 
93
  if ( 'form-field' == $this->import_from )
94
  $temp_data = $this->import_data;
@@ -144,12 +145,7 @@ class WP_Table_Reloaded_Import {
144
  function import_xml() {
145
  $table = $this->get_table_meta();
146
 
147
- if ( !class_exists( 'simplexml' ) ) {
148
- include_once ( WP_TABLE_RELOADED_ABSPATH . 'php/' . 'simplexml.class.php' );
149
- if ( class_exists( 'simplexml' ) ) {
150
- $simpleXML = new simplexml();
151
- }
152
- }
153
 
154
  if ( 'form-field' == $this->import_from )
155
  $temp_data = $simpleXML->xml_load_string( $this->import_data, 'array' );
@@ -217,36 +213,10 @@ class WP_Table_Reloaded_Import {
217
  }
218
 
219
  // ###################################################################################################################
220
- function unlink_csv_file() {
221
  unlink( $this->tempname );
222
  }
223
 
224
- // ###################################################################################################################
225
- function csv_file_to_array( $filename, $delimiter = ';', $enclosure = '"' ) {
226
- $data = array();
227
- $handle = fopen( $filename, 'r' );
228
- while ( false !== ( $read_line = fgetcsv( $handle, 1024, $delimiter, $enclosure ) ) ) {
229
- $data[] = $this->add_slashes( $read_line );
230
- }
231
- fclose($handle);
232
- return $data;
233
- }
234
-
235
- // ###################################################################################################################
236
- function csv_string_to_file( $data ) {
237
- $temp_file_name = tempnam( $this->get_temp_dir(), 'import_table_' );
238
-
239
- if ( function_exists( 'file_put_contents' ) ) {
240
- file_put_contents( $temp_file_name, $data );
241
- } else {
242
- $handle = fopen( $temp_file_name, 'w' );
243
- $bytes = fwrite( $handle, $data );
244
- fclose( $handle );
245
- }
246
-
247
- return $temp_file_name;
248
- }
249
-
250
  // ###################################################################################################################
251
  // make sure array is rectangular with $max_cols columns in every row
252
  function pad_array_to_max_cols( $array_to_pad ){
@@ -283,19 +253,13 @@ class WP_Table_Reloaded_Import {
283
  $table['description'] .= ( false == empty( $this->mimetype ) ) ? ' (' . $this->mimetype . ')' : '';
284
  return $table;
285
  }
286
-
287
- // ###################################################################################################################
288
- function get_temp_dir() {
289
- if ( function_exists( 'sys_get_temp_dir' ) ) { return sys_get_temp_dir(); } // introduced in PHP 5.2.1
290
 
291
- if ( !empty($_ENV['TMP'] ) ) { return realpath( $_ENV['TMP'] ); }
292
- if ( !empty($_ENV['TMPDIR'] ) ) { return realpath( $_ENV['TMPDIR'] ); }
293
- if ( !empty($_ENV['TEMP'] ) ) { return realpath( $_ENV['TEMP'] ); }
294
-
295
- $tempfile = tempnam( uniqid( rand(), true ), '' );
296
- if ( file_exists( $tempfile ) ) {
297
- unlink( $tempfile );
298
- return realpath( dirname( $tempfile ) );
299
  }
300
  }
301
 
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
  class WP_Table_Reloaded_Import {
13
 
14
  // ###################################################################################################################
15
+ var $import_class_version = '1.2';
16
 
17
+ // possible import formats
18
  var $import_formats = array();
19
 
20
+ // used if file uploaded
21
  var $filename = '';
22
  var $tempname = '';
23
  var $mimetype = '';
24
+
25
+ // filled before import
26
  var $import_format = '';
27
  var $import_from = '';
28
  var $wp_table_id = '';
29
+
30
+ // return values
31
  var $error = false;
32
  var $imported_table = array();
 
33
 
34
  // ###################################################################################################################
35
  // constructor class
36
  function WP_Table_Reloaded_Import() {
 
 
 
 
 
 
37
  $this->import_formats = array(
38
  'csv' => __( 'CSV - Character-Separated Values', WP_TABLE_RELOADED_TEXTDOMAIN ),
39
  'html' => __( 'HTML - Hypertext Markup Language', WP_TABLE_RELOADED_TEXTDOMAIN ),
40
  'xml' => __( 'XML - eXtended Markup Language', WP_TABLE_RELOADED_TEXTDOMAIN )
41
  // don't have this show up in list, as handled in separate table
42
+ // 'wp_table' => 'wp-Table plugin database'
43
  );
44
  }
45
 
66
  // ###################################################################################################################
67
  function import_csv() {
68
  $table = $this->get_table_meta();
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
79
+ $parseCSV->load_data( $temp_data );
80
+ $parseCSV->auto(); // let parsecsv do its magic (determine delimiter and parse the data)
81
+
82
+ $temp_table = $parseCSV->data;
83
 
84
+ $table['data'] = $this->pad_array_to_max_cols( $temp_table );
85
  $this->imported_table = $table;
86
  }
87
 
89
  function import_html() {
90
  $table = $this->get_table_meta();
91
 
92
+ $simpleXML = $this->create_class_instance( 'simplexml', 'simplexml.class.php' );
 
 
 
 
 
93
 
94
  if ( 'form-field' == $this->import_from )
95
  $temp_data = $this->import_data;
145
  function import_xml() {
146
  $table = $this->get_table_meta();
147
 
148
+ $simpleXML = $this->create_class_instance( 'simplexml', 'simplexml.class.php' );
 
 
 
 
 
149
 
150
  if ( 'form-field' == $this->import_from )
151
  $temp_data = $simpleXML->xml_load_string( $this->import_data, 'array' );
213
  }
214
 
215
  // ###################################################################################################################
216
+ function unlink_uploaded_file() {
217
  unlink( $this->tempname );
218
  }
219
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
220
  // ###################################################################################################################
221
  // make sure array is rectangular with $max_cols columns in every row
222
  function pad_array_to_max_cols( $array_to_pad ){
253
  $table['description'] .= ( false == empty( $this->mimetype ) ) ? ' (' . $this->mimetype . ')' : '';
254
  return $table;
255
  }
 
 
 
 
256
 
257
+ // ###################################################################################################################
258
+ function create_class_instance( $class, $file) {
259
+ if ( !class_exists( $class ) ) {
260
+ include_once ( WP_TABLE_RELOADED_ABSPATH . 'php/' . $file );
261
+ if ( class_exists( $class ) )
262
+ return new $class;
 
 
263
  }
264
  }
265
 
readme.txt CHANGED
@@ -4,15 +4,15 @@ 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.1
8
-
9
- This plugin allows you to create and manage tables in your WP's admin-area. You can then show them in your posts, on pages or in text widgets by using a shortcode.
10
 
11
  == Description ==
12
 
13
- **IMPORTANT: PLEASE MAKE SURE TO HAVE A BACKUP OF YOUR CSS-STYLESHEET (IF YOU MADE ANY CHANGES TO IT) AS IT WILL BE OVERWRITTEN DURING THE AUTOMATIC UPDATE BY WORDPRESS!**
14
 
15
- This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode. The plugin is a completely rewritten and extended version of Alex Rabe's "wp-Table" and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin. You may also have both plugins installed at the same time and you can also import your tables from the wp-Table plugin!
16
 
17
  = More information =
18
  Please see the English plugin website http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/ .
@@ -65,7 +65,7 @@ If you find a bug or have a feature request, please don
65
  You would help a lot if you could add an issue ticket in the [issue tracker on Google Code](http://code.google.com/p/wp-table-reloaded/).
66
  You may also post it in the comments on the plugin website.
67
 
68
- For other help or support questions, please use the [WordPress Support Forums](http://wordpress.org/support/). Please [open a new topic](http://wordpress.org/tags/wp-table-reloaded?forum_id=10#postform) there (with the tag "wp-table-reloaded") and email me a link to the thread (or post it as a comment on the plugin website). Thank you!
69
  You may also make feature requests using this method! Don't be shy!
70
 
71
  = Requirements? =
@@ -75,11 +75,10 @@ In short: WordPress 2.5 or higher
75
  = Languages and Localization? =
76
 
77
  The plugin currently includes the following languages:
78
- Albanian, English, French, German, Russian, Spanish, Swedish and Turkish.
79
-
80
- I'd really appreciate it, if you would translate the plugin into your language! Using Heiko Rabe's WordPress plugin [Codestyling Localization](http://www.code-styling.de/english/development/wordpress-plugin-codestyling-localization-en) that really is as easy as pie. Just install the plugin, add your language, create the .po-file, translate the strings in the comfortable editor and create the .mo-file. It will automatically be saved in WP-Table Reloaded's plugin folder. If you send me the .mo- and .po-file, I will gladly include them into future plugin releases.
81
- There is also a .pot-file available to use in the "languages subfolder.
82
 
 
 
83
 
84
  = Where can I get more information? =
85
 
@@ -91,7 +90,9 @@ Die Webseite des Plugins ist auch [auf Deutsch](http://tobias.baethge.com/wordpr
91
 
92
  After installing the plugin, you can add, import, export, edit, copy, delete, ... tables via the "WP-Table Reloaded" screen which appears under the "Tools" section in your Admin menu.
93
  Everything should be self-explaining there.
 
94
  To show one of your tables in a post, on a page or in a text widget, just include the shortcode [table id=&lt;the-id&gt; /] to your post/page/text-widget, where &lt;the-id&gt is the ID of your table (can be found on the left side of the "List tables" screen.)
 
95
  After that you might want to change the style of the table. You can do this either by adding CSS to your theme's CSS stylesheet (probably style.css) or by entering it into the box on the "Plugin Options" screen.
96
  You may also add certain features (like table-sorting, alternating row colors, print name and/or description, ...) by checking the appropriate options in the "Edit table" screen.
97
 
@@ -100,7 +101,7 @@ You may also add certain features (like table-sorting, alternating row colors, p
100
  Thanks go to [Alex Rabe](http://alexrabe.boelinger.com/) for the initial wp-Table plugin!
101
  Thanks go to [Christian Bach](http://tablesorter.com/docs/) for the TableSorter-jQuery-plugin.
102
  Thanks to all language file translators!
103
- Thanks to every supporter and bug reporter!
104
 
105
  == License ==
106
 
@@ -110,6 +111,7 @@ I kindly ask you for link somewhere on your website http://tobias.baethge.com/.
110
 
111
  == Changelog ==
112
 
 
113
  * 1.1: changed way of CSS handling (database option instead of file), fixed bug for users with PHP4 (certain function doesn't exist there), added two additional shortcode parameters, added buttons to easily add links and images
114
  * 1.0(.1): Language files, more import/export (including directly from wp-Table!), shortcode supported in text widgets
115
  * 0.9.2: fixed bug with plugin deactivation hook, added missing css-file
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
8
+
9
+ WP-Table Reloaded enables you to create and manage tables in your WPs 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
 
11
  == Description ==
12
 
13
+ 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.
14
 
15
+ The plugin is a completely rewritten and extended version of Alex Rabe's "wp-Table" and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin. You may also have both plugins installed at the same time and you can also import your tables from the wp-Table plugin!
16
 
17
  = More information =
18
  Please see the English plugin website http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/ .
65
  You would help a lot if you could add an issue ticket in the [issue tracker on Google Code](http://code.google.com/p/wp-table-reloaded/).
66
  You may also post it in the comments on the plugin website.
67
 
68
+ For other help or support questions (especially with CSS), please use the [WordPress Support Forums](http://wordpress.org/support/). Please [open a new topic](http://wordpress.org/tags/wp-table-reloaded?forum_id=10#postform) there (with the tag "wp-table-reloaded") and email me a link to the thread (or post it as a comment on the plugin website). Thank you!
69
  You may also make feature requests using this method! Don't be shy!
70
 
71
  = Requirements? =
75
  = Languages and Localization? =
76
 
77
  The plugin currently includes the following languages:
78
+ Albanian, Czech, English, French, German, Russian, Spanish, Swedish and Turkish.
 
 
 
79
 
80
+ I'd really appreciate it, if you would translate the plugin into your language! Using Heiko Rabe's WordPress plugin [Codestyling Localization](http://www.code-styling.de/english/development/wordpress-plugin-codestyling-localization-en/) that really is as easy as pie. Just install the plugin, add your language, create the .po-file, translate the strings in the comfortable editor and create the .mo-file. It will automatically be saved in WP-Table Reloaded's plugin folder. If you send me the .mo- and .po-file, I will gladly include them into future plugin releases.
81
+ There is also a .pot-file available to use in the "languages" subfolder.
82
 
83
  = Where can I get more information? =
84
 
90
 
91
  After installing the plugin, you can add, import, export, edit, copy, delete, ... tables via the "WP-Table Reloaded" screen which appears under the "Tools" section in your Admin menu.
92
  Everything should be self-explaining there.
93
+
94
  To show one of your tables in a post, on a page or in a text widget, just include the shortcode [table id=&lt;the-id&gt; /] to your post/page/text-widget, where &lt;the-id&gt is the ID of your table (can be found on the left side of the "List tables" screen.)
95
+
96
  After that you might want to change the style of the table. You can do this either by adding CSS to your theme's CSS stylesheet (probably style.css) or by entering it into the box on the "Plugin Options" screen.
97
  You may also add certain features (like table-sorting, alternating row colors, print name and/or description, ...) by checking the appropriate options in the "Edit table" screen.
98
 
101
  Thanks go to [Alex Rabe](http://alexrabe.boelinger.com/) for the initial wp-Table plugin!
102
  Thanks go to [Christian Bach](http://tablesorter.com/docs/) for the TableSorter-jQuery-plugin.
103
  Thanks to all language file translators!
104
+ Thanks to every donor, supporter and bug reporter!
105
 
106
  == License ==
107
 
111
 
112
  == Changelog ==
113
 
114
+ * 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
115
  * 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
116
  * 1.0(.1): Language files, more import/export (including directly from wp-Table!), shortcode supported in text widgets
117
  * 0.9.2: fixed bug with plugin deactivation hook, added missing css-file
screenshot-1.png CHANGED
Binary file
screenshot-2.png CHANGED
Binary file
screenshot-3.png CHANGED
Binary file
screenshot-4.png CHANGED
Binary file
screenshot-5.png CHANGED
Binary file
screenshot-6.png CHANGED
Binary file
wp-table-reloaded-admin.php CHANGED
@@ -2,16 +2,18 @@
2
  /*
3
  File Name: WP-Table Reloaded - Admin Class (see main file wp-table-reloaded.php)
4
  Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
5
- Description: This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode. The plugin is a completely rewritten and extended version of Alex Rabe's "wp-Table" and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin.
6
- Version: 1.1
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
10
 
 
 
11
  class WP_Table_Reloaded_Admin {
12
 
13
  // ###################################################################################################################
14
- var $plugin_version = '1.1';
15
  // nonce for security of links/forms, try to prevent "CSRF"
16
  var $nonce_base = 'wp-table-reloaded-nonce';
17
  // names for the options which are stored in the WP database
@@ -21,7 +23,7 @@ class WP_Table_Reloaded_Admin {
21
  'table' => 'wp_table_reloaded_data'
22
  );
23
  // allowed actions in this class
24
- var $allowed_actions = array( 'list', 'add', 'edit', 'copy', 'delete', 'insert', 'import', 'export', 'options', 'uninstall', 'info' );
25
 
26
  // init vars
27
  var $tables = array();
@@ -54,28 +56,42 @@ class WP_Table_Reloaded_Admin {
54
  // class instances
55
  var $export_instance;
56
  var $import_instance;
 
 
 
57
 
58
  // ###################################################################################################################
59
  // add admin-page to sidebar navigation, function called by PHP when class is constructed
60
  function WP_Table_Reloaded_Admin() {
 
 
 
61
  add_action( 'admin_menu', array( &$this, 'add_manage_page' ) );
62
 
 
 
 
 
 
63
  // have to check for possible export file download request this early,
64
  // because otherwise http-headers will be sent by WP before we can send download headers
65
  if ( isset( $_POST['wp_table_reloaded_download_export_file'] ) ) {
66
  add_action('init', array( &$this, 'do_action_export' ) );
67
  }
 
 
 
 
 
 
68
  }
69
 
70
  // ###################################################################################################################
71
  // add page, and what happens when page is loaded or shown
72
  function add_manage_page() {
73
  $min_needed_capability = 'publish_posts'; // user needs at least this capability to show WP-Table Reloaded config page
74
- $hook = add_management_page( 'WP-Table Reloaded', 'WP-Table Reloaded', $min_needed_capability, 'wp_table_reloaded_manage_page', array( &$this, 'show_manage_page' ) );
75
- add_action('load-' . $hook, array( &$this, 'load_manage_page' ) );
76
-
77
- if ( true == function_exists( 'add_contextual_help' ) ) // then WP version is >= 2.7
78
- add_contextual_help( $hook, $this->get_contextual_help_string() );
79
  }
80
 
81
  // ###################################################################################################################
@@ -83,21 +99,21 @@ class WP_Table_Reloaded_Admin {
83
  // all of this will be done before the page is shown by show_manage_page()
84
  function load_manage_page() {
85
  // load js and css for admin
86
- $this->add_manage_page_js();
 
87
  $this->add_manage_page_css();
88
 
89
- // init language support (add later)
90
- define( 'WP_TABLE_RELOADED_TEXTDOMAIN', 'wp-table-reloaded' );
91
  $this->init_language_support();
92
-
93
- // init plugin (means: load plugin options and existing tables)
94
- $this->init_plugin();
95
  }
96
 
97
  // ###################################################################################################################
98
  function show_manage_page() {
99
  // get and check action parameter from passed variables
100
- $action = ( isset( $_REQUEST['action'] ) and !empty( $_REQUEST['action'] ) ) ? $_REQUEST['action'] : 'list';
101
  // check if action is in allowed actions and if method is callable, if yes, call it
102
  if ( in_array( $action, $this->allowed_actions ) && is_callable( array( &$this, 'do_action_' . $action ) ) )
103
  call_user_func( array( &$this, 'do_action_' . $action ) );
@@ -192,7 +208,25 @@ class WP_Table_Reloaded_Admin {
192
  unset($temp_col);
193
  }
194
  $this->save_table( $table );
195
- $message = __( 'Columns swapped successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
196
  break;
197
  default:
198
  $this->do_action_list();
@@ -211,6 +245,61 @@ class WP_Table_Reloaded_Admin {
211
  }
212
  }
213
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
214
  // ###################################################################################################################
215
  function do_action_copy() {
216
  if ( isset( $_GET['table_id'] ) ) {
@@ -330,11 +419,10 @@ class WP_Table_Reloaded_Admin {
330
  $this->import_instance->mimetype = $_FILES['import_file']['type'];
331
  $this->import_instance->import_from = 'file-upload';
332
  $this->import_instance->import_format = $_POST['import_format'];
333
- $this->import_instance->delimiter = $_POST['delimiter'];
334
  $this->import_instance->import_table();
335
  $error = $this->import_instance->error;
336
  $imported_table = $this->import_instance->imported_table;
337
- $this->import_instance->unlink_csv_file();
338
  } elseif ( isset( $_POST['import_data'] ) ) {
339
  $this->import_instance->tempname = '';
340
  $this->import_instance->filename = __( 'Imported Table', WP_TABLE_RELOADED_TEXTDOMAIN );
@@ -342,7 +430,6 @@ class WP_Table_Reloaded_Admin {
342
  $this->import_instance->import_from = 'form-field';
343
  $this->import_instance->import_data = stripslashes( $_POST['import_data'] );
344
  $this->import_instance->import_format = $_POST['import_format'];
345
- $this->import_instance->delimiter = $_POST['delimiter'];
346
  $this->import_instance->import_table();
347
  $error = $this->import_instance->error;
348
  $imported_table = $this->import_instance->imported_table;
@@ -458,6 +545,64 @@ class WP_Table_Reloaded_Admin {
458
  function do_action_info() {
459
  $this->print_plugin_info_form();
460
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
461
 
462
  // ###################################################################################################################
463
  // ########################################## ####################################################
@@ -471,15 +616,18 @@ class WP_Table_Reloaded_Admin {
471
  $this->print_page_header( __( 'List of Tables', WP_TABLE_RELOADED_TEXTDOMAIN ) );
472
  $this->print_submenu_navigation( 'list' );
473
  ?>
474
- <div style="clear:both;"><p><?php _e( 'This is a list of all available tables. You may add, edit, copy or delete tables here.', WP_TABLE_RELOADED_TEXTDOMAIN ) ?><br />
475
- <?php _e( '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>', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></p></div>
476
  <?php
477
  if ( 0 < count( $this->tables ) ) {
478
  ?>
479
  <div style="clear:both;">
 
 
480
  <table class="widefat">
481
  <thead>
482
  <tr>
 
483
  <th scope="col"><?php _e( 'ID', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
484
  <th scope="col"><?php _e( 'Table Name', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
485
  <th scope="col"><?php _e( 'Description', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
@@ -505,18 +653,26 @@ class WP_Table_Reloaded_Admin {
505
  $delete_url = $this->get_action_url( array( 'action' => 'delete', 'table_id' => $id, 'item' => 'table' ), true );
506
 
507
  echo "<tr{$bg_style}>\n";
508
- echo "\t<th scope=\"row\">{$id}</th>";
 
509
  echo "<td>{$name}</td>";
510
  echo "<td>{$description}</td>";
511
  echo "<td><a href=\"{$edit_url}\">" . __( 'Edit', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>" . " | ";
512
- echo "<a href=\"{$copy_url}\" onclick=\"javascript:return confirm( '".__( 'Do you want to copy this table?', WP_TABLE_RELOADED_TEXTDOMAIN )."' );\">" . __( 'Copy', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>" . " | ";
513
  echo "<a href=\"{$export_url}\">" . __( 'Export', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>" . " | ";
514
- echo "<a href=\"{$delete_url}\" class=\"delete\" onclick=\"javascript:return confirm( '".__( 'The complete table and all content will be erased. Do you really want to delete it?', WP_TABLE_RELOADED_TEXTDOMAIN )."' );\">" . __( 'Delete', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a></td>\n";
515
  echo "</tr>\n";
516
 
517
  }
518
  echo "</tbody>\n";
519
  echo "</table>\n";
 
 
 
 
 
 
 
520
  echo "</div>";
521
  } else { // end if $tables
522
  $add_url = $this->get_action_url( array( 'action' => 'add' ), false );
@@ -579,7 +735,6 @@ class WP_Table_Reloaded_Admin {
579
 
580
  $this->print_page_header( sprintf( __( 'Edit Table "%s"', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->safe_output( $table['name'] ) ) );
581
  $this->print_submenu_navigation( 'edit' );
582
-
583
  ?>
584
  <div style="clear:both;"><p><?php _e( 'You may edit the content of the table here. It is also possible to add or delete columns and rows.', WP_TABLE_RELOADED_TEXTDOMAIN ) ?><br />
585
  <?php echo sprintf( __( 'If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->safe_output( $table_id ) ); ?></p></div>
@@ -613,7 +768,7 @@ class WP_Table_Reloaded_Admin {
613
 
614
  <?php if ( 0 < $cols && 0 < $rows ) { ?>
615
  <div class="postbox">
616
- <h3 class="hndle"><span><?php _e( 'Table Contents', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span></h3>
617
  <div class="inside">
618
  <table class="widefat" style="width:auto;" id="table_contents">
619
  <thead>
@@ -643,7 +798,7 @@ class WP_Table_Reloaded_Admin {
643
  $delete_row_url = $this->get_action_url( array( 'action' => 'delete', 'table_id' => $table['id'], 'item' => 'row', 'element_id' => $row_idx ), true );
644
  echo "\t<td><a href=\"{$insert_row_url}\">" . __( 'Insert Row', WP_TABLE_RELOADED_TEXTDOMAIN )."</a>";
645
  if ( 1 < $rows ) // don't show delete link for last and only row
646
- echo " | <a href=\"{$delete_row_url}\" onclick=\"javascript:return confirm( '".__( 'Do you really want to delete this row?', WP_TABLE_RELOADED_TEXTDOMAIN )."' );\">".__( 'Delete Row', WP_TABLE_RELOADED_TEXTDOMAIN )."</a>";
647
  echo "</td>\n</tr>";
648
  }
649
  ?>
@@ -655,7 +810,7 @@ class WP_Table_Reloaded_Admin {
655
  $delete_col_url = $this->get_action_url( array( 'action' => 'delete', 'table_id' => $table['id'], 'item' => 'col', 'element_id' => $col_idx ), true );
656
  echo "\t<td><a href=\"{$insert_col_url}\">" . __( 'Insert Column', WP_TABLE_RELOADED_TEXTDOMAIN )."</a>";
657
  if ( 1 < $cols ) // don't show delete link for last and only column
658
- echo " | <a href=\"{$delete_col_url}\" onclick=\"javascript:return confirm( '" . __( 'Do you really want to delete this column?', WP_TABLE_RELOADED_TEXTDOMAIN )."' );\">" . __('Delete Column', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
659
  echo "</td>\n";
660
  }
661
  $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
@@ -669,9 +824,9 @@ class WP_Table_Reloaded_Admin {
669
  </div>
670
  <?php } //endif ?>
671
  <div class="postbox">
672
- <h3 class="hndle"><span><?php _e( 'Data Manipulation', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span></h3>
673
  <div class="inside">
674
- <table><tr><td>
675
  <?php if ( 1 < $rows ) { // swap rows form
676
 
677
  $row1_select = '<select name="swap[row][1]">';
@@ -709,62 +864,36 @@ class WP_Table_Reloaded_Admin {
709
  ?>
710
  <input type="submit" name="submit[swap_cols]" class="button-primary" value="<?php _e( 'Swap', WP_TABLE_RELOADED_TEXTDOMAIN ) ?>" />
711
  <?php } // end if form swap cols ?>
712
- </td><td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td><td>
713
- <p class="submit">
714
  <a id="a-insert-link" class="button-primary" href=""><?php _e( 'Insert Link', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a> <a id="a-insert-image" class="button-primary" href=""><?php _e( 'Insert Image', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a>
715
- </p>
716
- </td></tr>
717
- </table>
718
- <script type="text/javascript">
719
- /* <![CDATA[ */
720
- jQuery(document).ready(function($){
721
 
722
- var insert_html = '';
 
 
 
723
 
724
- function add_html() {
725
- var old_value = $(this).val();
726
- var new_value = old_value + insert_html;
727
- $(this).val( new_value );
728
- $("#table_contents input").unbind('click', add_html);
729
- }
730
 
731
- $("#a-insert-link").click(function () {
732
- var link_url = prompt( '<?php _e( 'URL of link to insert', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>' + ':', 'http://' );
733
- if ( link_url ) {
734
- var link_text = prompt( '<?php _e( 'Text of link', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>' + ':', '<?php _e( 'Text of link', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>' );
735
- if ( link_text ) {
736
- insert_html = '<a href="' + link_url + '">' + link_text + '</a>';
737
- if ( confirm( '<?php _e( 'To insert the following link into a cell, just click the cell after closing this dialog.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>' + '\n\n' + insert_html ) ) {
738
- $("#table_contents input").bind('click', add_html);
739
- }
740
- }
741
- }
742
- return false;
743
- });
744
-
745
- $("#a-insert-image").click(function () {
746
- var image_url = prompt( '<?php _e( 'URL of image to insert', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>' + ':', 'http://' );
747
- if ( image_url ) {
748
- var image_alt = prompt( '<?php _e( '"alt" text of the image', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>' + ':', '' );
749
- // if ( image_alt ) { // won't check for alt, because there are cases where an empty one makes sense
750
- insert_html = '<img src="' + image_url + '" alt="' + image_alt + '" />';
751
- if ( true == confirm( '<?php _e( 'To insert the following image into a cell, just click the cell after closing this dialog.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>' + '\n\n' + insert_html ) ) {
752
- $("#table_contents input").bind('click', add_html);
753
- }
754
- // }
755
- }
756
- return false;
757
- });
758
-
759
- });
760
- /* ]]> */
761
- </script>
762
  </div>
763
  </div>
764
 
765
  <br/>
766
  <div class="postbox">
767
- <h3 class="hndle"><span><?php _e( 'Table Settings', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span></h3>
768
  <div class="inside">
769
  <p><?php _e( 'These settings will only be used for this table.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
770
  <table class="wp-table-reloaded-options">
@@ -804,7 +933,7 @@ jQuery(document).ready(function($){
804
  echo '<br/><br/>' . __( 'Other actions', WP_TABLE_RELOADED_TEXTDOMAIN ) . ':';
805
  $delete_url = $this->get_action_url( array( 'action' => 'delete', 'table_id' => $table['id'], 'item' => 'table' ), true );
806
  $export_url = $this->get_action_url( array( 'action' => 'export', 'table_id' => $table['id'] ), false );
807
- echo " <a class=\"button-secondary\" href=\"{$delete_url}\" onclick=\"javascript:return confirm( '".__( 'The complete table and all content will be erased. Do you really want to delete it?', WP_TABLE_RELOADED_TEXTDOMAIN )."' );\">" . __( 'Delete Table', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
808
  echo " <a class=\"button-secondary\" href=\"{$export_url}\">" . __( 'Export Table', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
809
  ?>
810
  </p>
@@ -836,16 +965,6 @@ jQuery(document).ready(function($){
836
  ?>
837
  </select></td>
838
  </tr>
839
- <tr valign="top" class="tr-import-delimiter">
840
- <th scope="row"><label for="delimiter"><?php _e( 'Used Delimiter', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
841
- <td><select id="delimiter" name="delimiter">
842
- <?php
843
- $delimiters = $this->import_instance->delimiters;
844
- foreach ( $delimiters as $delimiter => $longname )
845
- echo "<option" . ( ( $delimiter == $_POST['delimiter'] ) ? ' selected="selected"': '' ) . " value=\"{$delimiter}\">{$longname}</option>";
846
- ?>
847
- </select> <?php _e( '<small>(Only needed for CSV export.)</small>', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></td>
848
- </tr>
849
  <tr valign="top" class="tr-import-file">
850
  <th scope="row"><label for="import_file"><?php _e( 'Select File with Table to Import', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
851
  <td><input name="import_file" id="import_file" type="file" /></td>
@@ -881,9 +1000,12 @@ jQuery(document).ready(function($){
881
  if ( 0 < count( $tables ) ) {
882
  // Tables found in db
883
  ?>
 
 
884
  <table class="widefat">
885
  <thead>
886
  <tr>
 
887
  <th scope="col"><?php _e( 'ID', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
888
  <th scope="col"><?php _e( 'Table Name', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
889
  <th scope="col"><?php _e( 'Description', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
@@ -904,16 +1026,23 @@ jQuery(document).ready(function($){
904
  $import_url = $this->get_action_url( array( 'action' => 'import', 'import_format' => 'wp_table', 'wp_table_id' => $table_id ), true );
905
 
906
  echo "<tr{$bg_style}>\n";
907
- echo "\t<th scope=\"row\">{$table_id}</th>";
 
908
  echo "<td>{$name}</td>";
909
  echo "<td>{$description}</td>";
910
- echo "<td><a href=\"{$import_url}\" onclick=\"javascript:return confirm( '" . __( 'Do you really want to import this table from the wp-Table plugin?', WP_TABLE_RELOADED_TEXTDOMAIN ) . "' );\">" . __( 'Import', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a></td>\n";
911
  echo "</tr>\n";
912
 
913
  }
914
  echo "</tbody>\n";
915
  echo "</table>\n";
916
-
 
 
 
 
 
 
917
  } else { // end if $tables
918
  echo "<div style=\"clear:both;\"><p>" . __( 'wp-Table by Alex Rabe seems to be installed, but no tables were found.', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</p></div>";
919
  }
@@ -1023,19 +1152,24 @@ jQuery(document).ready(function($){
1023
  <table class="wp-table-reloaded-options">
1024
  <tr valign="top">
1025
  <th scope="row"><?php _e( 'Enable Tablesorter-JavaScript?', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
1026
- <td><input type="checkbox" name="options[enable_tablesorter]" id="options[enable_tablesorter]"<?php echo ( true == $this->options['enable_tablesorter'] ) ? ' checked="checked"': '' ;?> value="true" /> <label for="options[enable_tablesorter]"><?php _e( 'Yes, enable <a href="http://www.tablesorter.com/">Tablesorter-jQuery-Plugin</a> to be used to make table sortable (can be changed for every table separatly).', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label></td>
1027
  </tr>
1028
  <tr valign="top" id="options_use_custom_css">
1029
  <th scope="row"><?php _e( 'Add custom CSS?', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
1030
- <td><input type="checkbox" name="options[use_custom_css]" id="options[use_custom_css]"<?php echo ( true == $this->options['use_custom_css'] ) ? ' checked="checked"': '' ;?> value="true" /> <label for="options[use_custom_css]"><?php echo sprintf( __( 'Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag. (If you do not want this, just add your CSS styling to your theme\'s "style.css" <small>(located at %s)</small>.) (See the <a href="http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/">plugin website</a> for examples.)', WP_TABLE_RELOADED_TEXTDOMAIN ), get_stylesheet_uri() ); ?></label></td>
 
 
1031
  </tr>
1032
- <tr valign="top" id="options_custom_css">
1033
  <th scope="row">&nbsp;</th>
1034
- <td><label for="options[custom_css]"><?php _e( 'Enter custom CSS', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label><br/>
1035
- <textarea name="options[custom_css]" id="options[use_custom_css]" rows="15" cols="40" style="width:600px;height:300px;"<?php echo ( false == $this->options['use_custom_css'] ) ? ' disabled="disabled"': '' ;?>><?php echo $this->safe_output( $this->options[custom_css] ); ?></textarea></td>
 
 
 
1036
  </tr>
1037
  </table>
1038
- </div
1039
  </div>
1040
 
1041
  <div class="postbox">
@@ -1044,7 +1178,7 @@ jQuery(document).ready(function($){
1044
  <table class="wp-table-reloaded-options">
1045
  <tr valign="top" id="options_uninstall">
1046
  <th scope="row"><?php _e( 'Uninstall Plugin upon Deactivation?', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
1047
- <td><input type="checkbox" name="options[uninstall_upon_deactivation]" id="options[uninstall_upon_deactivation]"<?php echo ( true == $this->options['uninstall_upon_deactivation'] ) ? ' checked="checked"': '' ;?> value="true" /> <label for="options[uninstall_upon_deactivation]"><?php _e( 'Yes, uninstall everything when plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page! (It does not influence the "Manually Uninstall Plugin" button below!)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label></td>
1048
  </tr>
1049
  </table>
1050
  </div>
@@ -1059,25 +1193,16 @@ jQuery(document).ready(function($){
1059
 
1060
  </form>
1061
  </div>
1062
- <script type="text/javascript">
1063
- /* <![CDATA[ */
1064
- jQuery(document).ready(function($){
1065
- $("#options_uninstall input").click(function () {
1066
- if( $('#options_uninstall input:checked').val() ) {
1067
- return confirm( '<?php _e( 'Do you really want to activate this? You should only do that right before uninstallation!', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>' );
1068
- }
1069
- });
1070
- });
1071
- /* ]]> */
1072
- </script>
1073
  <h2><?php _e( 'Manually Uninstall Plugin', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></h2>
1074
  <div style="clear:both;">
1075
  <p><?php _e( 'You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported.<br/> Be very careful with this and only click the button if you know what you are doing!', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
1076
  <?php
1077
  $uninstall_url = $this->get_action_url( array( 'action' => 'uninstall' ), true );
1078
- echo " <a class=\"button-secondary delete\" href=\"{$uninstall_url}\" onclick=\"javascript:if ( confirm( '".__( 'Do you really want to uninstall the plugin and delete ALL data?', WP_TABLE_RELOADED_TEXTDOMAIN )."' ) ) { return confirm( '".__( 'Are you really sure?', WP_TABLE_RELOADED_TEXTDOMAIN )."' ); } else { return false; }\">" . __( 'Uninstall Plugin WP-Table Reloaded', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
1079
  ?>
1080
  </div>
 
1081
  <?php
1082
  $this->print_page_footer();
1083
  }
@@ -1093,27 +1218,28 @@ jQuery(document).ready(function($){
1093
  <div class="postbox">
1094
  <h3 class="hndle"><span><?php _e( 'Plugin Purpose', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span></h3>
1095
  <div class="inside">
1096
- <p><?php _e( 'This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
1097
  </div>
1098
  </div>
1099
 
1100
  <div class="postbox">
1101
  <h3 class="hndle"><span><?php _e( 'Usage', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span></h3>
1102
  <div class="inside">
1103
- <p><?php _e( 'At first you should add or import a table. Then edit your data and select the options you want. To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them. You may then style your table via CSS. Every table has the CSS-class "wp-table-reloaded". A table also has the class "wp-table-reloaded-&lt;table-id&gt;". You can also use the classes "column-&lt;number&gt;" and "row-&lt;number&gt;" to style rows and columns individually. Use this to style columns width and text alignment.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
 
1104
  </div>
1105
  </div>
1106
  <div class="postbox">
1107
  <h3 class="hndle"><span><?php _e( 'More Information and Documentation', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span></h3>
1108
  <div class="inside">
1109
- <p><?php _e( 'More information can be found on the <a href="http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/">plugin\'s website</a> or on its page in the <a href="http://wordpress.org/extend/plugins/wp-table-reloaded/">WordPress Plugin Directory</a>. A documentation and certain support and help request possibilities will be available soon.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
1110
  </div>
1111
  </div>
1112
 
1113
  <div class="postbox">
1114
  <h3 class="hndle"><span><?php _e( 'Author and Licence', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span></h3>
1115
  <div class="inside">
1116
- <p><?php _e( '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.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/><?php _e( 'If you like the plugin, please consider <a href="http://tobias.baethge.com/wordpress-plugins/donate/">donating</a> or rating it at the <a href="http://wordpress.org/extend/plugins/wp-table-reloaded/">WordPress Plugin Directory</a>. Thanks!', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
1117
  </div>
1118
  </div>
1119
 
@@ -1122,15 +1248,31 @@ jQuery(document).ready(function($){
1122
  <div class="inside">
1123
  <p>
1124
  <?php _e( 'Thanks go to <a href="http://alexrabe.boelinger.com/">Alex Rabe</a> for the original wp-Table plugin,', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/>
1125
- <?php _e( 'Christian Bach for the <a href="http://www.tablesorter.com/">Tablesorter-jQuery-Plugin</a>,', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/>
1126
  <?php _e( 'the submitters of translations:', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1127
  <br/>&middot; <?php _e( 'Albanian (thanks to <a href="http://www.romeolab.com/">Romeo</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
 
1128
  <br/>&middot; <?php _e( 'French (thanks to <a href="http://ultratrailer.net/">Yin-Yin</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1129
  <br/>&middot; <?php _e( 'Russian (thanks to <a href="http://wp-skins.info/">Truper</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1130
- <br/>&middot; <?php _e( 'Spanish (thanks to <a href="http://theindependentproject.com/">Alejandro Urrutia</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1131
  <br/>&middot; <?php _e( 'Swedish (thanks to <a href="http://www.zuperzed.se/">ZuperZed</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1132
  <br/>&middot; <?php _e( 'Turkish (thanks to <a href="http://www.wpuzmani.com/">Semih</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1133
- <br/><?php _e( 'and all contributors, supporters, reviewers and users of the plugin!', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1134
  </p>
1135
  </div>
1136
  </div>
@@ -1181,7 +1323,7 @@ jQuery(document).ready(function($){
1181
 
1182
  // ###################################################################################################################
1183
  function get_contextual_help_string() {
1184
- return __( 'More information can be found on the <a href="http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/">plugin\'s website</a>. A documentation and certain support and help request possibilities will be available soon.', WP_TABLE_RELOADED_TEXTDOMAIN );
1185
  }
1186
 
1187
  // ###################################################################################################################
@@ -1343,27 +1485,33 @@ jQuery(document).ready(function($){
1343
  // update general plugin options
1344
  // 1. step: by adding/overwriting existing options
1345
  $this->options = get_option( $this->optionname['options'] );
1346
- $new_options = array_merge( $this->default_options, $this->options );
1347
- // 2. step: by removing options which are deprecated (and thus not in_array(default_options)
1348
- //$new_options = array_intersect_key( $new_options, $this->default_options );
 
 
 
 
 
 
1349
  // 3. step: update installed version number
1350
  $new_options['installed_version'] = $this->plugin_version;
1351
-
1352
- // 3b., take care of css
1353
- $new_options['use_custom_css'] = ( true == isset( $this->options['use_global_css'] ) ) ? $this->options['use_global_css'] : true;
1354
-
1355
  // 4. step: save the new options
1356
  $this->options = $new_options;
1357
  $this->update_options();
1358
 
1359
- // update individual table options
1360
  $this->tables = get_option( $this->optionname['tables'] );
1361
  foreach ( $this->tables as $id => $tableoptionname ) {
1362
  $table = $this->load_table( $id );
1363
- $new_table = array_merge( $this->default_table, $table );
1364
- //$new_table = array_intersect_key( $new_table, $this->default_table );
1365
- $new_table['options'] = array_merge( $this->default_table['options'], $new_table['options'] );
1366
- // $new_table['options'] = array_intersect_key( $new_table['options'], $this->default_table['options'] );
 
 
 
1367
  $this->save_table( $new_table );
1368
  }
1369
  }
@@ -1379,8 +1527,30 @@ jQuery(document).ready(function($){
1379
  // enqueue javascript-file, with some jQuery stuff
1380
  function add_manage_page_js() {
1381
  $jsfile = 'admin-script.js';
1382
- if ( file_exists( WP_TABLE_RELOADED_ABSPATH . 'admin/' . $jsfile ) )
1383
- wp_enqueue_script( 'wp-table-reloaded-admin-js', WP_TABLE_RELOADED_URL . 'admin/' . $jsfile, array( 'jquery' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1384
  }
1385
 
1386
  // ###################################################################################################################
@@ -1391,17 +1561,50 @@ jQuery(document).ready(function($){
1391
  if ( function_exists( 'wp_enqueue_style' ) )
1392
  wp_enqueue_style( 'wp-table-reloaded-admin-css', WP_TABLE_RELOADED_URL . 'admin/' . $cssfile );
1393
  else
1394
- add_action( 'admin_head', array( &$this, 'print_styles' ) );
1395
  }
1396
  }
1397
 
1398
  // ###################################################################################################################
1399
  // print our style in wp-admin-head (only needed for WP < 2.6)
1400
- function print_styles() {
1401
  $cssfile = 'admin-style.css';
1402
  echo "<link rel='stylesheet' href='" . WP_TABLE_RELOADED_URL . 'admin/' . $cssfile . "' type='text/css' media='' />\n";
1403
  }
1404
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1405
  } // class WP_Table_Reloaded_Admin
1406
 
1407
  ?>
2
  /*
3
  File Name: WP-Table Reloaded - Admin Class (see main file wp-table-reloaded.php)
4
  Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
5
+ Description: 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
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
10
 
11
+ define( 'WP_TABLE_RELOADED_TEXTDOMAIN', 'wp-table-reloaded' );
12
+
13
  class WP_Table_Reloaded_Admin {
14
 
15
  // ###################################################################################################################
16
+ var $plugin_version = '1.2';
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
23
  'table' => 'wp_table_reloaded_data'
24
  );
25
  // allowed actions in this class
26
+ var $allowed_actions = array( 'list', 'add', 'edit', 'bulk_edit', 'copy', 'delete', 'insert', 'import', 'export', 'options', 'uninstall', 'info'); // 'ajax_list', but handled separatly
27
 
28
  // init vars
29
  var $tables = array();
56
  // class instances
57
  var $export_instance;
58
  var $import_instance;
59
+
60
+ // temp variables
61
+ var $hook = '';
62
 
63
  // ###################################################################################################################
64
  // add admin-page to sidebar navigation, function called by PHP when class is constructed
65
  function WP_Table_Reloaded_Admin() {
66
+ // init plugin (means: load plugin options and existing tables)
67
+ $this->init_plugin();
68
+
69
  add_action( 'admin_menu', array( &$this, 'add_manage_page' ) );
70
 
71
+ // add JS to add button to editor on these pages
72
+ $pages_with_editor_button = array( 'post.php', 'post-new.php', 'page.php', 'page-new.php' );
73
+ foreach ( $pages_with_editor_button as $page )
74
+ add_action( 'load-' . $page, array( &$this, 'add_editor_button' ) );
75
+
76
  // have to check for possible export file download request this early,
77
  // because otherwise http-headers will be sent by WP before we can send download headers
78
  if ( isset( $_POST['wp_table_reloaded_download_export_file'] ) ) {
79
  add_action('init', array( &$this, 'do_action_export' ) );
80
  }
81
+
82
+ // have to check for possible call by editor button to show list of tables
83
+ if ( isset( $_GET['action'] ) && 'ajax_list' == $_GET['action'] ) {
84
+ add_action('init', array( &$this, 'do_action_ajax_list' ) );
85
+ }
86
+
87
  }
88
 
89
  // ###################################################################################################################
90
  // add page, and what happens when page is loaded or shown
91
  function add_manage_page() {
92
  $min_needed_capability = 'publish_posts'; // user needs at least this capability to show WP-Table Reloaded config page
93
+ $this->hook = add_management_page( 'WP-Table Reloaded', 'WP-Table Reloaded', $min_needed_capability, 'wp_table_reloaded_manage_page', array( &$this, 'show_manage_page' ) );
94
+ add_action('load-' . $this->hook, array( &$this, 'load_manage_page' ) );
 
 
 
95
  }
96
 
97
  // ###################################################################################################################
99
  // all of this will be done before the page is shown by show_manage_page()
100
  function load_manage_page() {
101
  // load js and css for admin
102
+ //$this->add_manage_page_js();
103
+ add_action( 'admin_footer', array( &$this, 'add_manage_page_js' ) ); // can be put in footer, jQuery will be loaded anyway
104
  $this->add_manage_page_css();
105
 
106
+ // init language support
 
107
  $this->init_language_support();
108
+
109
+ if ( true == function_exists( 'add_contextual_help' ) ) // then WP version is >= 2.7
110
+ add_contextual_help( $this->hook, $this->get_contextual_help_string() );
111
  }
112
 
113
  // ###################################################################################################################
114
  function show_manage_page() {
115
  // get and check action parameter from passed variables
116
+ $action = ( isset( $_REQUEST['action'] ) && !empty( $_REQUEST['action'] ) ) ? $_REQUEST['action'] : 'list';
117
  // check if action is in allowed actions and if method is callable, if yes, call it
118
  if ( in_array( $action, $this->allowed_actions ) && is_callable( array( &$this, 'do_action_' . $action ) ) )
119
  call_user_func( array( &$this, 'do_action_' . $action ) );
208
  unset($temp_col);
209
  }
210
  $this->save_table( $table );
211
+ $message = __( 'Columns swapped successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
212
+ break;
213
+ case 'sort':
214
+ $table_id = $_POST['table']['id'];
215
+ $column = ( isset( $_POST['sort']['col'] ) ) ? $_POST['sort']['col'] : -1;
216
+ $sort_order= ( isset( $_POST['sort']['order'] ) ) ? $_POST['sort']['order'] : 'ASC';
217
+ $table = $this->load_table( $table_id );
218
+ $rows = count( $table['data'] );
219
+ // sort array for $column in $sort_order
220
+ if ( ( 1 < $rows ) && ( -1 < $column ) ) {
221
+ $sortarray = $this->create_class_instance( 'arraysort', 'arraysort.class.php' );
222
+ $sortarray->input_array = $table['data'];
223
+ $sortarray->column = $column;
224
+ $sortarray->order = $sort_order;
225
+ $sortarray->sort();
226
+ $table['data'] = $sortarray->sorted_array;
227
+ }
228
+ $this->save_table( $table );
229
+ $message = __( 'Table sorted successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
230
  break;
231
  default:
232
  $this->do_action_list();
245
  }
246
  }
247
 
248
+ // ###################################################################################################################
249
+ function do_action_bulk_edit() {
250
+ if ( isset( $_POST['submit'] ) ) {
251
+ check_admin_referer( $this->get_nonce( 'bulk_edit' ) );
252
+
253
+ if ( isset( $_POST['tables'] ) ) {
254
+
255
+ $subactions = array_keys( $_POST['submit'] );
256
+ $subaction = $subactions[0];
257
+
258
+ switch( $subaction ) {
259
+ case 'copy': // see do_action_copy for explanations
260
+ foreach ( $_POST['tables'] as $table_id ) {
261
+ $table_to_copy = $this->load_table( $table_id );
262
+ $new_table = $table_to_copy;
263
+ $new_table['id'] = $this->get_new_table_id();
264
+ $new_table['name'] = __( 'Copy of', WP_TABLE_RELOADED_TEXTDOMAIN ) . ' ' . $table_to_copy['name'];
265
+ unset( $table_to_copy );
266
+ $this->save_table( $new_table );
267
+ }
268
+ $message = __ngettext( 'Table copied successfully.', 'Tables copied successfully.', count( $_POST['tables'] ), WP_TABLE_RELOADED_TEXTDOMAIN );
269
+ break;
270
+ case 'delete': // see do_action_delete for explanations
271
+ foreach ( $_POST['tables'] as $table_id ) {
272
+ $this->tables[ $table_id ] = ( isset( $this->tables[ $table_id ] ) ) ? $this->tables[ $table_id ] : $this->optionname['table'] . '_' . $table_id;
273
+ delete_option( $this->tables[ $table_id ] );
274
+ unset( $this->tables[ $table_id ] );
275
+ }
276
+ $this->update_tables();
277
+ $message = __ngettext( 'Table deleted successfully.', 'Tables deleted successfully.', count( $_POST['tables'] ), WP_TABLE_RELOADED_TEXTDOMAIN );
278
+ break;
279
+ case 'wp_table_import': // see do_action_import for explanations
280
+ $this->import_instance = $this->create_class_instance( 'WP_Table_Reloaded_Import', 'wp-table-reloaded-import.class.php' );
281
+ $this->import_instance->import_format = 'wp_table';
282
+ foreach ( $_POST['tables'] as $table_id ) {
283
+ $this->import_instance->wp_table_id = $table_id;
284
+ $this->import_instance->import_table();
285
+ $imported_table = $this->import_instance->imported_table;
286
+ $table = array_merge( $this->default_table, $imported_table );
287
+ $table['id'] = $this->get_new_table_id();
288
+ $this->save_table( $table );
289
+ }
290
+ $message = __ngettext( 'Table imported successfully.', 'Tables imported successfully.', count( $_POST['tables'] ), WP_TABLE_RELOADED_TEXTDOMAIN );
291
+ break;
292
+ default:
293
+ }
294
+
295
+ } else {
296
+ $message = __( 'You did not select any tables!', WP_TABLE_RELOADED_TEXTDOMAIN );
297
+ }
298
+ $this->print_success_message( $message );
299
+ }
300
+ $this->do_action_list();
301
+ }
302
+
303
  // ###################################################################################################################
304
  function do_action_copy() {
305
  if ( isset( $_GET['table_id'] ) ) {
419
  $this->import_instance->mimetype = $_FILES['import_file']['type'];
420
  $this->import_instance->import_from = 'file-upload';
421
  $this->import_instance->import_format = $_POST['import_format'];
 
422
  $this->import_instance->import_table();
423
  $error = $this->import_instance->error;
424
  $imported_table = $this->import_instance->imported_table;
425
+ $this->import_instance->unlink_uploaded_file();
426
  } elseif ( isset( $_POST['import_data'] ) ) {
427
  $this->import_instance->tempname = '';
428
  $this->import_instance->filename = __( 'Imported Table', WP_TABLE_RELOADED_TEXTDOMAIN );
430
  $this->import_instance->import_from = 'form-field';
431
  $this->import_instance->import_data = stripslashes( $_POST['import_data'] );
432
  $this->import_instance->import_format = $_POST['import_format'];
 
433
  $this->import_instance->import_table();
434
  $error = $this->import_instance->error;
435
  $imported_table = $this->import_instance->imported_table;
545
  function do_action_info() {
546
  $this->print_plugin_info_form();
547
  }
548
+
549
+ // ###################################################################################################################
550
+ function do_action_ajax_list() {
551
+ check_admin_referer( $this->get_nonce( 'ajax_list' ) );
552
+
553
+ // init language support
554
+ $this->init_language_support();
555
+
556
+ $this->print_page_header( __( 'List of Tables', WP_TABLE_RELOADED_TEXTDOMAIN ) );
557
+ ?>
558
+ <div style="clear:both;"><p style="width:97%;"><?php _e( 'This is a list of all available tables.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> <?php _e( 'You may insert a table into a post or page here.', WP_TABLE_RELOADED_TEXTDOMAIN ) ?><br />
559
+ <?php _e( '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>).', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></p></div>
560
+ <?php
561
+ if ( 0 < count( $this->tables ) ) {
562
+ ?>
563
+ <div style="clear:both;">
564
+ <table class="widefat" style="width:97%;">
565
+ <thead>
566
+ <tr>
567
+ <th scope="col"><?php _e( 'ID', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
568
+ <th scope="col"><?php _e( 'Table Name', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
569
+ <th scope="col"><?php _e( 'Description', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
570
+ <th scope="col"><?php _e( 'Action', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
571
+ </tr>
572
+ </thead>
573
+ <tbody>
574
+ <?php
575
+ $bg_style_index = 0;
576
+ foreach ( $this->tables as $id => $tableoptionname ) {
577
+ $bg_style_index++;
578
+ $bg_style = ( 0 == ($bg_style_index % 2) ) ? ' class="alternate"' : '';
579
+
580
+ // get name and description to show in list
581
+ $table = $this->load_table( $id );
582
+ $name = $this->safe_output( $table['name'] );
583
+ $description = $this->safe_output( $table['description'] );
584
+ unset( $table );
585
+
586
+ echo "<tr{$bg_style}>\n";
587
+ echo "\t<th scope=\"row\">{$id}</th>";
588
+ echo "<td>{$name}</td>";
589
+ echo "<td>{$description}</td>";
590
+ echo "<td><a class=\"send_table_to_editor\" title=\"{$id}\" href=\"#\" style=\"color:#21759B;\">" . __( 'Insert', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a></td>\n";
591
+ echo "</tr>\n";
592
+ }
593
+ ?>
594
+ </tbody>
595
+ </table>
596
+ </div>
597
+ <?php
598
+ } else { // end if $tables
599
+ echo "<div style=\"clear:both;\"><p>" . __( 'No tables found.', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</p></div>";
600
+ }
601
+ $this->print_page_footer();
602
+
603
+ // necessary to stop page building here!
604
+ exit;
605
+ }
606
 
607
  // ###################################################################################################################
608
  // ########################################## ####################################################
616
  $this->print_page_header( __( 'List of Tables', WP_TABLE_RELOADED_TEXTDOMAIN ) );
617
  $this->print_submenu_navigation( 'list' );
618
  ?>
619
+ <div style="clear:both;"><p><?php _e( 'This is a list of all available tables.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> <?php _e( 'You may add, edit, copy or delete tables here.', WP_TABLE_RELOADED_TEXTDOMAIN ) ?><br />
620
+ <?php _e( '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.', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></p></div>
621
  <?php
622
  if ( 0 < count( $this->tables ) ) {
623
  ?>
624
  <div style="clear:both;">
625
+ <form method="post" action="<?php echo $this->get_action_url(); ?>">
626
+ <?php wp_nonce_field( $this->get_nonce( 'bulk_edit' ) ); ?>
627
  <table class="widefat">
628
  <thead>
629
  <tr>
630
+ <th class="check-column" scope="col"><input type="checkbox" /></th>
631
  <th scope="col"><?php _e( 'ID', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
632
  <th scope="col"><?php _e( 'Table Name', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
633
  <th scope="col"><?php _e( 'Description', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
653
  $delete_url = $this->get_action_url( array( 'action' => 'delete', 'table_id' => $id, 'item' => 'table' ), true );
654
 
655
  echo "<tr{$bg_style}>\n";
656
+ echo "\t<th class=\"check-column\" scope=\"row\"><input type=\"checkbox\" name=\"tables[]\" value=\"{$id}\" /></th>";
657
+ echo "<th scope=\"row\">{$id}</th>";
658
  echo "<td>{$name}</td>";
659
  echo "<td>{$description}</td>";
660
  echo "<td><a href=\"{$edit_url}\">" . __( 'Edit', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>" . " | ";
661
+ echo "<a class=\"copy_table_link\" href=\"{$copy_url}\">" . __( 'Copy', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>" . " | ";
662
  echo "<a href=\"{$export_url}\">" . __( 'Export', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>" . " | ";
663
+ echo "<a class=\"delete_table_link delete\" href=\"{$delete_url}\">" . __( 'Delete', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a></td>\n";
664
  echo "</tr>\n";
665
 
666
  }
667
  echo "</tbody>\n";
668
  echo "</table>\n";
669
+ ?>
670
+ <input type="hidden" name="action" value="bulk_edit" />
671
+ <p class="submit"><?php _e( 'Bulk actions:', WP_TABLE_RELOADED_TEXTDOMAIN ) ?> <input type="submit" name="submit[copy]" class="button-primary bulk_copy_tables" value="<?php _e( 'Copy Tables', WP_TABLE_RELOADED_TEXTDOMAIN ) ?>" /> <input type="submit" name="submit[delete]" class="button-primary bulk_delete_tables" value="<?php _e( 'Delete Tables', WP_TABLE_RELOADED_TEXTDOMAIN ) ?>" />
672
+ </p>
673
+
674
+ </form>
675
+ <?php
676
  echo "</div>";
677
  } else { // end if $tables
678
  $add_url = $this->get_action_url( array( 'action' => 'add' ), false );
735
 
736
  $this->print_page_header( sprintf( __( 'Edit Table "%s"', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->safe_output( $table['name'] ) ) );
737
  $this->print_submenu_navigation( 'edit' );
 
738
  ?>
739
  <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 />
740
  <?php echo sprintf( __( 'If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->safe_output( $table_id ) ); ?></p></div>
768
 
769
  <?php if ( 0 < $cols && 0 < $rows ) { ?>
770
  <div class="postbox">
771
+ <h3 class="hndle"><span><?php _e( 'Table Contents', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span><span class="hide_link"><small><?php _e( 'Hide', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></small></span><span class="expand_link"><small><?php _e( 'Expand', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></small></span></h3>
772
  <div class="inside">
773
  <table class="widefat" style="width:auto;" id="table_contents">
774
  <thead>
798
  $delete_row_url = $this->get_action_url( array( 'action' => 'delete', 'table_id' => $table['id'], 'item' => 'row', 'element_id' => $row_idx ), true );
799
  echo "\t<td><a href=\"{$insert_row_url}\">" . __( 'Insert Row', WP_TABLE_RELOADED_TEXTDOMAIN )."</a>";
800
  if ( 1 < $rows ) // don't show delete link for last and only row
801
+ echo " | <a class=\"delete_row_link\" href=\"{$delete_row_url}\">".__( 'Delete Row', WP_TABLE_RELOADED_TEXTDOMAIN )."</a>";
802
  echo "</td>\n</tr>";
803
  }
804
  ?>
810
  $delete_col_url = $this->get_action_url( array( 'action' => 'delete', 'table_id' => $table['id'], 'item' => 'col', 'element_id' => $col_idx ), true );
811
  echo "\t<td><a href=\"{$insert_col_url}\">" . __( 'Insert Column', WP_TABLE_RELOADED_TEXTDOMAIN )."</a>";
812
  if ( 1 < $cols ) // don't show delete link for last and only column
813
+ echo " | <a class=\"delete_column_link\" href=\"{$delete_col_url}\">" . __('Delete Column', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
814
  echo "</td>\n";
815
  }
816
  $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
824
  </div>
825
  <?php } //endif ?>
826
  <div class="postbox">
827
+ <h3 class="hndle"><span><?php _e( 'Data Manipulation', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span><span class="hide_link"><small><?php _e( 'Hide', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></small></span><span class="expand_link"><small><?php _e( 'Expand', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></small></span></h3>
828
  <div class="inside">
829
+ <table class="wp-table-reloaded-data-manipulation"><tr><td>
830
  <?php if ( 1 < $rows ) { // swap rows form
831
 
832
  $row1_select = '<select name="swap[row][1]">';
864
  ?>
865
  <input type="submit" name="submit[swap_cols]" class="button-primary" value="<?php _e( 'Swap', WP_TABLE_RELOADED_TEXTDOMAIN ) ?>" />
866
  <?php } // end if form swap cols ?>
867
+ </td><td>
 
868
  <a id="a-insert-link" class="button-primary" href=""><?php _e( 'Insert Link', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a> <a id="a-insert-image" class="button-primary" href=""><?php _e( 'Insert Image', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a>
869
+ </td>
870
+ <td>
871
+ <?php if ( 1 < $rows ) { // sort form
 
 
 
872
 
873
+ $col_select = '<select name="sort[col]">';
874
+ foreach ( $table['data'][0] as $col_idx => $cell_content )
875
+ $col_select .= "<option value=\"{$col_idx}\">" . ( chr( ord( 'A' ) + $col_idx ) ) . "</option>";
876
+ $col_select .= '</select>';
877
 
878
+ $sort_order_select = '<select name="sort[order]">';
879
+ $sort_order_select .= "<option value=\"ASC\">" . __( 'ascending', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</option>";
880
+ $sort_order_select .= "<option value=\"DESC\">" . __( 'descending', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</option>";
881
+ $sort_order_select .= '</select>';
 
 
882
 
883
+ echo sprintf( __( 'Sort table by column %s in %s order', WP_TABLE_RELOADED_TEXTDOMAIN ), $col_select, $sort_order_select );
884
+
885
+ ?>
886
+ <input type="submit" name="submit[sort]" class="button-primary" value="<?php _e( 'Sort', WP_TABLE_RELOADED_TEXTDOMAIN ) ?>" />
887
+ <?php } // end if sort form ?>
888
+ </td>
889
+ </tr>
890
+ </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
891
  </div>
892
  </div>
893
 
894
  <br/>
895
  <div class="postbox">
896
+ <h3 class="hndle"><span><?php _e( 'Table Settings', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span><span class="hide_link"><small><?php _e( 'Hide', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></small></span><span class="expand_link"><small><?php _e( 'Expand', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></small></span></h3>
897
  <div class="inside">
898
  <p><?php _e( 'These settings will only be used for this table.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
899
  <table class="wp-table-reloaded-options">
933
  echo '<br/><br/>' . __( 'Other actions', WP_TABLE_RELOADED_TEXTDOMAIN ) . ':';
934
  $delete_url = $this->get_action_url( array( 'action' => 'delete', 'table_id' => $table['id'], 'item' => 'table' ), true );
935
  $export_url = $this->get_action_url( array( 'action' => 'export', 'table_id' => $table['id'] ), false );
936
+ echo " <a class=\"button-secondary delete_table_link\" href=\"{$delete_url}\">" . __( 'Delete Table', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
937
  echo " <a class=\"button-secondary\" href=\"{$export_url}\">" . __( 'Export Table', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
938
  ?>
939
  </p>
965
  ?>
966
  </select></td>
967
  </tr>
 
 
 
 
 
 
 
 
 
 
968
  <tr valign="top" class="tr-import-file">
969
  <th scope="row"><label for="import_file"><?php _e( 'Select File with Table to Import', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
970
  <td><input name="import_file" id="import_file" type="file" /></td>
1000
  if ( 0 < count( $tables ) ) {
1001
  // Tables found in db
1002
  ?>
1003
+ <form method="post" action="<?php echo $this->get_action_url(); ?>">
1004
+ <?php wp_nonce_field( $this->get_nonce( 'bulk_edit' ) ); ?>
1005
  <table class="widefat">
1006
  <thead>
1007
  <tr>
1008
+ <th class="check-column" scope="col"><input type="checkbox" /></th>
1009
  <th scope="col"><?php _e( 'ID', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
1010
  <th scope="col"><?php _e( 'Table Name', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
1011
  <th scope="col"><?php _e( 'Description', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
1026
  $import_url = $this->get_action_url( array( 'action' => 'import', 'import_format' => 'wp_table', 'wp_table_id' => $table_id ), true );
1027
 
1028
  echo "<tr{$bg_style}>\n";
1029
+ echo "\t<th class=\"check-column\" scope=\"row\"><input type=\"checkbox\" name=\"tables[]\" value=\"{$table_id}\" /></th>";
1030
+ echo "<th scope=\"row\">{$table_id}</th>";
1031
  echo "<td>{$name}</td>";
1032
  echo "<td>{$description}</td>";
1033
+ echo "<td><a class=\"import_wptable_link\" href=\"{$import_url}\">" . __( 'Import', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a></td>\n";
1034
  echo "</tr>\n";
1035
 
1036
  }
1037
  echo "</tbody>\n";
1038
  echo "</table>\n";
1039
+ ?>
1040
+ <input type="hidden" name="action" value="bulk_edit" />
1041
+ <p class="submit"><?php _e( 'Bulk actions:', WP_TABLE_RELOADED_TEXTDOMAIN ) ?> <input type="submit" name="submit[wp_table_import]" class="button-primary bulk_wp_table_import_tables" value="<?php _e( 'Import Tables', WP_TABLE_RELOADED_TEXTDOMAIN ) ?>" />
1042
+ </p>
1043
+
1044
+ </form>
1045
+ <?
1046
  } else { // end if $tables
1047
  echo "<div style=\"clear:both;\"><p>" . __( 'wp-Table by Alex Rabe seems to be installed, but no tables were found.', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</p></div>";
1048
  }
1152
  <table class="wp-table-reloaded-options">
1153
  <tr valign="top">
1154
  <th scope="row"><?php _e( 'Enable Tablesorter-JavaScript?', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
1155
+ <td><input type="checkbox" name="options[enable_tablesorter]" id="options[enable_tablesorter]"<?php echo ( true == $this->options['enable_tablesorter'] ) ? ' checked="checked"': '' ;?> value="true" /> <label for="options[enable_tablesorter]"><?php _e( 'Yes, enable 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).', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label></td>
1156
  </tr>
1157
  <tr valign="top" id="options_use_custom_css">
1158
  <th scope="row"><?php _e( 'Add custom CSS?', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
1159
+ <td><input type="checkbox" name="options[use_custom_css]" id="options[use_custom_css]"<?php echo ( true == $this->options['use_custom_css'] ) ? ' checked="checked"': '' ;?> value="true" /> <label for="options[use_custom_css]">
1160
+ <?php _e( 'Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1161
+ </label></td>
1162
  </tr>
1163
+ <tr valign="top">
1164
  <th scope="row">&nbsp;</th>
1165
+ <td><label for="options_custom_css"><?php _e( 'Enter custom CSS', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label><br/>
1166
+ <textarea name="options[custom_css]" id="options_custom_css" rows="15" cols="40" style="width:600px;height:300px;"<?php echo ( false == $this->options['use_custom_css'] ) ? ' disabled="disabled"': '' ;?>><?php echo $this->safe_output( $this->options[custom_css] ); ?></textarea><br/><br/>
1167
+ <?php echo sprintf( __( '(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.', WP_TABLE_RELOADED_TEXTDOMAIN ), get_stylesheet_uri() ); ?><br/>
1168
+ <?php echo sprintf( __( '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>', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/', 'http://tobias.baethge.com/download/plugins/additional/example-style-1.css', 'http://tobias.baethge.com/download/plugins/additional/example-style-2.css' ); ?><br/><?php _e( 'Just copy the contents of a file into the textarea.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1169
+ </td>
1170
  </tr>
1171
  </table>
1172
+ </div>
1173
  </div>
1174
 
1175
  <div class="postbox">
1178
  <table class="wp-table-reloaded-options">
1179
  <tr valign="top" id="options_uninstall">
1180
  <th scope="row"><?php _e( 'Uninstall Plugin upon Deactivation?', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
1181
+ <td><input type="checkbox" name="options[uninstall_upon_deactivation]" id="options[uninstall_upon_deactivation]"<?php echo ( true == $this->options['uninstall_upon_deactivation'] ) ? ' checked="checked"': '' ;?> value="true" /> <label for="options[uninstall_upon_deactivation]"><?php _e( '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!', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> <?php _e( '<small>(This setting does not influence the "Manually Uninstall Plugin" button below!)</small>', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label></td>
1182
  </tr>
1183
  </table>
1184
  </div>
1193
 
1194
  </form>
1195
  </div>
1196
+
 
 
 
 
 
 
 
 
 
 
1197
  <h2><?php _e( 'Manually Uninstall Plugin', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></h2>
1198
  <div style="clear:both;">
1199
  <p><?php _e( 'You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported.<br/> Be very careful with this and only click the button if you know what you are doing!', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
1200
  <?php
1201
  $uninstall_url = $this->get_action_url( array( 'action' => 'uninstall' ), true );
1202
+ echo " <a class=\"button-secondary delete uninstall_plugin_link\" href=\"{$uninstall_url}\">" . __( 'Uninstall Plugin WP-Table Reloaded', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
1203
  ?>
1204
  </div>
1205
+ <br style="clear:both;" />
1206
  <?php
1207
  $this->print_page_footer();
1208
  }
1218
  <div class="postbox">
1219
  <h3 class="hndle"><span><?php _e( 'Plugin Purpose', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span></h3>
1220
  <div class="inside">
1221
+ <p><?php _e( 'This plugin allows you to create and manage tables in the admin-area of WordPress.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> <?php _e( 'Those tables may contain strings, numbers and even HTML (e.g. to include images or links).', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> <?php _e( 'You can then show the tables in your posts, on your pages or in text widgets by using a shortcode.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> <?php _e( 'If you want to show your tables anywhere else in your theme, you can use a template tag function.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
1222
  </div>
1223
  </div>
1224
 
1225
  <div class="postbox">
1226
  <h3 class="hndle"><span><?php _e( 'Usage', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span></h3>
1227
  <div class="inside">
1228
+ <p><?php _e( 'At first you should add or import a table.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> <?php _e( '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.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p><p><?php _e( '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.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> <?php _e( '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.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p><p><?php _e( 'To include the table into your posts, pages or text widgets, write the shortcode [table id=&lt;table-id&gt;] into them.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> <?php _e( '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.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p><p><?php _e( '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;".', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> <?php _e( '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.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1229
+ </p>
1230
  </div>
1231
  </div>
1232
  <div class="postbox">
1233
  <h3 class="hndle"><span><?php _e( 'More Information and Documentation', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span></h3>
1234
  <div class="inside">
1235
+ <p><?php _e( '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>.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> <?php _e( '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>.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
1236
  </div>
1237
  </div>
1238
 
1239
  <div class="postbox">
1240
  <h3 class="hndle"><span><?php _e( 'Author and Licence', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span></h3>
1241
  <div class="inside">
1242
+ <p><?php _e( '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.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/><?php _e( '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>.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/><?php _e( 'Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
1243
  </div>
1244
  </div>
1245
 
1248
  <div class="inside">
1249
  <p>
1250
  <?php _e( 'Thanks go to <a href="http://alexrabe.boelinger.com/">Alex Rabe</a> for the original wp-Table plugin,', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/>
1251
+ <?php _e( 'Christian Bach for the <a href="http://www.tablesorter.com/">Tablesorter jQuery plugin</a>,', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/>
1252
  <?php _e( 'the submitters of translations:', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1253
  <br/>&middot; <?php _e( 'Albanian (thanks to <a href="http://www.romeolab.com/">Romeo</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1254
+ <br/>&middot; <?php _e( 'Czech (thanks to <a href="http://separatista.net/">Pavel</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1255
  <br/>&middot; <?php _e( 'French (thanks to <a href="http://ultratrailer.net/">Yin-Yin</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1256
  <br/>&middot; <?php _e( 'Russian (thanks to <a href="http://wp-skins.info/">Truper</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1257
+ <br/>&middot; <?php _e( 'Spanish (thanks to <a href="http://theindependentproject.com/">Alejandro Urrutia</a> and <a href="http://halles.cl/">Matias Halles</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1258
  <br/>&middot; <?php _e( 'Swedish (thanks to <a href="http://www.zuperzed.se/">ZuperZed</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1259
  <br/>&middot; <?php _e( 'Turkish (thanks to <a href="http://www.wpuzmani.com/">Semih</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1260
+ <br/><?php _e( 'and to all donors, contributors, supporters, reviewers and users of the plugin!', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
1261
+ </p>
1262
+ </div>
1263
+ </div>
1264
+
1265
+ <div class="postbox closed">
1266
+ <h3 class="hndle"><span><?php _e( 'Debug and Version Information', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></span><span class="hide_link"><small><?php _e( 'Hide', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></small></span><span class="expand_link"><small><?php _e( 'Expand', WP_TABLE_RELOADED_TEXTDOMAIN ) ?></small></span></h3>
1267
+ <div class="inside">
1268
+ <p>
1269
+ <?php _e( 'You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/>
1270
+ <br/>&middot; WP-Table Reloaded (DB): <?php echo $this->options['installed_version']; ?>
1271
+ <br/>&middot; WP-Table Reloaded (Script): <?php echo $this->plugin_version; ?>
1272
+ <br/>&middot; WordPress: <?php echo $GLOBALS['wp_version']; ?>
1273
+ <br/>&middot; PHP: <?php echo phpversion(); ?>
1274
+ <br/>&middot; mySQL (Server): <?php echo mysql_get_server_info() ?>
1275
+ <br/>&middot; mySQL (Client): <?php echo mysql_get_client_info() ?>
1276
  </p>
1277
  </div>
1278
  </div>
1323
 
1324
  // ###################################################################################################################
1325
  function get_contextual_help_string() {
1326
+ return __( 'More information can be found on the <a href="http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/">plugin\'s website</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ) . '<br/>' . __( '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>.', WP_TABLE_RELOADED_TEXTDOMAIN );
1327
  }
1328
 
1329
  // ###################################################################################################################
1485
  // update general plugin options
1486
  // 1. step: by adding/overwriting existing options
1487
  $this->options = get_option( $this->optionname['options'] );
1488
+ $new_options = array();
1489
+
1490
+ // 2a. step: add/delete new/deprecated options by overwriting new ones with existing ones, if existant
1491
+ foreach ( $this->default_options as $key => $value )
1492
+ $new_options[ $key ] = ( true == isset( $this->options[ $key ] ) ) ? $this->options[ $key ] : $this->default_options[ $key ] ;
1493
+
1494
+ // 2b., take care of css
1495
+ $new_options['use_custom_css'] = ( false == isset( $this->options['use_custom_css'] ) && true == isset( $this->options['use_global_css'] ) ) ? $this->options['use_global_css'] : $this->options['use_custom_css'];
1496
+
1497
  // 3. step: update installed version number
1498
  $new_options['installed_version'] = $this->plugin_version;
1499
+
 
 
 
1500
  // 4. step: save the new options
1501
  $this->options = $new_options;
1502
  $this->update_options();
1503
 
1504
+ // update individual tables and their options
1505
  $this->tables = get_option( $this->optionname['tables'] );
1506
  foreach ( $this->tables as $id => $tableoptionname ) {
1507
  $table = $this->load_table( $id );
1508
+
1509
+ foreach ( $this->default_table as $key => $value )
1510
+ $new_table[ $key ] = ( true == isset( $table[ $key ] ) ) ? $table[ $key ] : $this->default_table[ $key ] ;
1511
+
1512
+ foreach ( $this->default_table['options'] as $key => $value )
1513
+ $new_table['options'][ $key ] = ( true == isset( $table['options'][ $key ] ) ) ? $table['options'][ $key ] : $this->default_table['options'][ $key ] ;
1514
+
1515
  $this->save_table( $new_table );
1516
  }
1517
  }
1527
  // enqueue javascript-file, with some jQuery stuff
1528
  function add_manage_page_js() {
1529
  $jsfile = 'admin-script.js';
1530
+ if ( file_exists( WP_TABLE_RELOADED_ABSPATH . 'admin/' . $jsfile ) ) {
1531
+ wp_register_script( 'wp-table-reloaded-admin-js', WP_TABLE_RELOADED_URL . 'admin/' . $jsfile, array( 'jquery' ) );
1532
+ // add all strings to translate here
1533
+ wp_localize_script( 'wp-table-reloaded-admin-js', 'WP_Table_Reloaded_Admin', array(
1534
+ 'str_UninstallCheckboxActivation' => __( 'Do you really want to activate this? You should only do that right before uninstallation!', WP_TABLE_RELOADED_TEXTDOMAIN ),
1535
+ 'str_DataManipulationLinkInsertURL' => __( 'URL of link to insert', WP_TABLE_RELOADED_TEXTDOMAIN ),
1536
+ 'str_DataManipulationLinkInsertText' => __( 'Text of link', WP_TABLE_RELOADED_TEXTDOMAIN ),
1537
+ 'str_DataManipulationLinkInsertExplain' => __( 'To insert the following link into a cell, just click the cell after closing this dialog.', WP_TABLE_RELOADED_TEXTDOMAIN ),
1538
+ 'str_DataManipulationImageInsertURL' => __( 'URL of image to insert', WP_TABLE_RELOADED_TEXTDOMAIN ),
1539
+ 'str_DataManipulationImageInsertAlt' => __( "''alt'' text of the image", WP_TABLE_RELOADED_TEXTDOMAIN ),
1540
+ 'str_DataManipulationImageInsertExplain' => __( 'To insert the following image into a cell, just click the cell after closing this dialog.', WP_TABLE_RELOADED_TEXTDOMAIN ),
1541
+ 'str_BulkCopyTablesLink' => __( 'Do you want to copy the selected tables?', WP_TABLE_RELOADED_TEXTDOMAIN ),
1542
+ 'str_BulkDeleteTablesLink' => __( 'The selected tables and all content will be erased. Do you really want to delete them?', WP_TABLE_RELOADED_TEXTDOMAIN ),
1543
+ 'str_BulkImportwpTableTablesLink' => __( 'Do you really want to import the selected tables from the wp-Table plugin?', WP_TABLE_RELOADED_TEXTDOMAIN ),
1544
+ 'str_CopyTableLink' => __( 'Do you want to copy this table?', WP_TABLE_RELOADED_TEXTDOMAIN ),
1545
+ 'str_DeleteTableLink' => __( 'The complete table and all content will be erased. Do you really want to delete it?', WP_TABLE_RELOADED_TEXTDOMAIN ),
1546
+ 'str_DeleteRowLink' => __( 'Do you really want to delete this row?', WP_TABLE_RELOADED_TEXTDOMAIN ),
1547
+ 'str_DeleteColumnLink' => __( 'Do you really want to delete this column?', WP_TABLE_RELOADED_TEXTDOMAIN ),
1548
+ 'str_ImportwpTableLink' => __( 'Do you really want to import this table from the wp-Table plugin?', WP_TABLE_RELOADED_TEXTDOMAIN ),
1549
+ 'str_UninstallPluginLink_1' => __( 'Do you really want to uninstall the plugin and delete ALL data?', WP_TABLE_RELOADED_TEXTDOMAIN ),
1550
+ 'str_UninstallPluginLink_2' => __( 'Are you really sure?', WP_TABLE_RELOADED_TEXTDOMAIN )
1551
+ ) );
1552
+ wp_print_scripts( 'wp-table-reloaded-admin-js' );
1553
+ }
1554
  }
1555
 
1556
  // ###################################################################################################################
1561
  if ( function_exists( 'wp_enqueue_style' ) )
1562
  wp_enqueue_style( 'wp-table-reloaded-admin-css', WP_TABLE_RELOADED_URL . 'admin/' . $cssfile );
1563
  else
1564
+ add_action( 'admin_head', array( &$this, 'print_admin_style' ) );
1565
  }
1566
  }
1567
 
1568
  // ###################################################################################################################
1569
  // print our style in wp-admin-head (only needed for WP < 2.6)
1570
+ function print_admin_style() {
1571
  $cssfile = 'admin-style.css';
1572
  echo "<link rel='stylesheet' href='" . WP_TABLE_RELOADED_URL . 'admin/' . $cssfile . "' type='text/css' media='' />\n";
1573
  }
1574
 
1575
+ // ###################################################################################################################
1576
+ // add button to visual editor
1577
+ function add_editor_button() {
1578
+ if ( 0 < count( $this->tables ) )
1579
+ // init language support
1580
+ $this->init_language_support();
1581
+
1582
+ add_action( 'admin_footer', array( &$this, 'add_editor_button_js' ) );
1583
+ }
1584
+
1585
+
1586
+ // ###################################################################################################################
1587
+ // print out the JS in the admin footer
1588
+ function add_editor_button_js() {
1589
+ $params = array(
1590
+ 'page' => 'wp_table_reloaded_manage_page',
1591
+ 'action' => 'ajax_list'
1592
+ );
1593
+ $ajax_url = add_query_arg( $params, dirname( $_SERVER['PHP_SELF'] ) . '/tools.php' );
1594
+ $ajax_url = wp_nonce_url( $ajax_url, $this->get_nonce( $params['action'], false ) );
1595
+
1596
+ $jsfile = 'admin-editor-buttons-script.js';
1597
+ if ( file_exists( WP_TABLE_RELOADED_ABSPATH . 'admin/' . $jsfile ) ) {
1598
+ wp_register_script( 'wp-table-reloaded-admin-editor-buttons-js', WP_TABLE_RELOADED_URL . 'admin/' . $jsfile, array( 'jquery', 'thickbox' ) );
1599
+ // add all strings to translate here
1600
+ wp_localize_script( 'wp-table-reloaded-admin-editor-buttons-js', 'WP_Table_Reloaded_Admin', array(
1601
+ 'str_EditorButtonCaption' => __( 'Table', WP_TABLE_RELOADED_TEXTDOMAIN ),
1602
+ 'str_EditorButtonAjaxURL' => $ajax_url
1603
+ ) );
1604
+ wp_print_scripts( 'wp-table-reloaded-admin-editor-buttons-js' );
1605
+ }
1606
+ }
1607
+
1608
  } // class WP_Table_Reloaded_Admin
1609
 
1610
  ?>
wp-table-reloaded-frontend.php CHANGED
@@ -2,8 +2,8 @@
2
  /*
3
  File Name: WP-Table Reloaded - Frontend Class (see main file wp-table-reloaded.php)
4
  Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
5
- Description: This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode. The plugin is a completely rewritten and extended version of Alex Rabe's "wp-Table" and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin.
6
- Version: 1.1
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
@@ -22,6 +22,9 @@ class WP_Table_Reloaded_Frontend {
22
  );
23
  var $shortcode = 'table';
24
 
 
 
 
25
  // ###################################################################################################################
26
  function WP_Table_Reloaded_Frontend() {
27
  // load options and table information from database, if not available: default
@@ -36,8 +39,10 @@ class WP_Table_Reloaded_Frontend {
36
  add_filter('widget_text', array( &$this, 'handle_widget_filter' ) );
37
 
38
  // if tablesorter enabled (globally) include javascript
39
- if ( true == $this->options['enable_tablesorter'] )
40
- $this->add_head_tablesorter_js();
 
 
41
 
42
  // if global css shall be used
43
  if ( true == $this->options['use_custom_css'] )
@@ -46,27 +51,50 @@ class WP_Table_Reloaded_Frontend {
46
 
47
  // ###################################################################################################################
48
  // handle [table id=<the_table_id> /] in the_content()
49
- function handle_content_shortcode( $attr ) {
50
-
51
  // parse shortcode attributs, only allow those specified
52
  $default_atts = array(
53
  'id' => 0,
54
- 'output_id' => false,
55
- 'column_widths' => ''
56
- );
 
 
 
 
 
 
57
  $atts = shortcode_atts( $default_atts, $atts );
58
 
59
- // get atts from array to variables
60
- $table_id = $attr['id'];
61
- $output_id = ( true == $attr['output_id'] ) ? true : false;
62
- $column_widths = explode( '|', $attr['column_widths'] );
63
-
64
  if ( !is_numeric( $table_id ) || 1 > $table_id || false == $this->table_exists( $table_id ) )
65
  return "[table \"{$table_id}\" not found /]<br />\n";
66
 
 
 
 
67
  $table = $this->load_table( $table_id );
68
 
69
- $output = $this->render_table( $table, $column_widths, $output_id );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
 
71
  return $output;
72
  }
@@ -95,41 +123,45 @@ class WP_Table_Reloaded_Frontend {
95
 
96
  // ###################################################################################################################
97
  // echo content of array
98
- function render_table( $table, $column_widths, $output_id ) {
99
  // classes that will be added to <table class=...>, can be used for css-styling
100
  $cssclasses = array( 'wp-table-reloaded', "wp-table-reloaded-id-{$table['id']}" );
101
  $cssclasses = implode( ' ', $cssclasses );
102
 
103
- $id_output = ( true == $output_id ) ? " id=\"wp-table-reloaded-id-{$table['id']}\"" : '';
 
 
 
 
104
 
105
  $rows = count( $table['data'] );
106
  $cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
107
 
108
- // make array $column_widths have $cols entries
109
- $column_widths = array_pad( $column_widths, $cols, '' );
110
 
111
  $output = '';
112
 
113
  if ( 0 < $rows && 0 < $cols) {
114
 
115
- if ( true == $table['options']['print_name'] )
116
  $output .= '<h2 class="wp-table-reloaded-table-name">' . $this->safe_output( $table['name'] ) . "</h2>\n";
117
 
118
- $output .= "<table{$id_output} class=\"{$cssclasses}\" cellspacing=\"1\" cellpadding=\"0\" border=\"0\">\n";
119
 
120
  foreach( $table['data'] as $row_idx => $row ) {
121
- if ( true == $table['options']['alternating_row_colors'] )
122
  $row_class = ( 1 == ($row_idx % 2) ) ? ' class="even row-' . ( $row_idx + 1 ) . '"' : ' class="odd row-' . ( $row_idx + 1 ) . '"';
123
  else
124
  $row_class = ' class="row-' . ( $row_idx + 1 ) . '"';
125
 
126
  if( 0 == $row_idx ) {
127
- if ( true == $table['options']['first_row_th'] ) {
128
  $output .= "<thead>\n";
129
  $output .= "\t<tr{$row_class}>\n\t\t";
130
  foreach( $row as $col_idx => $cell_content ) {
131
  $col_class = ' class="column-' . ( $col_idx + 1 ) . '"';
132
- $width_style = ( !empty( $column_widths[$col_idx] ) ) ? " style=\"width:{$column_widths[$col_idx]};\"" : '';
133
  $cell_content = $this->safe_output( $cell_content );
134
  $output .= "<th{$col_class}{$width_style}>" . "{$cell_content}" . "</th>";
135
  }
@@ -141,7 +173,7 @@ class WP_Table_Reloaded_Frontend {
141
  $output .= "\t<tr{$row_class}>\n\t\t";
142
  foreach( $row as $col_idx => $cell_content ) {
143
  $col_class = ' class="column-' . ( $col_idx + 1 ) . '"';
144
- $width_style = ( !empty( $column_widths[$col_idx] ) ) ? " style=\"width:{$column_widths[$col_idx]};\"" : '';
145
  $cell_content = $this->safe_output( $cell_content );
146
  $output .= "<td{$col_class}{$width_style}>" . "{$cell_content}" . "</td>";
147
  }
@@ -160,23 +192,20 @@ class WP_Table_Reloaded_Frontend {
160
  $output .= "</tbody>\n";
161
  $output .= "</table>\n";
162
 
163
- if ( true == $table['options']['print_description'] )
164
  $output .= '<span class="wp-table-reloaded-table-description">' . $this->safe_output( $table['description'] ) . "</span>\n";
165
 
166
- $widgets = ( true == $table['options']['alternating_row_colors'] ) ? "{widgets: ['zebra']}" : '';
167
-
168
- if ( true == $table['options']['use_tablesorter'] && true == $table['options']['first_row_th'] && true == $this->options['enable_tablesorter'] ) {
169
- $output .= <<<JSSCRIPT
170
- <script type="text/javascript">
171
- /* <![CDATA[ */
172
- jQuery(document).ready(function($){
173
- $(".wp-table-reloaded-id-{$table['id']}").tablesorter({$widgets});
174
- });
175
- /* ]]> */
176
- </script>
177
- JSSCRIPT;
178
  }
179
- }
 
 
180
  return $output;
181
  }
182
 
@@ -184,30 +213,55 @@ JSSCRIPT;
184
  function safe_output( $string ) {
185
  return stripslashes( $string );
186
  }
187
-
188
  // ###################################################################################################################
189
- // enqueue tablesorter-js-file, if it exists
190
- function add_head_tablesorter_js() {
191
- $jsfile = 'jquery.tablesorter.min.js';
192
- if ( file_exists( WP_TABLE_RELOADED_ABSPATH . 'js/' . $jsfile ) )
193
- wp_enqueue_script( 'wp-table-reloaded-tablesorter-js', WP_TABLE_RELOADED_URL . 'js/' . $jsfile, array( 'jquery' ) );
194
  }
195
-
196
  // ###################################################################################################################
197
  // load and print css-style, (only called if enabled, by wp_head-action)
198
  function add_custom_css() {
199
  // load css filename from options, if option doesnt exist, use default
200
  $css = ( isset( $this->options['custom_css'] ) ) ? $this->options['custom_css'] : '';
201
-
 
202
  if ( !empty( $css ) ) {
203
- $output .= <<<CSSSTYLE
204
  <style type="text/css" media="all">
205
  /* <![CDATA[ */
206
  {$css}
207
  /* ]]> */
208
  </style>
209
  CSSSTYLE;
210
- echo $output;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
211
  }
212
  }
213
 
2
  /*
3
  File Name: WP-Table Reloaded - Frontend Class (see main file wp-table-reloaded.php)
4
  Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
5
+ Description: 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
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
22
  );
23
  var $shortcode = 'table';
24
 
25
+ var $shown_tables = array();
26
+ var $tablesorter_tables = array();
27
+
28
  // ###################################################################################################################
29
  function WP_Table_Reloaded_Frontend() {
30
  // load options and table information from database, if not available: default
39
  add_filter('widget_text', array( &$this, 'handle_widget_filter' ) );
40
 
41
  // if tablesorter enabled (globally) include javascript
42
+ if ( true == $this->options['enable_tablesorter'] ) {
43
+ $this->add_head_jquery_js(); // jquery needed in any case (it's too late to do this, when shortcode is executed
44
+ add_action( 'wp_footer', array( &$this, 'output_tablesorter_js' ) ); // but if we actually need the tablesorter script can be determined in the footer
45
+ }
46
 
47
  // if global css shall be used
48
  if ( true == $this->options['use_custom_css'] )
51
 
52
  // ###################################################################################################################
53
  // handle [table id=<the_table_id> /] in the_content()
54
+ function handle_content_shortcode( $atts ) {
 
55
  // parse shortcode attributs, only allow those specified
56
  $default_atts = array(
57
  'id' => 0,
58
+ 'column_widths' => '',
59
+ 'alternating_row_colors' => -1,
60
+ 'first_row_th' => -1,
61
+ 'print_name' => -1,
62
+ 'print_description' => -1,
63
+ 'use_tablesorter' => -1,
64
+ 'row_offset' => 1,
65
+ 'row_count' => null
66
+ );
67
  $atts = shortcode_atts( $default_atts, $atts );
68
 
69
+ // check if table exists
70
+ $table_id = $atts['id'];
 
 
 
71
  if ( !is_numeric( $table_id ) || 1 > $table_id || false == $this->table_exists( $table_id ) )
72
  return "[table \"{$table_id}\" not found /]<br />\n";
73
 
74
+ // explode from string to array
75
+ $atts['column_widths'] = explode( '|', $atts['column_widths'] );
76
+
77
  $table = $this->load_table( $table_id );
78
 
79
+ // determine options to use (if set in shortcode, use those, otherwise use options from "Edit Table" screen)
80
+ $output_options = array();
81
+ foreach ( $atts as $key => $value ) {
82
+ // have to check this, because strings 'true' or 'false' are not recognized as boolean!
83
+ if ( 'true' == strtolower( $value ) )
84
+ $output_options[ $key ] = true;
85
+ elseif ( 'false' == strtolower( $value ) )
86
+ $output_options[ $key ] = false;
87
+ else
88
+ $output_options[ $key ] = ( -1 !== $value ) ? $value : $table['options'][ $key ] ;
89
+ }
90
+
91
+ // how often was table displayed on this page yet? get its HTML ID
92
+ $count = ( isset( $this->shown_tables[ $table_id ] ) ) ? $this->shown_tables[ $table['id'] ] : 0;
93
+ $count = $count + 1;
94
+ $this->shown_tables[ $table_id ] = $count;
95
+ $output_options[ 'html_id' ] = "wp-table-reloaded-id-{$table_id}-no-{$count}";
96
+
97
+ $output = $this->render_table( $table, $output_options );
98
 
99
  return $output;
100
  }
123
 
124
  // ###################################################################################################################
125
  // echo content of array
126
+ function render_table( $table, $output_options ) {
127
  // classes that will be added to <table class=...>, can be used for css-styling
128
  $cssclasses = array( 'wp-table-reloaded', "wp-table-reloaded-id-{$table['id']}" );
129
  $cssclasses = implode( ' ', $cssclasses );
130
 
131
+ // if row_offset or row_count were given, we cut that part from the table and show just that
132
+ if ( null === $output_options['row_count'] )
133
+ $table['data'] = array_slice( $table['data'], $output_options['row_offset'] - 1 ); // -1 because we start from 1
134
+ else
135
+ $table['data'] = array_slice( $table['data'], $output_options['row_offset'] - 1 , $output_options['row_count'] ); // -1 because we start from 1
136
 
137
  $rows = count( $table['data'] );
138
  $cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
139
 
140
+ // make array $shortcode_atts['column_widths'] have $cols entries
141
+ $output_options['column_widths'] = array_pad( $output_options['column_widths'], $cols, '' );
142
 
143
  $output = '';
144
 
145
  if ( 0 < $rows && 0 < $cols) {
146
 
147
+ if ( true == $output_options['print_name'] )
148
  $output .= '<h2 class="wp-table-reloaded-table-name">' . $this->safe_output( $table['name'] ) . "</h2>\n";
149
 
150
+ $output .= "<table id=\"{$output_options['html_id']}\" class=\"{$cssclasses}\" cellspacing=\"1\" cellpadding=\"0\" border=\"0\">\n";
151
 
152
  foreach( $table['data'] as $row_idx => $row ) {
153
+ if ( true == $output_options['alternating_row_colors'] )
154
  $row_class = ( 1 == ($row_idx % 2) ) ? ' class="even row-' . ( $row_idx + 1 ) . '"' : ' class="odd row-' . ( $row_idx + 1 ) . '"';
155
  else
156
  $row_class = ' class="row-' . ( $row_idx + 1 ) . '"';
157
 
158
  if( 0 == $row_idx ) {
159
+ if ( true == $output_options['first_row_th'] ) {
160
  $output .= "<thead>\n";
161
  $output .= "\t<tr{$row_class}>\n\t\t";
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
  }
173
  $output .= "\t<tr{$row_class}>\n\t\t";
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
  }
192
  $output .= "</tbody>\n";
193
  $output .= "</table>\n";
194
 
195
+ if ( true == $output_options['print_description'] )
196
  $output .= '<span class="wp-table-reloaded-table-description">' . $this->safe_output( $table['description'] ) . "</span>\n";
197
 
198
+ // if alternating row colors, we want to keep those when sorting
199
+ $widgets = ( true == $output_options['alternating_row_colors'] ) ? "{widgets: ['zebra']}" : '';
200
+
201
+ // eventually add this table to list of tables which will be tablesorted and thus be included in the script call in wp_footer
202
+ if ( true == $output_options['use_tablesorter'] && true == $output_options['first_row_th'] ) {
203
+ // check if tablesorter is generally enabled already done
204
+ $this->tablesorter_tables[ $output_options['html_id'] ] = $widgets;
 
 
 
 
 
205
  }
206
+
207
+ } // endif rows and cols exist
208
+
209
  return $output;
210
  }
211
 
213
  function safe_output( $string ) {
214
  return stripslashes( $string );
215
  }
216
+
217
  // ###################################################################################################################
218
+ // enqueue jquery-js-file
219
+ function add_head_jquery_js() {
220
+ wp_enqueue_script( 'jquery' );
 
 
221
  }
222
+
223
  // ###################################################################################################################
224
  // load and print css-style, (only called if enabled, by wp_head-action)
225
  function add_custom_css() {
226
  // load css filename from options, if option doesnt exist, use default
227
  $css = ( isset( $this->options['custom_css'] ) ) ? $this->options['custom_css'] : '';
228
+ $css = stripslashes( $css );
229
+
230
  if ( !empty( $css ) ) {
231
+ echo <<<CSSSTYLE
232
  <style type="text/css" media="all">
233
  /* <![CDATA[ */
234
  {$css}
235
  /* ]]> */
236
  </style>
237
  CSSSTYLE;
238
+ }
239
+ }
240
+
241
+ // ###################################################################################################################
242
+ // output tablesorter execution js for all tables in wp_footer
243
+ function output_tablesorter_js() {
244
+ $jsfile = 'jquery.tablesorter.min.js'; // filename of the tablesorter script
245
+
246
+ if ( 0 < count( $this->tablesorter_tables ) && file_exists( WP_TABLE_RELOADED_ABSPATH . 'js/' . $jsfile ) ) {
247
+
248
+ // we have tables that shall be sortable, so we load the js
249
+ wp_register_script( 'wp-table-reloaded-tablesorter-js', WP_TABLE_RELOADED_URL . 'js/' . $jsfile, array( 'jquery' ) );
250
+ wp_print_scripts( 'wp-table-reloaded-tablesorter-js' );
251
+
252
+ // generate the commands to make them sortable
253
+ $commands = "\n";
254
+ foreach ( $this->tablesorter_tables as $html_id => $widgets )
255
+ $commands .= "\t$(\"#{$html_id}\").tablesorter({$widgets});\n";
256
+
257
+ // and echo the commands
258
+ echo <<<JSSCRIPT
259
+ <script type="text/javascript">
260
+ /* <![CDATA[ */
261
+ jQuery(document).ready(function($){{$commands}});
262
+ /* ]]> */
263
+ </script>
264
+ JSSCRIPT;
265
  }
266
  }
267
 
wp-table-reloaded.php CHANGED
@@ -2,8 +2,8 @@
2
  /*
3
  Plugin Name: WP-Table Reloaded
4
  Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
5
- Description: This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets by using a shortcode. The plugin is a completely rewritten and extended version of Alex Rabe's "wp-Table" and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin.
6
- Version: 1.1
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
@@ -40,7 +40,6 @@ if ( !defined( 'WP_TABLE_RELOADED_URL' ) )
40
  if ( !defined( 'WP_TABLE_RELOADED_BASENAME' ) )
41
  define( 'WP_TABLE_RELOADED_BASENAME', plugin_basename( __FILE__ ) );
42
 
43
-
44
  // decide whether admin or frontend
45
  if ( is_admin() ) {
46
  // we are in admin mode
@@ -58,6 +57,14 @@ if ( is_admin() ) {
58
  include_once ( WP_TABLE_RELOADED_ABSPATH . 'wp-table-reloaded-frontend.php' );
59
  if ( class_exists( 'WP_Table_Reloaded_Frontend' ) )
60
  $WP_Table_Reloaded_Frontend = new WP_Table_Reloaded_Frontend();
 
 
 
 
 
 
 
 
61
  }
62
  }
63
 
2
  /*
3
  Plugin Name: WP-Table Reloaded
4
  Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
5
+ Description: This plugin allows you to create and 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
7
  Author: Tobias B&auml;thge
8
  Author URI: http://tobias.baethge.com/
9
  */
40
  if ( !defined( 'WP_TABLE_RELOADED_BASENAME' ) )
41
  define( 'WP_TABLE_RELOADED_BASENAME', plugin_basename( __FILE__ ) );
42
 
 
43
  // decide whether admin or frontend
44
  if ( is_admin() ) {
45
  // we are in admin mode
57
  include_once ( WP_TABLE_RELOADED_ABSPATH . 'wp-table-reloaded-frontend.php' );
58
  if ( class_exists( 'WP_Table_Reloaded_Frontend' ) )
59
  $WP_Table_Reloaded_Frontend = new WP_Table_Reloaded_Frontend();
60
+
61
+ // ###################################################################################################################
62
+ // add template tag function to be used anywhere in the template
63
+ function wp_table_reloaded_print_table( $table_query ) {
64
+ global $WP_Table_Reloaded_Frontend;
65
+ parse_str( $table_query, $atts );
66
+ echo $WP_Table_Reloaded_Frontend->handle_content_shortcode( $atts );
67
+ }
68
  }
69
  }
70