Deprecated: Assigning the return value of new by reference is deprecated in /home/translation/www/blog/wp-includes/cache.php on line 36

Deprecated: Assigning the return value of new by reference is deprecated in /home/translation/www/blog/wp-includes/query.php on line 21

Deprecated: Assigning the return value of new by reference is deprecated in /home/translation/www/blog/wp-includes/theme.php on line 508
Vincent Park » 2007 » August » 25
Archive for August 25th, 2007

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