pollora/pollingo

A PHP package for translating strings using AI

1.0 2025-03-25 10:59 UTC

This package is auto-updated.

Last update: 2025-04-03 12:02:43 UTC


README

Logo Laravel Pollingo

๐ŸŒ Pollingo

A framework-agnostic PHP package for translating groups of strings using OpenAI.

๐Ÿš€ Features

  • โœจ Fluent API for submitting groups of strings to translate
  • ๐Ÿ”ค Simple API for translating single strings
  • ๐Ÿค– OpenAI-powered smart, contextual translations
  • ๐Ÿ”Œ Support for custom translation providers
  • ๐ŸŒ Global and per-string context support
  • ๐Ÿ”ค Support for all ISO 639-1 language codes
  • ๐Ÿ“ฆ Framework-agnostic with Laravel integration

๐Ÿ“ฅ Installation

Standalone Installation

composer require pollora/pollingo

Laravel Installation

The package will automatically register itself if you're using Laravel's package discovery. After installation, you can publish the configuration file:

php artisan vendor:publish --tag=pollingo-config

๐Ÿ”ง Configuration

Standalone Configuration

Set your OpenAI API key in your environment:

OPENAI_API_KEY=your-api-key

Laravel Configuration

In your .env file:

OPENAI_API_KEY=your-api-key
OPENAI_MODEL=gpt-4

You can also customize the configuration in config/pollingo.php after publishing it.

๐Ÿ“ Basic Usage

Single String Translation

use Pollora\Pollingo\Pollingo;

// Simple translation
$translation = Pollingo::make('your-openai-api-key')
    ->from('en')
    ->to('fr')
    ->text('Welcome to our application')
    ->translate();

// Translation with context
$translation = Pollingo::make('your-openai-api-key')
    ->from('en')
    ->to('fr')
    ->text('Welcome to our platform!')
    ->context('Used in the subject of a welcome email.')
    ->translate();

Group Translation

use Pollora\Pollingo\Pollingo;

$translations = Pollingo::make('your-openai-api-key')
    ->from('en')
    ->to('fr')
    ->group('messages', [
        'welcome' => 'Welcome to our application',
        'goodbye' => 'Goodbye!',
    ])
    ->translate();

Laravel Usage

Using the Facade:

use Pollora\Pollingo\Facades\Pollingo;

$translations = Pollingo::from('en')
    ->to('fr')
    ->group('messages', [
        'welcome' => 'Welcome to our application',
        'goodbye' => 'Goodbye!',
    ])
    ->translate();

Using Dependency Injection:

use Pollora\Pollingo\Pollingo;

class TranslationController
{
    public function __construct(
        private readonly Pollingo $pollingo
    ) {}

    public function translate()
    {
        return $this->pollingo
            ->from('en')
            ->to('fr')
            ->group('messages', [
                'welcome' => 'Welcome to our application',
            ])
            ->translate();
    }
}

๐ŸŒ Language Support

Pollingo supports all ISO 639-1 language codes. Here are some common examples:

  • ๐Ÿ‡บ๐Ÿ‡ธ English: en
  • ๐Ÿ‡ซ๐Ÿ‡ท French: fr
  • ๐Ÿ‡ช๐Ÿ‡ธ Spanish: es
  • ๐Ÿ‡ฉ๐Ÿ‡ช German: de
  • ๐Ÿ‡ฎ๐Ÿ‡น Italian: it
  • ๐Ÿ‡ฏ๐Ÿ‡ต Japanese: ja
  • ๐Ÿ‡จ๐Ÿ‡ณ Chinese: zh
  • ๐Ÿ‡ท๐Ÿ‡บ Russian: ru

Example with language codes:

$pollingo
    ->from('en')    // Source language (English)
    ->to('fr')      // Target language (French)
    ->translate();

๐Ÿงฉ Advanced Features

Groups and Context

You can organize your translations into logical groups and provide context:

$pollingo->group('emails', [
    'welcome' => [
        'text' => 'Welcome to our platform!',
        'context' => 'Used in the subject of a welcome email.'
    ],
    'greeting' => [
        'text' => 'Hi {name}',
        'context' => 'Personal greeting with user name placeholder'
    ]
]);

Custom Translators

While OpenAI is the default translation provider, you can implement your own translator by implementing the Translator interface:

use Pollora\Pollingo\Contracts\Translator;

class MyCustomTranslator implements Translator
{
    public function translate(
        array $groups,
        string $targetLanguage,
        ?string $sourceLanguage = null,
        ?string $globalContext = null
    ): array {
        // Your custom translation logic here
    }
}

You can then use your custom translator in two ways:

  1. Using the fluent withTranslator() method:
$pollingo = Pollingo::make()
    ->withTranslator(new MyCustomTranslator())
    ->from('en')
    ->to('fr')
    ->translate();
  1. Using the make() method's translator parameter:
$pollingo = Pollingo::make(translator: new MyCustomTranslator());

This is particularly useful when you want to:

  • Use a different translation service (DeepL, Google Translate, etc.)
  • Implement custom translation logic
  • Mock translations for testing
  • Cache translations
  • Implement fallback mechanisms

Global Context

You can provide global context that applies to all translations:

$pollingo
    ->withGlobalContext('This is for a professional business application')
    ->group('auth', [
        'login' => 'Log in',
        'register' => 'Create an account',
    ])
    ->translate();

Multiple Groups

You can translate multiple groups in a single request:

$translations = $pollingo
    ->from('en')
    ->to('fr')
    ->group('ui', [
        'save' => 'Save',
        'cancel' => 'Cancel',
    ])
    ->group('messages', [
        'success' => 'Operation completed successfully',
        'error' => 'An error occurred',
    ])
    ->translate();

๐Ÿ› ๏ธ Laravel Integration Features

Configuration

The package provides a configuration file that can be customized:

// config/pollingo.php
return [
    'openai' => [
        'api_key' => env('OPENAI_API_KEY'),
        'model' => env('OPENAI_MODEL', 'gpt-4'),
    ],
];

Service Container

The package registers both the main service and the translator interface in Laravel's service container:

use Pollora\Pollingo\Contracts\Translator;

class TranslationService
{
    public function __construct(
        private readonly Translator $translator
    ) {}
}

๐Ÿงช Testing

composer test

๐Ÿค Contributing

Please see CONTRIBUTING.md for details.

๐Ÿ“„ License

The MIT License (MIT). Please see License File for more information.