* [PATCH] system.cgi: correctly translate CPU frequency
@ 2020-04-11 9:02 Peter Müller
2020-04-11 9:32 ` Michael Tremer
0 siblings, 1 reply; 2+ messages in thread
From: Peter Müller @ 2020-04-11 9:02 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2027 bytes --]
The CPU frequency diagram used the same "translation" as the CPU load,
which was confusing. This patch introduces a dedicated translation for
"CPU frequency", which makes things a little bit better but still does
not solve a Deppenleerzeichen ("CPU-Frequenz Diagramm") in the German
translation.
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
html/cgi-bin/system.cgi | 2 +-
langs/de/cgi-bin/de.pl | 1 +
langs/en/cgi-bin/en.pl | 1 +
3 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/html/cgi-bin/system.cgi b/html/cgi-bin/system.cgi
index 487ba996c..d7db9406a 100644
--- a/html/cgi-bin/system.cgi
+++ b/html/cgi-bin/system.cgi
@@ -61,7 +61,7 @@ if ( $querry[0] =~ "cpufreq"){
&Header::closebox();
if ( -e "$mainsettings{'RRDLOG'}/collectd/localhost/cpufreq/cpufreq-0.rrd"){
- &Header::openbox('100%', 'center', "CPU $Lang::tr{'graph'}");
+ &Header::openbox('100%', 'center', "$Lang::tr{'cpu frequency'} $Lang::tr{'graph'}");
&Graphs::makegraphbox("system.cgi","cpufreq","day");
&Header::closebox();
}
diff --git a/langs/de/cgi-bin/de.pl b/langs/de/cgi-bin/de.pl
index c3702cc09..9f1768e78 100644
--- a/langs/de/cgi-bin/de.pl
+++ b/langs/de/cgi-bin/de.pl
@@ -662,6 +662,7 @@
'country' => 'Land',
'country codes and flags' => 'Länder und Länderkennungen',
'countrycode' => 'Kennung',
+'cpu frequency' => 'CPU-Frequenz',
'cpu frequency per' => 'CPU-Frequenz pro',
'cpu idle usage' => 'Leerlauf CPU-Nutzung',
'cpu interrupt usage' => 'Interrupt CPU-Nutzung',
diff --git a/langs/en/cgi-bin/en.pl b/langs/en/cgi-bin/en.pl
index 3f3e46641..3d8e3ceca 100644
--- a/langs/en/cgi-bin/en.pl
+++ b/langs/en/cgi-bin/en.pl
@@ -678,6 +678,7 @@
'country' => 'Country',
'country codes and flags' => 'Country Codes and Flags:',
'countrycode' => 'Code',
+'cpu frequency' => 'CPU frequency',
'cpu frequency per' => 'CPU frequency per',
'cpu idle usage' => 'Idle CPU Usage',
'cpu interrupt usage' => 'Interrupt CPU Usage',
--
2.16.4
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] system.cgi: correctly translate CPU frequency
2020-04-11 9:02 [PATCH] system.cgi: correctly translate CPU frequency Peter Müller
@ 2020-04-11 9:32 ` Michael Tremer
0 siblings, 0 replies; 2+ messages in thread
From: Michael Tremer @ 2020-04-11 9:32 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2255 bytes --]
Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
> On 11 Apr 2020, at 10:02, Peter Müller <peter.mueller(a)ipfire.org> wrote:
>
> The CPU frequency diagram used the same "translation" as the CPU load,
> which was confusing. This patch introduces a dedicated translation for
> "CPU frequency", which makes things a little bit better but still does
> not solve a Deppenleerzeichen ("CPU-Frequenz Diagramm") in the German
> translation.
>
> Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
> ---
> html/cgi-bin/system.cgi | 2 +-
> langs/de/cgi-bin/de.pl | 1 +
> langs/en/cgi-bin/en.pl | 1 +
> 3 files changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/html/cgi-bin/system.cgi b/html/cgi-bin/system.cgi
> index 487ba996c..d7db9406a 100644
> --- a/html/cgi-bin/system.cgi
> +++ b/html/cgi-bin/system.cgi
> @@ -61,7 +61,7 @@ if ( $querry[0] =~ "cpufreq"){
> &Header::closebox();
>
> if ( -e "$mainsettings{'RRDLOG'}/collectd/localhost/cpufreq/cpufreq-0.rrd"){
> - &Header::openbox('100%', 'center', "CPU $Lang::tr{'graph'}");
> + &Header::openbox('100%', 'center', "$Lang::tr{'cpu frequency'} $Lang::tr{'graph'}");
> &Graphs::makegraphbox("system.cgi","cpufreq","day");
> &Header::closebox();
> }
> diff --git a/langs/de/cgi-bin/de.pl b/langs/de/cgi-bin/de.pl
> index c3702cc09..9f1768e78 100644
> --- a/langs/de/cgi-bin/de.pl
> +++ b/langs/de/cgi-bin/de.pl
> @@ -662,6 +662,7 @@
> 'country' => 'Land',
> 'country codes and flags' => 'Länder und Länderkennungen',
> 'countrycode' => 'Kennung',
> +'cpu frequency' => 'CPU-Frequenz',
> 'cpu frequency per' => 'CPU-Frequenz pro',
> 'cpu idle usage' => 'Leerlauf CPU-Nutzung',
> 'cpu interrupt usage' => 'Interrupt CPU-Nutzung',
> diff --git a/langs/en/cgi-bin/en.pl b/langs/en/cgi-bin/en.pl
> index 3f3e46641..3d8e3ceca 100644
> --- a/langs/en/cgi-bin/en.pl
> +++ b/langs/en/cgi-bin/en.pl
> @@ -678,6 +678,7 @@
> 'country' => 'Country',
> 'country codes and flags' => 'Country Codes and Flags:',
> 'countrycode' => 'Code',
> +'cpu frequency' => 'CPU frequency',
> 'cpu frequency per' => 'CPU frequency per',
> 'cpu idle usage' => 'Idle CPU Usage',
> 'cpu interrupt usage' => 'Interrupt CPU Usage',
> --
> 2.16.4
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-04-11 9:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-11 9:02 [PATCH] system.cgi: correctly translate CPU frequency Peter Müller
2020-04-11 9:32 ` Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox