Git
Threads by month
- ----- 2025 -----
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
August 2011
- 8 participants
- 476 discussions

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_2-16727-g9cda174
by Michal Čihař 22 Aug '11
by Michal Čihař 22 Aug '11
22 Aug '11
The branch, master has been updated
via 9cda17487c6068fdd839bc99d8223dd07a028cbb (commit)
from 19ab72bf8584affddda369cae8d16a0b00c5cc4a (commit)
- Log -----------------------------------------------------------------
commit 9cda17487c6068fdd839bc99d8223dd07a028cbb
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 22 15:56:01 2011 +0200
Fix CSS rule
-----------------------------------------------------------------------
Summary of changes:
libraries/Theme.class.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libraries/Theme.class.php b/libraries/Theme.class.php
index 1aca278d..817e4c3 100644
--- a/libraries/Theme.class.php
+++ b/libraries/Theme.class.php
@@ -401,7 +401,7 @@ class PMA_Theme
$result[] = ' color: ' . $GLOBALS['cfg']['SQP']['fmtColor']['punct'] . ';';
$result[] = '}';
$result[] = 'span.cm-mysql-word {';
- $result[] = ' color: ' . $GLOBALS['cfg']['SQP']['fmtColor']['alpha'] . ';';
+ $result[] = ' color: ' . $GLOBALS['cfg']['SQP']['fmtColor']['alpha_identifier'] . ';';
$result[] = '}';
$result[] = 'span.cm-builtin {';
$result[] = ' color: ' . $GLOBALS['cfg']['SQP']['fmtColor']['alpha_functionName'] . ';';
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_2-16726-g19ab72b
by Michal Čihař 22 Aug '11
by Michal Čihař 22 Aug '11
22 Aug '11
The branch, master has been updated
via 19ab72bf8584affddda369cae8d16a0b00c5cc4a (commit)
from a59daa10b5b5dc58a754b9cd53de3ce1ab52d633 (commit)
- Log -----------------------------------------------------------------
commit 19ab72bf8584affddda369cae8d16a0b00c5cc4a
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 22 15:52:35 2011 +0200
One place to generate CodeMirror CSS
-----------------------------------------------------------------------
Summary of changes:
libraries/Theme.class.php | 43 +++++++++++++++++++++++++++++++
themes/original/css/theme_right.css.php | 34 +-----------------------
themes/pmahomme/css/theme_right.css.php | 34 +-----------------------
3 files changed, 45 insertions(+), 66 deletions(-)
diff --git a/libraries/Theme.class.php b/libraries/Theme.class.php
index 155d34d..1aca278d 100644
--- a/libraries/Theme.class.php
+++ b/libraries/Theme.class.php
@@ -377,5 +377,48 @@ class PMA_Theme
}
return implode("\n", $result);
}
+
+ /**
+ * Returns CSS styles for CodeMirror editor based on query formatter colors.
+ *
+ * @return string CSS code.
+ */
+ function getCssCodeMirror()
+ {
+ $result[] = 'span.cm-keyword, span.cm-statement-verb {';
+ $result[] = ' color: ' . $GLOBALS['cfg']['SQP']['fmtColor']['alpha_reservedWord'] . ';';
+ $result[] = '}';
+ $result[] = 'span.cm-variable {';
+ $result[] = ' color: ' . $GLOBALS['cfg']['SQP']['fmtColor']['alpha_identifier'] . ';';
+ $result[] = '}';
+ $result[] = 'span.cm-comment {';
+ $result[] = ' color: ' . $GLOBALS['cfg']['SQP']['fmtColor']['comment'] . ';';
+ $result[] = '}';
+ $result[] = 'span.cm-mysql-string {';
+ $result[] = ' color: ' . $GLOBALS['cfg']['SQP']['fmtColor']['quote'] . ';';
+ $result[] = '}';
+ $result[] = 'span.cm-operator {';
+ $result[] = ' color: ' . $GLOBALS['cfg']['SQP']['fmtColor']['punct'] . ';';
+ $result[] = '}';
+ $result[] = 'span.cm-mysql-word {';
+ $result[] = ' color: ' . $GLOBALS['cfg']['SQP']['fmtColor']['alpha'] . ';';
+ $result[] = '}';
+ $result[] = 'span.cm-builtin {';
+ $result[] = ' color: ' . $GLOBALS['cfg']['SQP']['fmtColor']['alpha_functionName'] . ';';
+ $result[] = '}';
+ $result[] = 'span.cm-variable-2 {';
+ $result[] = ' color: ' . $GLOBALS['cfg']['SQP']['fmtColor']['alpha_columnType'] . ';';
+ $result[] = '}';
+ $result[] = 'span.cm-variable-3 {';
+ $result[] = ' color: ' . $GLOBALS['cfg']['SQP']['fmtColor']['alpha_columnAttrib'] . ';';
+ $result[] = '}';
+ $result[] = 'span.cm-separator {';
+ $result[] = ' color: ' . $GLOBALS['cfg']['SQP']['fmtColor']['punct'] . ';';
+ $result[] = '}';
+ $result[] = 'span.cm-number {';
+ $result[] = ' color: ' . $GLOBALS['cfg']['SQP']['fmtColor']['digit_integer'] . ';';
+ $result[] = '}';
+ return implode("\n", $result);
+ }
}
?>
diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php
index 64b4b00..badeb92 100644
--- a/themes/original/css/theme_right.css.php
+++ b/themes/original/css/theme_right.css.php
@@ -2299,39 +2299,7 @@ span.CodeMirror-selected {
.CodeMirror-matchingbracket {color: #0f0 !important;}
.CodeMirror-nonmatchingbracket {color: #f22 !important;}
-span.cm-keyword, span.cm-statement-verb {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha_reservedWord']; ?>;
-}
-span.cm-variable {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha_identifier']; ?>;
-}
-span.cm-comment {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['comment']; ?>;
-}
-span.cm-mysql-string {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['quote']; ?>;
-}
-span.cm-operator {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['punct']; ?>;
-}
-span.cm-mysql-word {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha']; ?>;
-}
-span.cm-builtin {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha_functionName']; ?>;
-}
-span.cm-variable-2 {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha_columnType']; ?>;
-}
-span.cm-variable-3 {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha_columnAttrib']; ?>;
-}
-span.cm-separator {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['punct']; ?>;
-}
-span.cm-number {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['digit_integer']; ?>;
-}
+<?php echo $_SESSION['PMA_Theme']->getCssCodeMirror(); ?>
.colborder {
border-right: solid 1px #FFFFFF;
diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php
index fdfa404..c52a973 100644
--- a/themes/pmahomme/css/theme_right.css.php
+++ b/themes/pmahomme/css/theme_right.css.php
@@ -2670,39 +2670,7 @@ span.CodeMirror-selected {
.CodeMirror-matchingbracket {color: #0f0 !important;}
.CodeMirror-nonmatchingbracket {color: #f22 !important;}
-span.cm-keyword, span.cm-statement-verb {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha_reservedWord']; ?>;
-}
-span.cm-variable {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha_identifier']; ?>;
-}
-span.cm-comment {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['comment']; ?>;
-}
-span.cm-mysql-string {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['quote']; ?>;
-}
-span.cm-operator {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['punct']; ?>;
-}
-span.cm-mysql-word {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha']; ?>;
-}
-span.cm-builtin {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha_functionName']; ?>;
-}
-span.cm-variable-2 {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha_columnType']; ?>;
-}
-span.cm-variable-3 {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha_columnAttrib']; ?>;
-}
-span.cm-separator {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['punct']; ?>;
-}
-span.cm-number {
- color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['digit_integer']; ?>;
-}
+<?php echo $_SESSION['PMA_Theme']->getCssCodeMirror(); ?>
.colborder {
border-right: 1px solid #FFF;
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_2-16725-ga59daa1
by Michal Čihař 22 Aug '11
by Michal Čihař 22 Aug '11
22 Aug '11
The branch, master has been updated
via a59daa10b5b5dc58a754b9cd53de3ce1ab52d633 (commit)
from e898b1ec1918cd2734b69fd8253dd7013f368cd5 (commit)
- Log -----------------------------------------------------------------
commit a59daa10b5b5dc58a754b9cd53de3ce1ab52d633
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 22 15:43:32 2011 +0200
Cleanup po files
-----------------------------------------------------------------------
Summary of changes:
po/af.po | 1 -
po/ar.po | 1 -
po/be.po | 5 -----
po/be(a)latin.po | 5 -----
po/bg.po | 2 --
po/bn.po | 1 -
po/ca.po | 2 --
po/cs.po | 1 -
po/cy.po | 2 --
po/da.po | 2 --
po/de.po | 1 -
po/el.po | 1 -
po/en_GB.po | 1 -
po/et.po | 1 -
po/fa.po | 1 -
po/fi.po | 6 ------
po/fr.po | 1 -
po/gl.po | 6 ------
po/hi.po | 1 -
po/hr.po | 5 -----
po/hu.po | 6 ------
po/it.po | 2 --
po/ka.po | 5 -----
po/lt.po | 1 -
po/mn.po | 1 -
po/nb.po | 2 --
po/nl.po | 2 --
po/pl.po | 2 --
po/pt_BR.po | 6 ------
po/ro.po | 5 -----
po/ru.po | 2 --
po/si.po | 1 -
po/sk.po | 2 --
po/sr.po | 5 -----
po/sr(a)latin.po | 5 -----
po/sv.po | 1 -
po/tt.po | 1 -
po/uk.po | 1 -
po/ur.po | 1 -
po/uz.po | 6 ------
po/uz(a)latin.po | 6 ------
po/zh_CN.po | 1 -
po/zh_TW.po | 2 --
43 files changed, 0 insertions(+), 112 deletions(-)
diff --git a/po/af.po b/po/af.po
index 4675a98..c4364a1 100644
--- a/po/af.po
+++ b/po/af.po
@@ -12560,7 +12560,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Space usage"
#~ msgid "Query Cache usage"
#~ msgstr "Spasie verbruik"
diff --git a/po/ar.po b/po/ar.po
index 6234de2..2df81a5 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -12597,7 +12597,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Space usage"
#~ msgid "Query Cache usage"
#~ msgstr "المساحة المستخدمة"
diff --git a/po/be.po b/po/be.po
index a28c203..8b80f44 100644
--- a/po/be.po
+++ b/po/be.po
@@ -13263,10 +13263,6 @@ msgstr ""
#~ "Каб выбраць сувязь, націсьніце на кропцы злучэньня, як паказана на выяве:"
#, fuzzy
-#~| msgid ""
-#~| "The display field is shown in pink. To set/unset a field as the display "
-#~| "field, click the \"Choose field to display\" icon, then click on the "
-#~| "appropriate field name."
#~ msgid ""
#~ "The display column is shown in pink. To set/unset a column as the display "
#~ "column, click the \"Choose column to display\" icon, then click on the "
@@ -13277,7 +13273,6 @@ msgstr ""
#~ "і націсьніце на адпаведнае імя поля."
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Кэш запытаў"
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index 11e9955..e5e025e 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -13229,10 +13229,6 @@ msgstr ""
#~ "vyjavie:"
#, fuzzy
-#~| msgid ""
-#~| "The display field is shown in pink. To set/unset a field as the display "
-#~| "field, click the \"Choose field to display\" icon, then click on the "
-#~| "appropriate field name."
#~ msgid ""
#~ "The display column is shown in pink. To set/unset a column as the display "
#~ "column, click the \"Choose column to display\" icon, then click on the "
@@ -13243,7 +13239,6 @@ msgstr ""
#~ "adlustravańnia» i naciśnicie na adpaviednaje imia pola."
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Keš zapytaŭ"
diff --git a/po/bg.po b/po/bg.po
index 3e1f2e6..8b0f1af 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -12347,7 +12347,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Filter"
#~ msgid "Filters"
#~ msgstr "Филтър"
@@ -12355,7 +12354,6 @@ msgstr ""
#~ msgstr "За избор на отношение, щракнете:"
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Буфер за заявки"
diff --git a/po/bn.po b/po/bn.po
index b66a8ea..0d4add9 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -13121,7 +13121,6 @@ msgstr ""
#~ msgstr "ক্ষেত্রসমূহ"
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Query cache"
diff --git a/po/ca.po b/po/ca.po
index 0487c32..c52efb3 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -13152,7 +13152,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Filter"
#~ msgid "Filters"
#~ msgstr "Filtre"
@@ -13169,7 +13168,6 @@ msgstr ""
#~ "i clica també en el nom de camp adient."
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Memòria cau de consultes"
diff --git a/po/cs.po b/po/cs.po
index 7dc6b97..d57c76a 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -12736,7 +12736,6 @@ msgstr ""
#~ "ikonu „Zvolte které pole zobrazit“ a poté zvolte odpovídající pole."
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Vyrovnávací paměť dotazů"
diff --git a/po/cy.po b/po/cy.po
index 76a0ba8..0844cbb 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -12631,12 +12631,10 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Filter"
#~ msgid "Filters"
#~ msgstr "Hidlydd"
#, fuzzy
-#~| msgid "Query results"
#~ msgid "Query Cache usage"
#~ msgstr "Gweithrediadau canlyniadau ymholiad"
diff --git a/po/da.po b/po/da.po
index 77a42ca..cbe2efb 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12809,7 +12809,6 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
-#~| msgid "Filter"
#~ msgid "Filters"
#~ msgstr "Filtre"
@@ -12829,7 +12828,6 @@ msgstr ""
#~ "derefter på det pågældende kolonnenavn."
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Forespørgsel-mellemlager"
diff --git a/po/de.po b/po/de.po
index fb1e379..dc69866 100644
--- a/po/de.po
+++ b/po/de.po
@@ -13025,7 +13025,6 @@ msgstr ""
#~ "\"Anzeigespalte wählen\", dann auf den passenden Spaltennamen."
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Abfragen-Cache"
diff --git a/po/el.po b/po/el.po
index 293d03a..d0d355e 100644
--- a/po/el.po
+++ b/po/el.po
@@ -13152,7 +13152,6 @@ msgstr ""
#~ "και μετά πατήστε το κατάλληλο όνομα στήλης."
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Λανθάνουσα μνήμη ερωτήματος"
diff --git a/po/en_GB.po b/po/en_GB.po
index 6980985..5cdc804 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -12866,7 +12866,6 @@ msgstr ""
#~ "appropriate column name."
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Query cache"
diff --git a/po/et.po b/po/et.po
index 261b25d..f30dd10 100644
--- a/po/et.po
+++ b/po/et.po
@@ -13122,7 +13122,6 @@ msgstr ""
#~ msgstr "Et valida suhe, kliki :"
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Päringute vahemälu"
diff --git a/po/fa.po b/po/fa.po
index 317917b..b1d28ed 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -12532,7 +12532,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Space usage"
#~ msgid "Query Cache usage"
#~ msgstr "فضاي استفادهشده"
diff --git a/po/fi.po b/po/fi.po
index 10747f2..0bb467b 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -13490,7 +13490,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Filter"
#~ msgid "Filters"
#~ msgstr "Suodatin"
@@ -13498,10 +13497,6 @@ msgstr ""
#~ msgstr "Valitaksesi relaation, paina :"
#, fuzzy
-#~| msgid ""
-#~| "The display field is shown in pink. To set/unset a field as the display "
-#~| "field, click the \"Choose field to display\" icon, then click on the "
-#~| "appropriate field name."
#~ msgid ""
#~ "The display column is shown in pink. To set/unset a column as the display "
#~ "column, click the \"Choose column to display\" icon, then click on the "
@@ -13512,7 +13507,6 @@ msgstr ""
#~ "kenttänimeä."
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Kyselyvälimuisti"
diff --git a/po/fr.po b/po/fr.po
index 10dc8c9..e681f69 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -13028,7 +13028,6 @@ msgstr ""
#~ "descriptive», puis cliquer sur le nom de colonne approprié."
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Cache des requêtes"
diff --git a/po/gl.po b/po/gl.po
index fffa427..4108d0e 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -13725,7 +13725,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Filter"
#~ msgid "Filters"
#~ msgstr "Filtro"
@@ -13733,10 +13732,6 @@ msgstr ""
#~ msgstr "Para seleccionar unha relación, prema:"
#, fuzzy
-#~| msgid ""
-#~| "The display field is shown in pink. To set/unset a field as the display "
-#~| "field, click the \"Choose field to display\" icon, then click on the "
-#~| "appropriate field name."
#~ msgid ""
#~ "The display column is shown in pink. To set/unset a column as the display "
#~ "column, click the \"Choose column to display\" icon, then click on the "
@@ -13747,7 +13742,6 @@ msgstr ""
#~ "campo a mostrar\" e a seguir o nome do campo apropiado."
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "caché de procuras"
diff --git a/po/hi.po b/po/hi.po
index ded02c6..c15f187 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -12574,7 +12574,6 @@ msgstr ""
#~ msgstr "संबंध चयन करने के लिए क्लिक करें :"
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "क्वेरी कैश"
diff --git a/po/hr.po b/po/hr.po
index 5121c6f..6a4ef77 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -13217,10 +13217,6 @@ msgstr ""
#~ msgstr "Za odabir relacije pritisnite:"
#, fuzzy
-#~| msgid ""
-#~| "The display field is shown in pink. To set/unset a field as the display "
-#~| "field, click the \"Choose field to display\" icon, then click on the "
-#~| "appropriate field name."
#~ msgid ""
#~ "The display column is shown in pink. To set/unset a column as the display "
#~ "column, click the \"Choose column to display\" icon, then click on the "
@@ -13232,7 +13228,6 @@ msgstr ""
#~ "naziv polja."
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Pohrana upita"
diff --git a/po/hu.po b/po/hu.po
index baa5a88..85d520a 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -13315,7 +13315,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Filter"
#~ msgid "Filters"
#~ msgstr "Szűrő"
@@ -13323,10 +13322,6 @@ msgstr ""
#~ msgstr "A kapcsolat kiválasztásához, kattintson :"
#, fuzzy
-#~| msgid ""
-#~| "The display field is shown in pink. To set/unset a field as the display "
-#~| "field, click the \"Choose field to display\" icon, then click on the "
-#~| "appropriate field name."
#~ msgid ""
#~ "The display column is shown in pink. To set/unset a column as the display "
#~ "column, click the \"Choose column to display\" icon, then click on the "
@@ -13337,7 +13332,6 @@ msgstr ""
#~ "a megjelenítendő mezőt\" ikonra, majd kattintson a megfelelő mező nevére."
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Lekérdezési gyorsítótár"
diff --git a/po/it.po b/po/it.po
index ca9d5d8..d957ee7 100644
--- a/po/it.po
+++ b/po/it.po
@@ -13058,7 +13058,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Filter"
#~ msgid "Filters"
#~ msgstr "Filtra"
@@ -13075,7 +13074,6 @@ msgstr ""
#~ "\", e poi clicca sul nome del campo."
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Cache delle query"
diff --git a/po/ka.po b/po/ka.po
index c40599a..a0279f5 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -13562,10 +13562,6 @@ msgstr ""
#~ msgstr "To select relation, click :"
#, fuzzy
-#~| msgid ""
-#~| "The display field is shown in pink. To set/unset a field as the display "
-#~| "field, click the \"Choose field to display\" icon, then click on the "
-#~| "appropriate field name."
#~ msgid ""
#~ "The display column is shown in pink. To set/unset a column as the display "
#~ "column, click the \"Choose column to display\" icon, then click on the "
@@ -13576,7 +13572,6 @@ msgstr ""
#~ "appropriate field name."
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Query cache"
diff --git a/po/lt.po b/po/lt.po
index 5889209..086f566 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -12610,7 +12610,6 @@ msgstr ""
#~ "tada paspauskite ant pasirinkto stulpelio vardo."
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Užklausų saugykla"
diff --git a/po/mn.po b/po/mn.po
index e539d1c..dcd5026 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -12940,7 +12940,6 @@ msgstr ""
#~ msgstr "Холбоо сонгохдоо, дарах нь :"
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Асуудлын нөөцлөл"
diff --git a/po/nb.po b/po/nb.po
index 65095be..cb2baf2 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -13235,7 +13235,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Filter"
#~ msgid "Filters"
#~ msgstr "Filter"
@@ -13252,7 +13251,6 @@ msgstr ""
#~ "på det aktuelle kolonnenavnet."
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Spørringsmellomlager"
diff --git a/po/nl.po b/po/nl.po
index 551437b..1ff8887 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -13155,7 +13155,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Filter"
#~ msgid "Filters"
#~ msgstr "Filter"
@@ -13172,7 +13171,6 @@ msgstr ""
#~ "weer te geven veld."
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Query cache"
diff --git a/po/pl.po b/po/pl.po
index 2ea6c29..50a1a48 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -13520,7 +13520,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Filter"
#~ msgid "Filters"
#~ msgstr "Filtr"
@@ -13528,7 +13527,6 @@ msgstr ""
#~ msgstr "Aby wybrać powiązanie, kliknij :"
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Pamięć podręczna zapytań"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index c995c9a..605a285 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -13010,7 +13010,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Filter"
#~ msgid "Filters"
#~ msgstr "Filtro"
@@ -13018,10 +13017,6 @@ msgstr ""
#~ msgstr "Para selecionar relacionamento, clique :"
#, fuzzy
-#~| msgid ""
-#~| "The display field is shown in pink. To set/unset a field as the display "
-#~| "field, click the \"Choose field to display\" icon, then click on the "
-#~| "appropriate field name."
#~ msgid ""
#~ "The display column is shown in pink. To set/unset a column as the display "
#~ "column, click the \"Choose column to display\" icon, then click on the "
@@ -13032,7 +13027,6 @@ msgstr ""
#~ "então clique no nome do campo apropriado."
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Consulta do cache"
diff --git a/po/ro.po b/po/ro.po
index 70b9228..40429dc 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -13236,10 +13236,6 @@ msgstr ""
#~ msgstr "Pentru a alege relația, faceți clic:"
#, fuzzy
-#~| msgid ""
-#~| "The display field is shown in pink. To set/unset a field as the display "
-#~| "field, click the \"Choose field to display\" icon, then click on the "
-#~| "appropriate field name."
#~ msgid ""
#~ "The display column is shown in pink. To set/unset a column as the display "
#~ "column, click the \"Choose column to display\" icon, then click on the "
@@ -13250,7 +13246,6 @@ msgstr ""
#~ "appropriate field name."
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Cache interogări"
diff --git a/po/ru.po b/po/ru.po
index 70b8d15..04fd017 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -13088,7 +13088,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Filter"
#~ msgid "Filters"
#~ msgstr "Фильтр"
@@ -13105,7 +13104,6 @@ msgstr ""
#~ "отображаемого столбца\" и выберите необходимый столбец."
#, fuzzy
-#~| msgid "Query cache"
#~ msgid "Query Cache usage"
#~ msgstr "Кеш запросов"
diff --git a/po/si.po b/po/si.po
index d9f40ac..052a4c9 100644
--- a/po/si.po
+++ b/po/si.po
@@ -12811,7 +12811,6 @@ msgstr ""
#~ msgst 7 +12811,6 @@ msgstr ""