From 73d9b0fe45b64a559049fbb1e3a48eeafcf54e40 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Mon, 28 Apr 2014 13:56:15 +0200 Subject: [PATCH 1/6] Translated using Weblate (Greek) Currently translated at 100.0% (2768 of 2768) --- po/el.po | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/po/el.po b/po/el.po index 0e08d6fa8f..9b5e6bb0c8 100644 --- a/po/el.po +++ b/po/el.po @@ -4,14 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.2.0-beta1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2014-04-24 14:50-0400\n" -"PO-Revision-Date: 2014-04-20 13:21+0200\n" +"PO-Revision-Date: 2014-04-28 13:56+0200\n" "Last-Translator: Panagiotis Papazoglou \n" -"Language-Team: Greek \n" +"Language-Team: Greek \n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.9-dev\n" @@ -5640,7 +5639,6 @@ msgid "Maximum databases" msgstr "Μέγιστος αριθμός βάσεων δεδομένων" #: libraries/config/messages.inc.php:402 -#, fuzzy #| msgid "" #| "The number of items that can be displayed on each page of the navigation " #| "tree." @@ -5649,13 +5647,12 @@ msgid "" "the navigation tree." msgstr "" "Ο αριθμός των αντικειμένων που μπορούν να προβληθούν σε κάθε σελίδα στο " -"δέντρο πλοήγησης." +"πρώτο επίπεδο του δέντρου πλοήγησης." #: libraries/config/messages.inc.php:405 -#, fuzzy #| msgid "Maximum items in branch" msgid "Maximum items on first level" -msgstr "Μέγιστος αριθμός αντικειμένων στον κλάδο" +msgstr "Μέγιστος αριθμός αντικειμένων στο πρώτο επίπεδο" #: libraries/config/messages.inc.php:407 msgid "" From 719b1624e3c2cfcf2ce849c3041d5a6c1b5b480a Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 28 Apr 2014 11:48:31 -0400 Subject: [PATCH 2/6] bug #4381 Cannot remove the last remembered sorted column Signed-off-by: Marc Delisle --- ChangeLog | 1 + js/columndelete.js | 3 +++ libraries/Table.class.php | 3 +++ 3 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 947e9034d9..ac16edb02f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,7 @@ phpMyAdmin - ChangeLog 4.2.1.0 (not yet released) - bug #4380 Cannot display table structure with enums containing special characters +- bug #4381 Cannot remove the last remembered sorted column 4.2.0.0 (not yet released) + rfe #1403 Export only triggers diff --git a/js/columndelete.js b/js/columndelete.js index 8282e9bb31..4dead77444 100644 --- a/js/columndelete.js +++ b/js/columndelete.js @@ -47,6 +47,9 @@ function redirect(target, parent) var head = URL['head']; head = head.slice(0,head.indexOf('ORDER+BY')); URL['head'] = head; + // removing the last sort order should have priority over what + // is remembered via the RememberSorting directive + URL['tail'] += '&discard_remembered_sort=1'; } var middle_part = columns.join('%2C+'); url = URL['head'] + middle_part + URL['tail']; diff --git a/libraries/Table.class.php b/libraries/Table.class.php index 001a760e7b..fe4369e220 100644 --- a/libraries/Table.class.php +++ b/libraries/Table.class.php @@ -1606,6 +1606,9 @@ class PMA_Table // do checking based on property if ($property == self::PROP_SORTED_COLUMN) { if (isset($this->uiprefs[$property])) { + if (isset($_REQUEST['discard_remembered_sort'])) { + $this->removeUiProp(self::PROP_SORTED_COLUMN); + } // check if the column name exists in this table $tmp = explode(' ', $this->uiprefs[$property]); $colname = $tmp[0]; From 019a4b70f0dd4ee8333adc4228ea3470847d8733 Mon Sep 17 00:00:00 2001 From: Claus Svalekjaer Date: Mon, 28 Apr 2014 14:05:13 +0200 Subject: [PATCH 3/6] Translated using Weblate (Danish) Currently translated at 99.9% (2767 of 2768) --- po/da.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/da.po b/po/da.po index 4de883e0f6..9249f3789b 100644 --- a/po/da.po +++ b/po/da.po @@ -4,10 +4,9 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.2.0-beta1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2014-04-24 13:06-0400\n" -"PO-Revision-Date: 2014-04-24 20:57+0200\n" +"PO-Revision-Date: 2014-04-28 14:05+0200\n" "Last-Translator: Claus Svalekjaer \n" -"Language-Team: Danish " -"\n" +"Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -12441,9 +12440,10 @@ msgid "Timeline" msgstr "Tidslinje" #: libraries/tbl_chart.lib.php:64 +#, fuzzy msgctxt "Chart type" msgid "Scatter" -msgstr "" +msgstr "Spredning" #: libraries/tbl_chart.lib.php:82 msgid "Stacked" From c3a6c993d37f0c180fd9810246b0a633931605c8 Mon Sep 17 00:00:00 2001 From: Giovanni Sora Date: Mon, 28 Apr 2014 16:08:16 +0200 Subject: [PATCH 4/6] Translated using Weblate (Interlingua) Currently translated at 47.6% (1320 of 2768) --- po/ia.po | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/po/ia.po b/po/ia.po index d1fd11c2e7..5d99002cb4 100644 --- a/po/ia.po +++ b/po/ia.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.2.0-beta1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2014-04-24 14:50-0400\n" -"PO-Revision-Date: 2014-04-22 17:21+0200\n" +"PO-Revision-Date: 2014-04-28 16:08+0200\n" "Last-Translator: Giovanni Sora \n" -"Language-Team: Interlingua \n" +"Language-Team: Interlingua " +"\n" +"Language: ia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ia\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.9-dev\n" @@ -5650,7 +5650,6 @@ msgid "Maximum databases" msgstr "Maxime numero de base de datos" #: libraries/config/messages.inc.php:402 -#, fuzzy #| msgid "" #| "The number of items that can be displayed on each page of the navigation " #| "tree." @@ -5658,14 +5657,13 @@ msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -"Le numero de elementos que on pote monstrar sur cata pagina del arbore de " -"navigation." +"Le numero de elementos que on pote monstrar sur cata pagina super le prime " +"nivello del arbore de navigation." #: libraries/config/messages.inc.php:405 -#, fuzzy #| msgid "Maximum items in branch" msgid "Maximum items on first level" -msgstr "Maxime elementos in un ramo" +msgstr "Maxime elementos sur le prime nivello" #: libraries/config/messages.inc.php:407 msgid "" From 1d65e099c6711b79d8248a21a9c434a5adca1a1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BAlio=20Sebasti=C3=A3o?= Date: Mon, 28 Apr 2014 17:07:14 +0200 Subject: [PATCH 5/6] Translated using Weblate (Portuguese) Currently translated at 53.1% (1472 of 2768) --- po/pt.po | 117 ++++++++++++++++++++++--------------------------------- 1 file changed, 46 insertions(+), 71 deletions(-) diff --git a/po/pt.po b/po/pt.po index 45b0768533..6d6935d77d 100644 --- a/po/pt.po +++ b/po/pt.po @@ -4,14 +4,14 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.2.0-beta1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2014-04-24 14:50-0400\n" -"PO-Revision-Date: 2014-04-02 11:56+0200\n" -"Last-Translator: Michal Čihař \n" -"Language-Team: Portuguese \n" +"PO-Revision-Date: 2014-04-28 17:07+0200\n" +"Last-Translator: Júlio Sebastião \n" +"Language-Team: Portuguese " +"\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.9-dev\n" @@ -218,16 +218,16 @@ msgid "The database name is empty!" msgstr "O nome da base de dados está vazio!" #: db_operations.php:130 -#, fuzzy, php-format +#, php-format #| msgid "Database %1$s has been renamed to %2$s." msgid "Database %1$s has been renamed to %2$s." -msgstr "O nome da base de dados %1$s foi alterado para %2$s" +msgstr "O nome da base de dados %1$s foi alterado para %2$s." #: db_operations.php:136 -#, fuzzy, php-format +#, php-format #| msgid "Database %1$s has been copied to %2$s." msgid "Database %1$s has been copied to %2$s." -msgstr "A base de dados %1$s foi copiada para %2$s" +msgstr "A base de dados %1$s foi copiada para %2$s." #: db_operations.php:260 #, php-format @@ -293,10 +293,9 @@ msgstr[0] "%s tabela" msgstr[1] "%s tabelas" #: db_qbe.php:102 -#, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to choose at least one column to display!" -msgstr "Tem que escolher pelo menos uma coluna para mostrar" +msgstr "Deve escolher pelo menos uma coluna para mostrar!" #: db_qbe.php:123 #, php-format @@ -589,7 +588,6 @@ msgid "Output" msgstr "Saída" #: gis_data_editor.php:410 -#, fuzzy #| msgid "" #| "Choose \"GeomFromText\" from the \"Function\" column and paste the string " #| "below into the \"Value\" field" @@ -597,8 +595,8 @@ msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." msgstr "" -"Escolhe \"GeomFromText\" da coluna \"Função\" e cola a linha de caracteres " -"abaixo no campo \"Valor\"" +"Escolhe \"GeomFromText\" da coluna \"Função\" e cola a lista de caracteres " +"abaixo no campo \"Valor\"." #: import.php:116 #, php-format @@ -626,10 +624,9 @@ msgstr "" #: import.php:409 import.php:470 libraries/File.class.php:433 #: libraries/File.class.php:527 -#, fuzzy #| msgid "File could not be read" msgid "File could not be read!" -msgstr "Não foi possível ler o ficheiro" +msgstr "Não foi possível ler o ficheiro!" #: import.php:418 import.php:429 import.php:450 import.php:461 #: libraries/File.class.php:593 @@ -3442,10 +3439,9 @@ msgid "This MySQL server does not support the %s storage engine." msgstr "Este servidor MySQL não suporta o mecanismo de armazenamento %s." #: libraries/Table.class.php:385 -#, fuzzy #| msgid "unknown table status: " msgid "Unknown table status:" -msgstr "Estado da tabela desconhecido: " +msgstr "Estado da tabela desconhecido:" #: libraries/Table.class.php:796 #, php-format @@ -4596,7 +4592,7 @@ msgid "" msgstr "" #: libraries/config/ServerConfigChecks.class.php:423 -#, fuzzy, php-format +#, php-format #| msgid "" #| "This %soption%s should be disabled as it allows attackers to bruteforce " #| "login to any MySQL server. If you feel this is necessary, use %strusted " @@ -4609,12 +4605,10 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Esta %soption%s deveria ser desativada pois ela permite que invasores façam " -"login por força bruta em qualquer servidor MySQL. Se você achar que é " -"necessária, use a %slista de proxies confiáveis%s. Entretanto, proteções " -"baseadas no protocolo IP podem não ser confiáveis se o seu endereço IP " -"pertence a um ISP onde centenas de utilizadores, incluindo você, estão " -"conectados." +"Se acha que é necessário, use medidas de proteção adicionais - opções %shost " +"authentication%s e %strusted proxies list%s. No entanto, proteções baseadas " +"no protocolo IP podem não ser confiáveis se o seu endereço IP pertence a um " +"ISP onde milhares de utilizadores, incluindo você, estão conectados." #: libraries/config/ServerConfigChecks.class.php:431 #, php-format @@ -4676,17 +4670,15 @@ msgid "Empty signon URL while using [kbd]signon[/kbd] authentication method!" msgstr "URL signon vazia ao usar método de autenticação signon" #: libraries/config/Validator.class.php:369 -#, fuzzy #| msgid "" #| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" msgid "" "Empty phpMyAdmin control user while using phpMyAdmin configuration storage!" msgstr "" -"Utilizador de controle phpMyAdmin vazio ao usar phpMyAdmin configuration " -"storage" +"Utilizador de controlo phpMyAdmin vazio ao aceder ao armazenamento de " +"configuração do phpMyAdmin!" #: libraries/config/Validator.class.php:374 -#, fuzzy #| msgid "" #| "Empty phpMyAdmin control user password while using phpMyAdmin " #| "configuration storage" @@ -4694,8 +4686,8 @@ msgid "" "Empty phpMyAdmin control user password while using phpMyAdmin configuration " "storage!" msgstr "" -"Senha do utilizador de controle phpMyAdmin vazia ao usar phpMyAdmin " -"configuration storage" +"Senha do utilizador de controlo phpMyAdmin vazia ao aceder ao armazenamento " +"de configuração do phpMyAdmin!" #: libraries/config/Validator.class.php:458 msgid "Incorrect value:" @@ -5260,9 +5252,8 @@ msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -"Ordem de classificação para itens numa caixa de seleção de chave " -"estrangeira; [kbd]conteúdo[/kbd] é o dado referenciado, [kbd]id[/kbd] é o " -"valor da chave" +"Ordena objetos numa caixa de selecção de chaves estrangeiras; " +"[kbd]conteúdo[/kbd] é o dado referenciado, [kbd]id[/kbd] é o valor da chave." #: libraries/config/messages.inc.php:205 msgid "Foreign key dropdown order" @@ -5309,30 +5300,27 @@ msgid "Developer" msgstr "Programador" #: libraries/config/messages.inc.php:216 -#, fuzzy #| msgid "Settings for phpMyAdmin developers" msgid "Settings for phpMyAdmin developers." -msgstr "Configurações para programadores phpMyAdmin" +msgstr "Configurações para programadores phpMyAdmin." #: libraries/config/messages.inc.php:217 msgid "Edit mode" msgstr "Modo de edição" #: libraries/config/messages.inc.php:218 -#, fuzzy #| msgid "Customize edit mode" msgid "Customize edit mode." -msgstr "Personalizar modo de edição" +msgstr "Personalizar modo de edição." #: libraries/config/messages.inc.php:220 msgid "Export defaults" msgstr "Exportar predefinições" #: libraries/config/messages.inc.php:221 -#, fuzzy #| msgid "Customize default export options" msgid "Customize default export options." -msgstr "Personalizar as opções de exportação padrão" +msgstr "Personalizar as opções de exportação por defeito." #: libraries/config/messages.inc.php:222 libraries/config/messages.inc.php:283 #: setup/frames/menu.inc.php:22 @@ -5344,30 +5332,27 @@ msgid "General" msgstr "Geral" #: libraries/config/messages.inc.php:224 -#, fuzzy #| msgid "Set some commonly used options" msgid "Set some commonly used options." -msgstr "Define algumas opções comumente utilizadas" +msgstr "Define algumas opções usadas frequentemente." #: libraries/config/messages.inc.php:226 msgid "Import defaults" msgstr "Importar predefinições" #: libraries/config/messages.inc.php:227 -#, fuzzy #| msgid "Customize default common import options" msgid "Customize default common import options." -msgstr "Personalizar opções de importação padrão comuns" +msgstr "Personalizar opções de importação por defeito comuns." #: libraries/config/messages.inc.php:228 msgid "Import / export" msgstr "Importar / exportar" #: libraries/config/messages.inc.php:230 -#, fuzzy #| msgid "Set import and export directories and compression options" msgid "Set import and export directories and compression options." -msgstr "Define diretórios de importação e exportação e opções de compressão" +msgstr "Define diretórios de importação e exportação e opções de compressão." #: libraries/config/messages.inc.php:231 msgid "LaTeX" @@ -5377,17 +5362,16 @@ msgstr "LaTeX" #, fuzzy #| msgid "Databases display options" msgid "Databases display options." -msgstr "Exibir as opções das Bases de dados" +msgstr "Exibir as opções das Bases de dados." #: libraries/config/messages.inc.php:235 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Painel de navegação" #: libraries/config/messages.inc.php:236 -#, fuzzy #| msgid "Customize appearance of the navigation panel" msgid "Customize appearance of the navigation panel." -msgstr "Personalizar a aparência do painel de navegação" +msgstr "Personalizar a aparência do painel de navegação." #: libraries/config/messages.inc.php:237 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:143 @@ -5395,16 +5379,14 @@ msgid "Servers" msgstr "Servidores" #: libraries/config/messages.inc.php:238 -#, fuzzy #| msgid "Servers display options" msgid "Servers display options." -msgstr "Exibir as opções dos Servidores" +msgstr "Exibir as opções dos servidores." #: libraries/config/messages.inc.php:240 -#, fuzzy #| msgid "Tables display options" msgid "Tables display options." -msgstr "Opções de exibição de tabelas" +msgstr "Opções de exibição de tabelas." #: libraries/config/messages.inc.php:241 setup/frames/menu.inc.php:25 msgid "Main panel" @@ -5419,10 +5401,9 @@ msgid "Other core settings" msgstr "Outras configurações do núcleo" #: libraries/config/messages.inc.php:248 -#, fuzzy #| msgid "Settings that didn't fit anywhere else" msgid "Settings that didn't fit anywhere else." -msgstr "Configurações que não se encaixavam em nenhum outro lugar" +msgstr "Configurações que não se encaixavam em nenhum outro lugar." #: libraries/config/messages.inc.php:249 msgid "Page titles" @@ -5451,7 +5432,6 @@ msgid "Security" msgstr "Segurança" #: libraries/config/messages.inc.php:259 -#, fuzzy #| msgid "" #| "Please note that phpMyAdmin is just a user interface and its features do " #| "not limit MySQL" @@ -5459,8 +5439,8 @@ msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -"Por favor note que o phpMyAdmin é uma interface de utilizador e as suas " -"funcionalidades não limitam o MySQL" +"Por favor repare que o phpMyAdmin é uma interface de utilizador e as suas " +"funcionalidades não limitam o MySQL." #: libraries/config/messages.inc.php:262 msgid "Basic settings" @@ -5471,17 +5451,15 @@ msgid "Authentication" msgstr "Autenticação" #: libraries/config/messages.inc.php:264 -#, fuzzy #| msgid "Authentication settings" msgid "Authentication settings." -msgstr "Configurações de autenticação" +msgstr "Configurações de autenticação." #: libraries/config/messages.inc.php:265 msgid "Server configuration" msgstr "Configuração do servidor" #: libraries/config/messages.inc.php:267 -#, fuzzy #| msgid "" #| "Advanced server configuration, do not change these options unless you " #| "know what they are for" @@ -5490,20 +5468,18 @@ msgid "" "what they are for." msgstr "" "Configurações avançadas do servidor, não altere estas opções a menos que " -"saiba para que são" +"saiba para que são." #: libraries/config/messages.inc.php:270 -#, fuzzy #| msgid "Enter server connection parameters" msgid "Enter server connection parameters." -msgstr "Digite os parâmetros de configuração do servidor" +msgstr "Digite os parâmetros de ligação ao servidor." #: libraries/config/messages.inc.php:271 msgid "Configuration storage" msgstr "Armazenamento de configuração" #: libraries/config/messages.inc.php:273 -#, fuzzy #| msgid "" #| "Configure phpMyAdmin configuration storage to gain access to additional " #| "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] " @@ -5513,9 +5489,9 @@ msgid "" "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -"Faça a configuração de armazenamento do PhpMyAdmin para ter acesso a " +"Configure o armazenamento da configuração do PhpMyAdmin para ter acesso a " "funcionalidades adicionais, consulte [doc@linked-tables]phpMyAdmin " -"configuration storage[/doc] na documentação" +"configuration storage[/doc] na documentação." #: libraries/config/messages.inc.php:277 msgid "Changes tracking" @@ -6206,7 +6182,6 @@ msgid "Missing phpMyAdmin configuration storage tables" msgstr "Tabelas de configuração de armazenamento phpMyAdmin em falta" #: libraries/config/messages.inc.php:501 -#, fuzzy #| msgid "" #| "Disable the default warning that is displayed if a difference between the " #| "MySQL library and server is detected" @@ -6215,7 +6190,7 @@ msgid "" "MySQL library and server is detected." msgstr "" "Desativa o aviso padrão que é mostrado quando é detetada uma diferença entre " -"a livraria MySQL e o servidor" +"a biblioteca MySQL e o servidor." #: libraries/config/messages.inc.php:505 msgid "Server/library difference warning" @@ -8723,7 +8698,7 @@ msgstr "Comentários da tabela" #: libraries/operations.lib.php:808 libraries/server_engines.lib.php:49 msgid "Storage Engine" -msgstr "" +msgstr "Motor de armazenamento" #: libraries/operations.lib.php:1008 msgid "Copy table to (database.table):" @@ -12861,7 +12836,7 @@ msgstr "Tipo de Exportação" #: libraries/tbl_columns_definition_form.lib.php:72 msgid "Storage Engine:" -msgstr "" +msgstr "Motor de armazenamento:" #: libraries/tbl_columns_definition_form.lib.php:76 #, fuzzy From 67a30ea33f64107f006aa762fc2c3af637057643 Mon Sep 17 00:00:00 2001 From: Anders Jonsson Date: Mon, 28 Apr 2014 14:22:19 +0200 Subject: [PATCH 6/6] Translated using Weblate (Swedish) Currently translated at 99.8% (2765 of 2768) --- po/sv.po | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/po/sv.po b/po/sv.po index 32a3cede0e..ce55970527 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,10 +4,9 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.2.0-beta1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2014-04-24 13:06-0400\n" -"PO-Revision-Date: 2014-04-24 22:25+0200\n" +"PO-Revision-Date: 2014-04-28 14:22+0200\n" "Last-Translator: Anders Jonsson \n" -"Language-Team: Swedish " -"\n" +"Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1850,6 +1849,7 @@ msgstr "Klicka för att sortera." #: js/messages.php:345 msgid "Hold shift and click to remove column from ORDER BY clause." msgstr "" +"Håll nere shift och klicka för att ta bort kolumnen från ORDER BY-satsen." #: js/messages.php:346 msgid "Click to mark/unmark." @@ -3169,10 +3169,9 @@ msgid "Recent tables" msgstr "De senaste tabellerna" #: libraries/RecentFavoriteTable.class.php:260 -#, fuzzy #| msgid "Reset" msgid "Recent" -msgstr "Återställ" +msgstr "Senaste" #: libraries/RecentFavoriteTable.class.php:262 #: libraries/config/messages.inc.php:474 @@ -9842,10 +9841,9 @@ msgid "You must provide a trigger name!" msgstr "Du måste ange ett triggernamn!" #: libraries/rte/rte_triggers.lib.php:465 -#, fuzzy #| msgid "You must provide a valid timing for the trigger" msgid "You must provide a valid timing for the trigger!" -msgstr "Du måste ange en giltig tidsgräns för triggern" +msgstr "Du måste ange en giltig tidsgräns för triggern!" #: libraries/rte/rte_triggers.lib.php:472 msgid "You must provide a valid event for the trigger!" @@ -11794,10 +11792,9 @@ msgid "Edit user group: '%s'" msgstr "Redigera användargrupp: '%s'" #: libraries/server_user_groups.lib.php:227 -#, fuzzy #| msgid "No privileges." msgid "User group menu assignments" -msgstr "Inga privilegier." +msgstr "Menytilldelningar för användargrupp" #: libraries/server_user_groups.lib.php:234 msgid "Group name:" @@ -12357,10 +12354,10 @@ msgstr "" "\\xyz' eller 'a\\'b')." #: libraries/tbl_columns_definition_form.lib.php:569 -#, fuzzy, php-format +#, php-format #| msgid "Select referenced key" msgid "Referenced by %s." -msgstr "Välj refererad nyckel" +msgstr "Refereras av %s." #: libraries/tbl_columns_definition_form.lib.php:577 msgid "Is a foreign key." @@ -12377,7 +12374,7 @@ msgstr "efter %s" #: libraries/tbl_columns_definition_form.lib.php:1067 msgid "Edit ENUM/SET values" -msgstr "" +msgstr "Redigera värden på ENUM/SET" #: libraries/tbl_columns_definition_form.lib.php:1092 msgctxt "for default" @@ -13790,8 +13787,8 @@ msgid "" "sorting" msgstr "" "Även om det inte är fel med en hög andel av radsorteringar, bör du se till " -"att frågor som kräver mycket sortering använder de indexerade fälten i " -"ORDER BY-satsen, då detta kommer resultera i mycket snabbare sortering" +"att frågor som kräver mycket sortering använder de indexerade fälten i ORDER " +"BY-satsen, då detta kommer resultera i mycket snabbare sortering" #: libraries/advisory_rules.txt:230 #, php-format