Archive for the 'Localization' Category

Moses

January 10th, 2010 | Category: Localization

http://www.statmt.org/moses/“Moses is a statistical machine translation system that allows you to automatically train translation models for any language pair. All you need is a collection of translated texts (parallel corpus). An efficient search algorithm finds quickly the highest probability translation among the exponential number of choices.”

Who’s using Moses?

I heard many companies in the valley and Europe are building their solutions around it, and Google is also one of the companies using it. However, I heard it is very complicated to set it up and needs to build web services around it to make it more user friendly. Also in Europe there might be some companies in the near future that will be providing consulting services or even solutions using this system.

As more and more companies are adapting MT as their new sources of cost cutting and translation improvement tool - although I heard there has been some improvement but not obvious groundbreaking innovation around it for a long time, I think it will provide MT community with fresh impetus for better future development prospects.

No comments

Google I/O Developer Conference & Localization

June 14th, 2009 | Category: Localization

I attended Google IO Conference last week and I am really glad I was able to attend it. Of course, one of the thing that got everyone excited was that Google gave out their new android phone to all attendees, but more important reason that got me so excited was that I was able to see Google Wave demo live. I got this feeling that it might be a next big thing. I remember when I first watched F8 video, I got this thrilled feeling that something big will happen. I got similar goose bumps with Google Wave, as I had with not only Facebook, but Google, Twitter, iPhone, Salesforce, etc.

Since my thinking habit always tries to relate any new technology with localization,  I gave it a thought how it can be used to enhance existing localization technology.  As most of the people might naturally think Google Wave will change how we collaborate with people, My thinking was also around how it can be used to improve localization collaboration process. I think it could be some sort of new GCMS built on top of Wave enabling real-time Loc engineer - PM - linguist - LQA - Vendor collaboration, collaborative linguistic review,  LQA - Linguist collaboration, real-time crowd sourcing collaboration, and so forth. We are at a time that our traditional localization paradigm is slowly changing toward to something new - crowd sourcing and machine translation for user generated content.

One thing that I think the next big thing for localization might be around applying the concept of Facebook Translations to companies that are not possible to attempt crowd sourcing for their products for a various reasons by promoting direct customer involvement through incentives, micropayment or a sense of pride. I am sure Google wave can be the technology that make it all happen.

One other thing that I noticed at Google IO was how all the pieces that Google invented with a slew of their beta products fit all together nicely for their cloud strategy. Amazon and Salesforce also seem a bit scared about Google being aggressively expanding to their turf and busy implementing their solutions around Google’s technology. Soon Croud will be ubiquitous and Google is well positioned to be a leader in that arena.  So, one might ask, “Will Google stock hit $1000 within 2 to 3 years?” I think it will.

Google IO  Session Videos:http://code.google.com/events/io/

No comments

Salesforce.com Globalization

December 27th, 2008 | Category: Localization

Cloud Computing! 

- Development:

 http://developer.force.com/gettingstarted

http://wiki.apexdevnet.com/index.php/Wiki

- Translation:

http://www.salesforce.com/community/crm-best-practices/administrators/globalization/2008-admin-global-features-localization.jsp

https://na6.salesforce.com/help/doc/en/salesforce_workbench_cheatsheet.pdf

No comments

Localization Tools with AJAX

May 10th, 2008 | Category: Localization

How to create localization tools with AJAX (Prototype & Scriptaculous)

Coming soon.

No comments

I18N & L10N Unconference

February 25th, 2008 | Category: Localization

 Interesting… It’s Friday March 14th - 8-4 at the salesforce.com San Mateo campus.

http://localizationunconference.com/blog/?page_id=9

No comments

Legacy encoding vs. Unicode

October 25th, 2007 | Category: Localization

My simple writeup for this topic:

http://blog.translation-help.net/?page_id=36&preview=true

No comments

Facebook l10n & i18n Issues

August 25th, 2007 | Category: Localization, Facebook

International Un-friendly FBML

Not Internationalized yet

Use Instead

Comment

<fb:name uid=”%s” possessive=”true”/> <fb:name uid=”%s” possessive=”false”/> Vincent’s (possessive) can not be used for some international languages.
<fb:name uid=”%s” useyou=”true”/> <fb:name uid=”%s” useyou=”false”/> You or you can not be used for non-English languages.
<fb:pronoun… No workaround  
<fb:time t=”‘ . $post[’time’] .
‘”/>
Use Date or Pear I18n library  
<fb:friend-selector idname=”to”/>’ No workaround ‘Start typing a friend’s name’ is always displayed in English.

Bugs

Synopsis

Workaround

Status

- a submit button in my server: < input type=”submit” value=”e” />e : small e, acute accent - HEX: 0xC3A9 in UTF-8, so 0xC3
-> (A) and 0xA9 -> (c).

- in my facebook application:
< input type=”submit” value=”Ac” />

Use Images instead Already reported to Facebook

PEAR:

1. Add locale file toI18nv2/Locale

2. Add locale pear/18Nv2.php for Locale mapping

$locales = array(
‘af’ => ‘af_ZA’,
‘de’ => ‘de_DE’,
‘en’ => ‘en_US’,
‘fr’ => ‘fr_FR’,
‘it’ => ‘it_IT’,
‘es’ => ‘es_ES’,
‘pt’ => ‘pt_PT’,
’sv’ => ’sv_SE’,
‘nb’ => ‘nb_NO’,
‘nn’ => ‘nn_NO’,
‘no’ => ‘no_NO’,
‘fi’ => ‘fi_FI’,
‘is’ => ‘is_IS’,
‘da’ => ‘da_DK’,
‘nl’ => ‘nl_NL’,
‘pl’ => ‘pl_PL’,
’sl’ => ’sl_SI’,
‘hu’ => ‘hu_HU’,
‘ru’ => ‘ru_RU’,
‘cs’ => ‘cs_CZ’,

Other Issues:

Submit button issue:

http://www.facebook.com/topic.php?uid=2205007948&topic=8962

Internationalization in general:

http://www.facebook.com/topic.php?uid=2205007948&topic=11236

mini feed issue:

http://www.facebook.com/topic.php?uid=2205007948&topic=10057

No comments