mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
129 lines
3.0 KiB
PHP
129 lines
3.0 KiB
PHP
<?php
|
|
|
|
namespace JoeDixon\Translation\Drivers;
|
|
|
|
interface DriverInterface
|
|
{
|
|
/**
|
|
* Get all languages from the application.
|
|
*
|
|
* @return Collection
|
|
*/
|
|
public function allLanguages();
|
|
|
|
/**
|
|
* Get all group translations from the application.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function allGroup($language);
|
|
|
|
/**
|
|
* Get all the translations from the application.
|
|
*
|
|
* @return Collection
|
|
*/
|
|
public function allTranslations();
|
|
|
|
/**
|
|
* Get all translations for a particular language.
|
|
*
|
|
* @param string $language
|
|
* @return Collection
|
|
*/
|
|
public function allTranslationsFor($language);
|
|
|
|
/**
|
|
* Add a new language to the application.
|
|
*
|
|
* @param string $language
|
|
* @return void
|
|
*/
|
|
public function addLanguage($language, $name = null);
|
|
|
|
/**
|
|
* Add a new group type translation.
|
|
*
|
|
* @param string $language
|
|
* @param string $key
|
|
* @param string $value
|
|
* @return void
|
|
*/
|
|
public function addGroupTranslation($language, $group, $key, $value = '');
|
|
|
|
/**
|
|
* Add a new single type translation.
|
|
*
|
|
* @param string $language
|
|
* @param string $key
|
|
* @param string $value
|
|
* @return void
|
|
*/
|
|
public function addSingleTranslation($language, $vendor, $key, $value = '');
|
|
|
|
/**
|
|
* Get all of the single translations for a given language.
|
|
*
|
|
* @param string $language
|
|
* @return Collection
|
|
*/
|
|
public function getSingleTranslationsFor($language);
|
|
|
|
/**
|
|
* Get all of the group translations for a given language.
|
|
*
|
|
* @param string $language
|
|
* @return Collection
|
|
*/
|
|
public function getGroupTranslationsFor($language);
|
|
|
|
/**
|
|
* Determine whether or not a language exists.
|
|
*
|
|
* @param string $language
|
|
* @return bool
|
|
*/
|
|
public function languageExists($language);
|
|
|
|
/**
|
|
* Find all of the translations in the app without translation for a given language.
|
|
*
|
|
* @param string $language
|
|
* @return array
|
|
*/
|
|
public function findMissingTranslations($language);
|
|
|
|
/**
|
|
* Save all of the translations in the app without translation for a given language.
|
|
*
|
|
* @param string $language
|
|
* @return void
|
|
*/
|
|
public function saveMissingTranslations($language = false);
|
|
|
|
/**
|
|
* Get a collection of group names for a given language.
|
|
*
|
|
* @param string $language
|
|
* @return Collection
|
|
*/
|
|
public function getGroupsFor($language);
|
|
|
|
/**
|
|
* Get all translations for a given language merged with the source language.
|
|
*
|
|
* @param string $language
|
|
* @return Collection
|
|
*/
|
|
public function getSourceLanguageTranslationsWith($language);
|
|
|
|
/**
|
|
* Filter all keys and translations for a given language and string.
|
|
*
|
|
* @param string $language
|
|
* @param string $filter
|
|
* @return Collection
|
|
*/
|
|
public function filterTranslationsFor($language, $filter);
|
|
}
|