Componette

Componette

nedryse

nedryse / simple-translator

Simple implementation of \Nette\Localization\ITranslator interface. Just print the key as is. Usefull when you have no time for managing gettext…

download-cloud-line composer require nedryse/simple-translator

#nedryse/simple-translator (cc)# Pavel Železný (2bfree), 2014 (pavelzelezny.cz)

Requirements

Nette Framework 2.4.0 or higher

Documentation

Simple implementation of \Nette\Localization\ITranslator interface. Just print the key as is. Usefull when you have no time for managing gettext translation but want translatable application in the future.

Instalation

Prefered way to install is by Composer

composer require nedryse/simple-translator:~1.1

Or by manualy adding into the composer.json

{
	"require":{
		"nedryse/simple-translator": "~1.1"
	}
}

Setup

Add following code into the config.neon

common:
	extensions:
		translator: Nedryse\Nette\Localization\SimpleTranslatorExtension

Usage

In Latte templates of presenters and components you can use standard tlanslator macro

{_'Translatable text'}
{_'We have %d translatable text', $count}
{_'Field %s have to be translated', $fieldName}
{_'Field %s with %d letter have to be translated', $fieldName, $count}

No release at this moment. Try to create first one.

Componette Componette felix@nette.org