NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Information Community Announcements v
« Previous 1 … 8 9 10 11 12 … 56 Next »
New Translation System

 
  • 0 Vote(s) - 0 Average
New Translation System
MixMan
Offline

Posting Freak

Posts: 1,239
Threads: 100
Joined: Oct 2005
#11
2010-02-12, 11:13 AM
dhgb256 Wrote:Here you go. It is PAINFULLY slow, but it goes through all the rows. I turned off screen updating, so you won't see the data until it is finished. It displays a message box saying "Done" when it completes. Let me know if this isn't what you were looking for.

Many, many thanks.
It works very well.
Wish I hade this macro years ago.
It would have saved me days of copy and pasting cell values.
It didn't take me many minutes to import the translation updates that I have recieved.
Aslo got new Portugese translations.
Best Regards
MixMan
[SIZE="1"]
Antec Fusion case with Gigabyte GA-MA78GM-SH, AMD X2 4850e, 2GB RAM, AMD780G Onboard graphics. WinTV-PVR 150 MCE (With FM), Twinhan DVB-T, 750GB + 250GB HDD. Windows XP Pro SP3, MCE 2005 Remote, 29" 4:3 monitor and a 47" Philips 9603H LCD[/SIZE]
dhgb256
Offline

Senior Member

Posts: 717
Threads: 4
Joined: Jun 2009
#12
2010-02-12, 03:44 PM
Glad it worked, let me know if you need help with anything else.
HTPC: Foxxconn -case w/ 300W PSU, 2 x 80 mm case fans, Foxxconn A74MX-K, ATI Radeon 4550 1GB PCIE x16, AMD X2 4850e 45W, 4GB OCZ DDR800, Windows XP Home/SP3, Hauppauge HVR-2250 dual tuner, K-lite 5.75 FFDShow video & audio, ATIdvcr Decoder, VMR9
MixMan
Offline

Posting Freak

Posts: 1,239
Threads: 100
Joined: Oct 2005
#13
2010-02-26, 08:02 PM
I would like to have some of you who has translated in the past, testing the new translation system. It would be good to know how it works.

Send me a PM if you are interested
Best Regards
MixMan
[SIZE="1"]
Antec Fusion case with Gigabyte GA-MA78GM-SH, AMD X2 4850e, 2GB RAM, AMD780G Onboard graphics. WinTV-PVR 150 MCE (With FM), Twinhan DVB-T, 750GB + 250GB HDD. Windows XP Pro SP3, MCE 2005 Remote, 29" 4:3 monitor and a 47" Philips 9603H LCD[/SIZE]
dfdario
Offline

Senior Member

Posts: 288
Threads: 35
Joined: Nov 2005
#14
2010-03-03, 06:56 AM
Here is the file I currently use on my system.
[SIZE="1"][COLOR="Navy"]
1st
Silverstone LC20 case | ASUS M2V | AMD Athlon 64 3200+ AM2| RAM 4GB DDR2 800 | HD 160GB IDE + (SATAII 300GB) | Hauppauge: 3x HVR-1300 - 1x HVR-1100 | 2 x Hauppauge MVP | 3 x AtlantisLand PL200 | WinXP IT SP3 | MCE 2005 Remote | GB-PVR v1.4.7 | Cyberlink Mux | 2 x clients Intel D945GCLF2 | Win FLP SP3 [/COLOR]
_____________________
[COLOR="Navy"]2nd
Intel D945GCLF2 | RAM 2GB DDR2 | HD 500GB SATAII) | Hauppauge Nova T500 | GB-PVR v1.3.11 | ATI Mux | Microsoft XP + SP3 + hotfix kb969238 and this [/COLOR][/SIZE]
Mr. Camaro
Offline

Member

Posts: 174
Threads: 16
Joined: Jan 2006
#15
2010-03-03, 04:24 PM
You don't need a macro to do this. You can use VLOOKUP and the values will instantly come over to the sheet. I've attached an example to show you.

The code is simple, this is from cell B1 on the spreadsheet.

Code:
=IFERROR(VLOOKUP(A1,Data!A:L,2,FALSE),"")

The only problem with the above code is "IFERROR" does not work in Excel 2003. The "ISERROR" is used to prevent "N/A" from showing up in the sheet where there is no data.

Code:
=IF(NOT(ISNA(VLOOKUP(A1,Data!A:L,2,FALSE))),VLOOKUP(A1,Data!A:L,2,FALSE),"")

