Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WEBUI JS: Add free/total qtip for disk space
  • Loading branch information
perexg committed Jun 24, 2015
1 parent bd684ee commit 70f4152
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/webui/static/app/tvheadend.js
Expand Up @@ -601,7 +601,9 @@ tvheadend.RootTabPanel = Ext.extend(Ext.TabPanel, {
return val;
};
text = _('Disk space:') + '&nbsp;<b>' + human(bfree) + '/' + human(btotal) + '</b>';
Ext.get(this.diskSpaceItem.tabEl).child('span.x-tab-diskspace', true).innerHTML = text;
var el = Ext.get(this.diskSpaceItem.tabEl).child('span.x-tab-diskspace', true);
el.innerHTML = text;
el.qtip = _('Free: ') + human(bfree) + ' ' + _('Total: ') + human(btotal);
},

onLoginCmdClicked: function(e) {
Expand Down

4 comments on commit 70f4152

@belliash
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OMG xD....

What the hell is "Kreator"?
This tab should be named as "Autor" IMHO. "Kreator" is used as a translation of "Wizard" (I mean setup wizard).


Juz wiem skad sie biora z dupy tlumaczenia jak 'pamiec blyskowa' ....

@belliash
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perex: Could you please change the following:

: src/dvr/dvr_db.c:2166 src/dvr/dvr_autorec.c:1093 src/dvr/dvr_timerec.c:653

msgid "Creator"
msgstr "Kreator"

to:

: src/dvr/dvr_db.c:2166 src/dvr/dvr_autorec.c:1093 src/dvr/dvr_timerec.c:653

msgid "Creator"
msgstr "Autor"

in polish translation, please?

@ProfYaffle
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isn't this precisely what the Transifex 'review' function is for? So someone else can take another look, and refine the translation if necessary?

@belliash
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Drobne bledy? Kolego, tam co 2 rownowaznik zdania jest niepoprawny gramatycznie.
Od kiedy mowi sie "System konfiguracja"? Powinno chyba byc "Konfiguracja systemu", prawda?

To teraz spojrz np na:

  • DVR profile konfiguracji
  • DVR zachowanie
  • EPG skan

I co to jest "System przeznaczenia"?
Od samego poczatku mowilem ze tak bedzie. Co 2 appka po polsku jest bez sensu i nie mozna sie polapac ktora opcja za co odpowiada. Chciales tlumaczyc - to sobie tlumacz, tylko naszego jezyka nie kalecz i pamietaj ze wielu rzeczy nie da sie przetlumaczyc wprost, tak jak usilujesz to robic.
Ja nie zamierzam poswiecac swojego czasu na takie pierdoly.

Please sign in to comment.