I hereby claim:
- I am mamarx on github.
- I am marx (https://keybase.io/marx) on keybase.
- I have a public key whose fingerprint is 65CB DBEE 3D19 5EB8 1BA0 A5F3 7AE0 C20E AC6E FE20
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Today we looked out for a nice tool to improve our translation workflow for an iOS app. In the past we made good experiences with PhraseApp for our Symfony2 app (see this post). So we decided to try it for iOS developement. As it turned out it works like a charme with iOS Localizable Strings as well.
Our workflow looks like this:
NSLocalizedString(@"ACMELoginButton", @"Login button title")
<?php | |
namespace Acme\YourBundle\Translation; | |
use Symfony\Bundle\FrameworkBundle\Translation\Translator as BaseTranslator; | |
class PhraseTranslator extends BaseTranslator | |
{ | |
public function trans($id, array $parameters = array(), $domain = 'messages', $locale = null) | |
{ |