The above is more complicated but will work in all versions of excel.

Is this what you are trying to do? If I knew exactly what you wanted to do I can modify this a bit to help you. For example it would be easy to have several columns of languages in Sheet2, and then add a drop-down or something in Sheet1 where you could select the language that you want to copy over. It would also be easy to generate a XML file like the one in the post above by just selecting the language that you want and clicking a button.
MixMan
Offline

Posting Freak

Posts: 1,239
Threads: 100
Joined: Oct 2005
#16
2010-03-03, 08:48 PM
Mr. Camaro Wrote:You don't need a macro to do this. You can use VLOOKUP and the values will instantly come over to the sheet. I've attached an example to show you.

The code is simple, this is from cell B1 on the spreadsheet.

Code:
=IFERROR(VLOOKUP(A1,Data!A:L,2,FALSE),"")

The only problem with the above code is "IFERROR" does not work in Excel 2003. The "ISERROR" is used to prevent "N/A" from showing up in the sheet where there is no data.

Code:
=IF(NOT(ISNA(VLOOKUP(A1,Data!A:L,2,FALSE))),VLOOKUP(A1,Data!A:L,2,FALSE),"")

The above is more complicated but will work in all versions of excel.

Is this what you are trying to do? If I knew exactly what you wanted to do I can modify this a bit to help you. For example it would be easy to have several columns of languages in Sheet2, and then add a drop-down or something in Sheet1 where you could select the language that you want to copy over. It would also be easy to generate a XML file like the one in the post above by just selecting the language that you want and clicking a button.

Thank you presenting this solution. I tested it and it works.
But I preferr the macro solution, since I will pull in translations from several sheets to build the translation for the new system.
I have sent the sheet with macros to dhgh256. He will take a look at it, to see if it is possible to minimize the all the copy and pasting I have to do now.
Best Regards
MixMan
[SIZE="1"]
Antec Fusion case with Gigabyte GA-MA78GM-SH, AMD X2 4850e, 2GB RAM, AMD780G Onboard graphics. WinTV-PVR 150 MCE (With FM), Twinhan DVB-T, 750GB + 250GB HDD. Windows XP Pro SP3, MCE 2005 Remote, 29" 4:3 monitor and a 47" Philips 9603H LCD[/SIZE]
MixMan
Offline

Posting Freak

Posts: 1,239
Threads: 100
Joined: Oct 2005
#17
2010-03-03, 08:53 PM
I am building an updated Excel sheet with new strings for plugins.

I have added all strings for Music and CD plugins.

Any other plugins strings that should be added, please post strings.
Best Regards
MixMan
[SIZE="1"]
Antec Fusion case with Gigabyte GA-MA78GM-SH, AMD X2 4850e, 2GB RAM, AMD780G Onboard graphics. WinTV-PVR 150 MCE (With FM), Twinhan DVB-T, 750GB + 250GB HDD. Windows XP Pro SP3, MCE 2005 Remote, 29" 4:3 monitor and a 47" Philips 9603H LCD[/SIZE]
MixMan
Offline

Posting Freak

Posts: 1,239
Threads: 100
Joined: Oct 2005
#18
2010-03-04, 02:26 PM
dfdario Wrote:Here is the file I currently use on my system.

Thanks, but the translation I had some more strings translated.
Must have gotten it from somebody else.
Anyway I combined both translations. You might have to adjust some strings.
Best Regards
MixMan
[SIZE="1"]
Antec Fusion case with Gigabyte GA-MA78GM-SH, AMD X2 4850e, 2GB RAM, AMD780G Onboard graphics. WinTV-PVR 150 MCE (With FM), Twinhan DVB-T, 750GB + 250GB HDD. Windows XP Pro SP3, MCE 2005 Remote, 29" 4:3 monitor and a 47" Philips 9603H LCD[/SIZE]
MixMan
Offline

Posting Freak

Posts: 1,239
Threads: 100
Joined: Oct 2005
#19
2010-03-04, 02:30 PM (This post was last modified: 2010-03-05, 09:22 PM by MixMan.)
Thanks to dhbg256 that helped with the excel macro and mvallevand, that made string converstion utility.
We now has a working easy to use translation function.
I have ported all old translations into the "system" and strings that where not translated, I had Google translate.
I have also made it possible to translate languages that didn't have any translations earlier, but they are all Google translations.
But they might be good anyway, and it should definatly be easier, than doing the translation from scratch.

Go and have a look at:
http://gbpvr.com/pmwiki/pmwiki.php/Manual/Translation

