mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-24 11:08:45 +02:00
75 lines
2.8 KiB
PHP
75 lines
2.8 KiB
PHP
<?php
|
|
/**
|
|
* Localized data
|
|
*
|
|
* @copyright Copyright (C) 2013 XXXXX
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
Dict::Add('HU HU', 'Hungarian', 'Magyar', [
|
|
'Menu:CreateMailbox' => 'Create a mailbox...~~',
|
|
'Menu:OAuthClient' => 'OAuth Client~~',
|
|
'Menu:OAuthClient+' => '~~',
|
|
'Menu:GenerateTokens' => 'Generate access tokens...~~',
|
|
'Menu:RegenerateTokens' => 'Regenerate access tokens...~~',
|
|
|
|
'itop-oauth-client/Operation:CreateMailBox/Title' => 'Mailbox creation~~',
|
|
|
|
'itop-oauth-client:UsedForSMTP' => 'This OAuth client is used for SMTP~~',
|
|
'itop-oauth-client:TestSMTP' => 'Email send test~~',
|
|
'itop-oauth-client:MissingOAuthClient' => 'Missing Oauth client for user name %1$s~~',
|
|
'itop-oauth-client:Message:MissingToken' => 'Generate access token before using this OAuth client~~',
|
|
'itop-oauth-client:Message:TokenCreated' => 'Access token created~~',
|
|
'itop-oauth-client:Message:TokenRecreated' => 'Access token regenerated~~',
|
|
]);
|
|
|
|
//
|
|
// Class: OAuthClient
|
|
//
|
|
|
|
Dict::Add('HU HU', 'Hungarian', 'Magyar', [
|
|
'Class:OAuthClient' => 'Oauth Client~~',
|
|
'Class:OAuthClient/Attribute:provider' => 'Provider~~',
|
|
'Class:OAuthClient/Attribute:provider+' => '~~',
|
|
'Class:OAuthClient/Attribute:name' => 'Login~~',
|
|
'Class:OAuthClient/Attribute:name+' => '~~',
|
|
'Class:OAuthClient/Attribute:scope' => 'Scope~~',
|
|
'Class:OAuthClient/Attribute:scope+' => '~~',
|
|
'Class:OAuthClient/Attribute:description' => 'Description~~',
|
|
'Class:OAuthClient/Attribute:description+' => '~~',
|
|
'Class:OAuthClient/Attribute:client_id' => 'Client id~~',
|
|
'Class:OAuthClient/Attribute:client_id+' => '~~',
|
|
'Class:OAuthClient/Attribute:client_secret' => 'Client secret~~',
|
|
'Class:OAuthClient/Attribute:client_secret+' => '~~',
|
|
'Class:OAuthClient/Attribute:refresh_token' => 'Refresh token~~',
|
|
'Class:OAuthClient/Attribute:refresh_token+' => '~~',
|
|
'Class:OAuthClient/Attribute:refresh_token_expiration' => 'Refresh token expiration~~',
|
|
'Class:OAuthClient/Attribute:refresh_token_expiration+' => '~~',
|
|
'Class:OAuthClient/Attribute:token' => 'Access token~~',
|
|
'Class:OAuthClient/Attribute:token+' => '~~',
|
|
'Class:OAuthClient/Attribute:token_expiration' => 'Access token expiration~~',
|
|
'Class:OAuthClient/Attribute:token_expiration+' => '~~',
|
|
'Class:OAuthClient/Attribute:redirect_url' => 'Redirect url~~',
|
|
'Class:OAuthClient/Attribute:redirect_url+' => '~~',
|
|
'Class:OAuthClient/Attribute:mailbox_list' => 'Mailbox list~~',
|
|
'Class:OAuthClient/Attribute:mailbox_list+' => '~~',
|
|
]);
|
|
|
|
//
|
|
// Class: OAuthClientAzure
|
|
//
|
|
Dict::Add('HU HU', 'Hungarian', 'Magyar', [
|
|
'Class:OAuthClientAzure' => 'OAuth client for Microsoft Azure~~',
|
|
'Class:OAuthClientAzure/Name' => '%1$s (%2$s)~~',
|
|
|
|
]);
|
|
|
|
//
|
|
// Class: OAuthClientGoogle
|
|
//
|
|
Dict::Add('HU HU', 'Hungarian', 'Magyar', [
|
|
'Class:OAuthClientGoogle' => 'OAuth client for Google~~',
|
|
'Class:OAuthClientGoogle/Name' => '%1$s (%2$s)~~',
|
|
]);
|
|
|