NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Information Community Announcements v
« Previous 1 … 6 7 8 9 10 … 56 Next »
Translations for nPVR and GBPVR

 
  • 0 Vote(s) - 0 Average
Translations for nPVR and GBPVR
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,677
Threads: 767
Joined: Nov 2003
#11
2011-07-04, 06:18 PM
fuchstractor Wrote:How about the right click menu (when watching media) and the Settings dialog, is it possible to translate them?
No, not at this stage. I've only added support for translating the main UI.

I could probably make the context menu and settings screen translateable in a future release though.

Quote:And what about changing values, like pre and post padding, showing "1 minute" and "x minutes". There are strings in MixMan's TL file, but those don't work any more the way they are. (plain "minute" and "minutes" strings). I took a wild guess and tried "% minute" and "% minutes", but as expected they didn't work out. What is the reference for variables?
Usually for this type of thing I try pre-translating the translateable parts of the string. ie, I'd explicitly ask for the translation of "minute" and "minutes" prior to building up the string that displays as "x minutes".

That said, I only use english myself, so its not always clear if there are certain places in the UI where I've forgotten to do this. If you find specific fields that dont do this but should, then let me know and I'll fix them.
fuchstractor
Offline

Junior Member

Posts: 35
Threads: 5
Joined: Apr 2011
#12
2011-07-07, 07:59 PM
sub Wrote:Usually for this type of thing I try pre-translating the translateable parts of the string. ie, I'd explicitly ask for the translation of "minute" and "minutes" prior to building up the string that displays as "x minutes".

That said, I only use english myself, so its not always clear if there are certain places in the UI where I've forgotten to do this. If you find specific fields that dont do this but should, then let me know and I'll fix them.
So far I met two of these.
The 'minute'/'minutes' strings when you initiate a recording (Pre-Padding/Post-Padding).
The 'min' string everywhere where program duration appears (ie: double click on a program in the guide, or in the Recordings section)

The weather plugin also have these problems, but I guess that's not your table.

Other than that, I'd like to point out another issue. At he moment, the same string ('Cancel') is used to stop a recording and giving negative response in context menus. Could you consider changing 'Cancel' to 'Abort' at recording? (From the translation viewpoint, it would be way better and might fits better in English, too.)
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,677
Threads: 767
Joined: Nov 2003
#13
2011-07-07, 08:10 PM
fuchstractor Wrote:So far I met two of these.
The 'minute'/'minutes' strings when you initiate a recording (Pre-Padding/Post-Padding).
The 'min' string everywhere where program duration appears (ie: double click on a program in the guide, or in the Recordings section)
Are you running 2.1.4? Both of these examples you give are translatable in 2.1.4. ie "min", "minute" and "minutes"

Quote:The weather plugin also have these problems, but I guess that's not your table.
Yeah, you'd need to talk to the plugin author about this one.

Quote:Other than that, I'd like to point out another issue. At he moment, the same string ('Cancel') is used to stop a recording and giving negative response in context menus. Could you consider changing 'Cancel' to 'Abort' at recording? (From the translation viewpoint, it would be way better and might fits better in English, too.)
I'll consider it, but its unlikely. I can understand the reason you want this, but I'm used to it the way it is.
fuchstractor
Offline

Junior Member

Posts: 35
Threads: 5
Joined: Apr 2011
#14
2011-07-08, 09:35 AM (This post was last modified: 2011-07-08, 11:09 AM by fuchstractor.)
sub Wrote:Are you running 2.1.4? Both of these examples you give are translatable in 2.1.4. ie "min", "minute" and "minutes"
Yes, my version is current. I must be doing something the wrong way. I tried all possible combinations of leading and trailing spaces, but none of these helped:
Code:
<Translation original="minute" translated="perc"/>
<Translation original="minutes" translated="perc"/>
<Translation original="minutes " translated="perc "/>
<Translation original=" minutes" translated=" perc"/>
<Translation original=" minutes " translated=" perc "/>
It only works like this:
Code:
<Translation original="2 minutes" translated="2 perc"/>
<Translation original="3 minutes" translated="3 perc"/>

...and so on.


What do I do wrong or have I forgotten about?
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,677
Threads: 767
Joined: Nov 2003
#15
2011-07-08, 05:51 PM
Can you see if this patch fixes it?
fuchstractor
Offline