There will be more that 50 languages translatable. Current are:

*Afrikaans
*Albanian
*Arabic
*Belarusian
*Bulgarian
*Catalan
*Chinese (Simple)
*Chinese (Traditional)
*Czech
*Croatian
*Danish
*Dutch
*English
*Estonian
*Farsi
*Filipino
*Finnish
*French
*Galician
*German
*Greek
*Hausa
*Hebrew
*Hindi
*Hungarian
*Icelandic
*Indonesian
*Irish
*Italian
*Japanese
*Korean
*Latvian
*Lithuanian
*Macedonian
*Malay
*Maltese
*Norwegian
*Pashto
*Polish
*Portuguese
*Portuguese (Brazil)
*Romanian
*Russian
*Serbian
*Slovak
*Slovenian
*Spanish
*Spanish (Mexico)
*Swahili
*Swedish
*Thai
*Turkish
*Ukrainian
*Vietnamese
*Yiddish
Best Regards
MixMan
[SIZE="1"]
Antec Fusion case with Gigabyte GA-MA78GM-SH, AMD X2 4850e, 2GB RAM, AMD780G Onboard graphics. WinTV-PVR 150 MCE (With FM), Twinhan DVB-T, 750GB + 250GB HDD. Windows XP Pro SP3, MCE 2005 Remote, 29" 4:3 monitor and a 47" Philips 9603H LCD[/SIZE]
MixMan
Offline

Posting Freak

Posts: 1,239
Threads: 100
Joined: Oct 2005
#20
2010-03-05, 09:16 PM
Just uploaded the last batch of languages to the wiki.
The zip now contains 55 translatable languags.
*Afrikaans
*Albanian
*Arabic
*Belarusian
*Bulgarian
*Catalan
*Chinese (Simple)
*Chinese (Traditional)
*Czech
*Croatian
*Danish
*Dutch
*English
*Estonian
*Farsi
*Filipino
*Finnish
*French
*Galician
*German
*Greek
*Hausa
*Hebrew
*Hindi
*Hungarian
*Icelandic
*Indonesian
*Irish
*Italian
*Japanese
*Korean
*Latvian
*Lithuanian
*Macedonian
*Malay
*Maltese
*Norwegian
*Pashto
*Polish
*Portuguese
*Portuguese (Brazil)
*Romanian
*Russian
*Serbian
*Slovak
*Slovenian
*Spanish
*Spanish (Mexico)
*Swahili
*Swedish
*Thai
*Turkish
*Ukrainian
*Vietnamese
*Yiddish

Go ahead and translate !!!
Best Regards
MixMan
[SIZE="1"]
Antec Fusion case with Gigabyte GA-MA78GM-SH, AMD X2 4850e, 2GB RAM, AMD780G Onboard graphics. WinTV-PVR 150 MCE (With FM), Twinhan DVB-T, 750GB + 250GB HDD. Windows XP Pro SP3, MCE 2005 Remote, 29" 4:3 monitor and a 47" Philips 9603H LCD[/SIZE]
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (3): « Previous 1 2 3 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  System - Updated 19th December, 2012 imilne 0 2,202 2012-12-19, 08:38 PM
Last Post: imilne
  System Plugin - CPU Temperature Monitoring imilne 1 2,028 2012-03-28, 07:59 PM
Last Post: LegioX
  System - Updated 25th February, 2012 imilne 0 1,723 2012-02-25, 11:11 AM
Last Post: imilne
  System Plugin - 2nd Test Release (4th Feb) imilne 31 10,747 2012-02-24, 12:22 PM
Last Post: Reddwarf
  System Plugin - New Test Release (29th Jan) imilne 38 11,052 2012-02-07, 08:38 AM
Last Post: imilne
  System Plugin for nPVR - Early Beta imilne 176 47,439 2011-07-16, 04:31 PM
Last Post: johnsonx42
  Improved Swedish translation spitfire 0 969 2006-09-16, 03:14 PM
Last Post: spitfire
  Manage conflicted recordings from the system tray Mister Slimm 0 1,049 2006-08-05, 08:25 PM
Last Post: Mister Slimm
  Manage reoccurring recordings from the system tray Mister Slimm 0 1,080 2006-08-04, 02:54 PM
Last Post: Mister Slimm
  New happy user + spanish translation jabnet 3 1,787 2006-07-14, 10:44 AM
Last Post: Old Dog

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

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

Linear Mode
Threaded Mode