Junior Member

Posts: 35
Threads: 5
Joined: Apr 2011
#16
2011-07-09, 10:14 AM (This post was last modified: 2011-07-09, 02:40 PM by fuchstractor.)
sub Wrote:Can you see if this patch fixes it?
Yes, it does!! And also fixed most issues in the Weather plugin - thank you.

Let me grab this occasion to post another TL related request.

On the main screen there are time and date information on the top right corner. Would it be possible to display those in the 'local' order? It's not crucial, but would look nicer when your eyes expect the local order for the local language (We use reverse order, like, for example many Asian countries - from bigger quantities to smaller ones: year, month, day)
fuchstractor
Offline

Junior Member

Posts: 35
Threads: 5
Joined: Apr 2011
#17
2011-07-20, 05:05 PM
Hi,

I may have found a line that is put together before checking for available string translations. Here's the extract from translation.txt:
Code:
<Translation original="Unable to locate capture filter: WinFast PxDTV2300 H BDA Analog Capture (#1)" translated="Unable to locate capture filter: WinFast PxDTV2300 H BDA Analog Capture (#1)"/>
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,677
Threads: 767
Joined: Nov 2003
#18
2011-07-20, 05:34 PM
fuchstractor Wrote:Hi,

I may have found a line that is put together before checking for available string translations. Here's the extract from translation.txt:
Code:
<Translation original="Unable to locate capture filter: WinFast PxDTV2300 H BDA Analog Capture (#1)" translated="Unable to locate capture filter: WinFast PxDTV2300 H BDA Analog Capture (#1)"/>
Sorry, error messages like that are probably always going to be english. They're generated in lower level code that doesnt have visibility of the UI translation functionality.
fuchstractor
Offline

Junior Member

Posts: 35
Threads: 5
Joined: Apr 2011
#19
2011-08-02, 04:53 PM
I see.

Here's another, copypasted exactly as it is in translations.txt:
Code:
<Translation original="***Recording service not running at recording time

Top Gear (angol autós magazin, V./43. rész)" translated="***Recording service not running at recording time

Top Gear (angol autós magazin, V./43. rész)"/>
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,677
Threads: 767
Joined: Nov 2003
#20
2011-08-25, 07:32 PM
fuchstractor Wrote:I see.

Here's another, copypasted exactly as it is in translations.txt:
Code:
<Translation original="***Recording service not running at recording time

Top Gear (angol autós magazin, V./43. rész)" translated="***Recording service not running at recording time

Top Gear (angol autós magazin, V./43. rész)"/>
The error part of this is translateable in the next release. ie "Recording service not running at recording time"
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (2): « Previous 1 2


Possibly Related Threads…
Thread Author Replies Views Last Post
  BlueRetroVE+ skin for NPVR Jaggy 101 39,708 2018-01-10, 04:48 AM
Last Post: pitbull1969
  NextBlue skin for npvr Northpole 162 61,270 2015-12-16, 07:39 PM
Last Post: Northpole
  GuidePlus for NPVR carpeVideo 143 53,923 2015-07-12, 06:06 PM
Last Post: madas
  HD Logos for the NPVR WebRadio Plugin Lao Pan 3 3,321 2014-02-09, 01:32 PM
Last Post: Lao Pan
  xnpvrcli - linux/unix client for NPVR tmrt 43 21,105 2013-06-08, 01:18 PM
Last Post: Reddwarf
  External tool: Transfer Season Record schedules from GBPVR to NPVR kendrak24 37 20,613 2013-04-11, 05:58 AM
Last Post: kendrak24
  myGBPVR: use XMBC as GBPVR FrontEnd Ton 161 62,747 2012-02-15, 07:04 PM
Last Post: rantzau
  SSPlus v1.0.0 (Screensaver for NPVR) ACTCMS 12 4,815 2012-01-28, 10:03 PM
Last Post: mvallevand
  Just:Retro skin for NextPVR (npvr) Jaggy 4 2,570 2012-01-22, 10:42 PM
Last Post: Jaggy
  SearchLite - Yet Another NPVR Genre Maker mvallevand 12 6,059 2012-01-21, 04:15 PM
Last Post: mvallevand

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode