Updated space message files

This commit is contained in:
Lucas Bartholemy 2019-09-21 22:52:34 +02:00
parent c2c7e4f741
commit b81aecd100
2030 changed files with 8044 additions and 31111 deletions

View File

@ -37,7 +37,7 @@
'buttons' => [
humhub\widgets\mails\MailButton::widget([
'url' => $url,
'text' => Yii::t('SpaceModule.notifications_mails',
'text' => Yii::t('SpaceModule.notification',
'View Online'),
]),
],

View File

@ -22,7 +22,7 @@ use humhub\compat\CActiveForm;
<?= $form->error($approveFormModel, 'message'); ?>
</div>
<hr>
<?= Html::submitButton(Yii::t('SpaceModule.approval_approveUserDecline', 'Send & decline'), ['class' => 'btn btn-danger', 'data-ui-loader' => ""]); ?>
<?= Html::submitButton(Yii::t('SpaceModule.manage', 'Send & decline'), ['class' => 'btn btn-danger', 'data-ui-loader' => ""]); ?>
<a href="<?= Url::to(['index']); ?>" data-ui-loader class="btn btn-primary"><?= Yii::t('AdminModule.user', 'Cancel'); ?></a>
<?php CActiveForm::end(); ?>

View File

@ -36,7 +36,7 @@
<?=
\humhub\widgets\mails\MailButtonList::widget(['buttons' => [
humhub\widgets\mails\MailButton::widget(['url' => $url, 'text' => Yii::t('SpaceModule.notifications_mails', 'View Online')])
humhub\widgets\mails\MailButton::widget(['url' => $url, 'text' => Yii::t('SpaceModule.notification', 'View Online')])
]]);
?>

View File

@ -36,7 +36,7 @@
<?=
\humhub\widgets\mails\MailButtonList::widget(['buttons' => [
humhub\widgets\mails\MailButton::widget(['url' => $url, 'text' => Yii::t('SpaceModule.notifications_mails', 'View Online')])
humhub\widgets\mails\MailButton::widget(['url' => $url, 'text' => Yii::t('SpaceModule.notification', 'View Online')])
]]);
?>

View File

@ -45,7 +45,7 @@
<td>
<?=
\humhub\widgets\mails\MailButtonList::widget(['buttons' => [
humhub\widgets\mails\MailButton::widget(['url' => $url, 'text' => Yii::t('SpaceModule.notifications_mails', 'View Online')])
humhub\widgets\mails\MailButton::widget(['url' => $url, 'text' => Yii::t('SpaceModule.notification', 'View Online')])
]]);
?>
</td>

View File

@ -64,11 +64,11 @@ class SpaceController extends Behavior
$this->updateLastVisit();
if (AuthHelper::isGuestAccessEnabled() && Yii::$app->user->isGuest && $this->space->visibility != Space::VISIBILITY_ALL) {
throw new HttpException(401, Yii::t('SpaceModule.behaviors_SpaceControllerBehavior', 'You need to login to view contents of this space!'));
throw new HttpException(401, Yii::t('SpaceModule.base', 'You need to login to view contents of this space!'));
}
if ($this->getMembership() === null && $this->space->visibility == Space::VISIBILITY_NONE && !Yii::$app->user->isAdmin()) {
throw new HttpException(404, Yii::t('SpaceModule.behaviors_SpaceControllerBehavior', 'Space is invisible!'));
throw new HttpException(404, Yii::t('SpaceModule.base', 'Space is invisible!'));
}
$this->owner->subLayout = "@humhub/modules/space/views/space/_layout";

View File

@ -65,7 +65,7 @@ class MembershipController extends ContentContainerController
if ($visibility === Space::VISIBILITY_NONE && !$space->isMember() ||
($visibility === Space::VISIBILITY_REGISTERED_ONLY && Yii::$app->user->isGuest)
) {
throw new HttpException(404, Yii::t('SpaceModule.controllers_SpaceController',
throw new HttpException(404, Yii::t('SpaceModule.base',
'This action is only available for workspace members!'));
}
@ -73,7 +73,7 @@ class MembershipController extends ContentContainerController
'query' => $space->getMembershipUser(),
'keyword' => Yii::$app->request->get('keyword'),
'fillUser' => true,
'disabledText' => Yii::t('SpaceModule.controllers_SpaceController',
'disabledText' => Yii::t('SpaceModule.base',
'This user is not a member of this space.'),
]);
}
@ -88,7 +88,7 @@ class MembershipController extends ContentContainerController
if (!$space->canJoin(Yii::$app->user->id)) {
throw new HttpException(500,
Yii::t('SpaceModule.controllers_SpaceController', 'You are not allowed to join this space!'));
Yii::t('SpaceModule.base', 'You are not allowed to join this space!'));
}
$space->addMember(Yii::$app->user->id);
@ -108,7 +108,7 @@ class MembershipController extends ContentContainerController
// Check if we have already some sort of membership
if (Yii::$app->user->isGuest || $space->getMembership(Yii::$app->user->id) != null) {
throw new HttpException(500,
Yii::t('SpaceModule.controllers_SpaceController', 'Could not request membership!'));
Yii::t('SpaceModule.base', 'Could not request membership!'));
}
$model = new RequestMembershipForm();
@ -148,10 +148,10 @@ class MembershipController extends ContentContainerController
if ($space->isSpaceOwner()) {
throw new HttpException(500,
Yii::t('SpaceModule.controllers_SpaceController', 'As owner you cannot revoke your membership!'));
Yii::t('SpaceModule.base', 'As owner you cannot revoke your membership!'));
} elseif (!$space->canLeave()) {
throw new HttpException(500,
Yii::t('SpaceModule.controllers_SpaceController', 'Sorry, you are not allowed to leave this space!'));
Yii::t('SpaceModule.base', 'Sorry, you are not allowed to leave this space!'));
}
$space->removeMember();
@ -171,7 +171,7 @@ class MembershipController extends ContentContainerController
'query' => $space->getNonMembershipUser(),
'keyword' => Yii::$app->request->get('keyword'),
'fillUser' => true,
'disabledText' => Yii::t('SpaceModule.controllers_SpaceController',
'disabledText' => Yii::t('SpaceModule.base',
'This user is already a member of this space.'),
]));
}
@ -190,7 +190,7 @@ class MembershipController extends ContentContainerController
? Yii::t( 'SpaceModule.base', 'User memberships have been added to the queue')
: Yii::t( 'SpaceModule.base', 'User invitations have been added to the queue');
} else {
$success = Yii::t('SpaceModule.views_space_statusInvite', 'Users has been invited.');
$success = Yii::t('SpaceModule.base', 'Users has been invited.');
}
return ModalClose::widget([
@ -213,7 +213,7 @@ class MembershipController extends ContentContainerController
// Load Pending Membership
$membership = $space->getMembership();
if ($membership == null) {
throw new HttpException(404, Yii::t('SpaceModule.controllers_SpaceController', 'There is no pending invite!'));
throw new HttpException(404, Yii::t('SpaceModule.base', 'There is no pending invite!'));
}
// Check there are really an Invite
@ -248,7 +248,7 @@ class MembershipController extends ContentContainerController
{
return $this->renderAjaxContent(UserListBox::widget([
'query' => Membership::getSpaceMembersQuery($this->getSpace())->visible(),
'title' => Yii::t('SpaceModule.controllers_MembershipController', "<strong>Members</strong>"),
'title' => Yii::t('SpaceModule.manage', "<strong>Members</strong>"),
]));
}

View File

@ -1,21 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Send & decline' => '',
];

View File

@ -1,26 +1,115 @@
<?php
return array (
'<b>This space is still empty!</b>' => '',
'<b>This space is still empty!</b><br>Start by posting something here...' => '',
'<b>You are not member of this space and there is no public content, yet!</b>' => '',
'<strong>Invite</strong> members' => '',
'<strong>New</strong> member request' => '',
'<strong>Request</strong> space membership' => '',
'<strong>Something</strong> went wrong' => '',
'<strong>Space</strong> followers' => '',
'<strong>Space</strong> members' => '',
'<strong>Space</strong> menu' => '',
'Accept' => '',
'Accept Invite' => '',
'Add users without invitation' => '',
'Administrator:' => '',
'Administrators' => '',
'Application message' => '',
'Archived' => 'ማህደር',
'As owner you cannot revoke your membership!' => '',
'Become member' => '',
'Cancel' => 'ይቅር',
'Cancel pending membership application' => '',
'Close' => 'ዝጋ',
'Color' => '',
'Could not request membership!' => '',
'Created At' => '',
'Created By' => '',
'Decline' => '',
'Decline Invite' => '',
'Default' => 'ነባሪ',
'Default content visibility' => '',
'Description' => '',
'Done' => 'ተከናውኗል',
'Email addresses' => '',
'Everyone can enter' => '',
'Follow' => '',
'Followers' => '',
'Homepage' => '',
'Homepage (Guests)' => '',
'Invite' => 'ይጋብዙ',
'Invite and request' => '',
'Invite by email' => '',
'Invites' => '',
'Join Policy' => '',
'Last Visit' => '',
'Login' => 'ይግቡ',
'Members' => 'አባላት',
'Moderator:' => '',
'Moderators' => '',
'My Space List' => '',
'My space summary' => '',
'Name' => '',
'New user by e-mail (comma separated)' => '',
'New user?' => '',
'No spaces found.' => '',
'Ok' => 'እሺ',
'Only by invite' => '',
'Originator User ID' => '',
'Owner' => '',
'Owner:' => '',
'Pick users' => '',
'Please shortly introduce yourself, to become a approved member of this workspace.' => '',
'Please shortly introduce yourself, to become an approved member of this space.' => '',
'Posts' => '',
'Private' => '',
'Private (Invisible)' => '',
'Public' => 'የህዝብ',
'Public (Members & Guests)' => '',
'Public (Members only)' => '',
'Public (Registered users only)' => '',
'Request Message' => '',
'Request membership' => '',
'Request workspace membership' => '',
'Select all registered users' => '',
'Send' => '',
'Settings' => 'ማስተካከያዎች',
'Show all' => '',
'Sorry, you are not allowed to leave this space!' => '',
'Space' => '',
'Space directory' => '',
'Space is invisible!' => '',
'Spaces' => 'ምህዳሮች',
'Status' => '',
'Stream' => '',
'Tags' => '',
'There is no pending invite!' => '',
'This action is only available for workspace members!' => '',
'This user is already a member of this space.' => '',
'This user is not a member of this space.' => '',
'To invite users to this space, please type their names below to find and pick them.' => '',
'Unfollow' => '',
'Updated At' => '',
'Updated By' => '',
'Updated by' => '',
'User \'{username}\' is already a member of this space!' => '',
'User \'{username}\' is already an applicant of this space!' => '',
'User invitations have been added to the queue' => '',
'User memberships have been added to the queue' => '',
'User not found!' => 'ተጠቃሚው አልተገኙም!',
'Users' => 'ተጠቃሚዎች',
'Users has been invited.' => '',
'Visibility' => 'የእይታ ሁኔታ',
'Visible for all (members and guests)' => '',
'You are not allowed to join this space!' => '',
'You can also invite external users, which are not registered now. Just add their e-mail addresses separated by comma.' => '',
'You cannot create private visible spaces!' => '',
'You cannot create public visible spaces!' => '',
'You need to login to view contents of this space!' => '',
'Your request was successfully submitted to the space administrators.' => '',
'Your request was successfully submitted to the workspace administrators.' => '',
'{count} members' => '',
'{email} is already registered!' => '',
'{email} is not valid!' => '',
);

View File

@ -1,22 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Space is invisible!' => '',
'You need to login to view contents of this space!' => '',
];

View File

@ -0,0 +1,19 @@
<?php
return array (
'Add Space' => '',
'Add {n,plural,=1{space} other{spaces}}' => '',
'Create new space' => '',
'My spaces' => '',
'No member or following spaces found.' => '',
'No result found for the given filter.' => '',
'No spaces found for the given query' => '',
'Search' => 'ፈልግ',
'Search for spaces' => '',
'Select {n,plural,=1{space} other{spaces}}' => '',
'This field only allows a maximum of {n,plural,=1{# space} other{# spaces}}' => '',
'This space is archived' => '',
'To search for other spaces, type at least {count} characters.' => '',
'You are a member of this space' => 'እር' . "\0" . 'ስዎ የዚህ ምህዳር አባል ኖት',
'You are following this space' => '',
'{n,plural,=1{# new entry} other{# new entries}} since your last visit' => '',
);

View File

@ -1,21 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Stream (Default)' => '',
];

View File

@ -1,21 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'<strong>Members</strong>' => '',
];

View File

@ -1,28 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'As owner you cannot revoke your membership!' => '',
'Could not request membership!' => '',
'Sorry, you are not allowed to leave this space!' => '',
'There is no pending invite!' => '',
'This action is only available for workspace members!' => '',
'This user is already a member of this space.' => '',
'This user is not a member of this space.' => '',
'You are not allowed to join this space!' => '',
];

View File

@ -1,21 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Your password' => '',
];

View File

@ -1,10 +0,0 @@
<?php
return array (
'Invites' => '',
'New user by e-mail (comma separated)' => '',
'User \'{username}\' is already a member of this space!' => '',
'User \'{username}\' is already an applicant of this space!' => '',
'User not found!' => 'ተጠቃሚው አልተገኙም!',
'{email} is already registered!' => '',
'{email} is not valid!' => '',
);

View File

@ -1,21 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Application message' => '',
];

View File

@ -1,29 +1,67 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'As owner of this space you can transfer this role to another administrator in space.' => '',
'Remove from space' => '',
'Show all' => '',
'Space owner' => '',
'The url contains illegal characters!' => '',
'Transfer ownership' => '',
'e.g. example for {baseUrl}/s/example' => '',
'the default start page of this space for members' => '',
'the default start page of this space for visitors' => '',
];
return array (
'-' => '',
'<strong>Confirm</strong> image deleting' => '',
'<strong>Create</strong> new space' => '',
'<strong>Manage</strong> members' => '',
'<strong>Members</strong>' => '',
'<strong>Modify</strong> space image' => '',
'<strong>Security</strong> settings' => '',
'<strong>Space</strong> Modules' => '',
'<strong>Space</strong> settings' => '',
'Actions' => '',
'Activated' => 'አገልግሎት ይሰጣል',
'Add <strong>Modules</strong>' => '',
'Advanced access settings' => '',
'Archive' => '',
'Are you sure, that you want to delete this space? All published content will be removed!' => '',
'Are you sure? *ALL* module data for this space will be deleted!' => '',
'As owner of this space you can transfer this role to another administrator in space.' => '',
'Cancel' => 'ይቅር',
'Cancel Membership' => '',
'Choose if new content should be public or private by default' => '',
'Choose the kind of membership you want to provide for this workspace.' => '',
'Choose the security level for this workspace to define the visibleness.' => '',
'Close' => 'ዝጋ',
'Configure' => 'አዋቅር',
'Currently there are no modules available for this space!' => '',
'Delete' => 'አስወግድ',
'Disable' => 'እንዳይጠቀም አድርግ',
'Do you really want to delete your profile image?' => '',
'Do you really want to delete your title image?' => '',
'Don\'t receive notifications for new content' => '',
'Enable' => 'እንዲጠቀሙ አድርግ',
'Enhance this space with modules.' => '',
'Hide posts on dashboard' => '',
'Invited By' => '',
'Members' => 'አባላት',
'Modules' => 'ሞጁሎች',
'Next' => 'ቀጥሎ',
'Owner' => '',
'Pending Approvals' => '',
'Pending Invites' => '',
'Permissions are assigned to different user-roles. To edit a permission, select the user-role you want to edit and change the drop-down value of the given permission.' => '',
'Please provide your password to continue!' => '',
'Receive Notifications for new content' => '',
'Remove from space' => '',
'Role' => '',
'Save' => 'አስቀምጥ',
'Security' => 'ደህንነት',
'Send & decline' => '',
'Show all' => '',
'Show posts on dashboard' => '',
'Space name' => '',
'Space owner' => '',
'Stream (Default)' => '',
'The url contains illegal characters!' => '',
'This option will hide new content from this space at your dashboard' => '',
'This option will show new content from this space at your dashboard' => '',
'Transfer ownership' => '',
'Unarchive' => 'ከማህደር አውጣ',
'Your password' => '',
'e.g. example for {baseUrl}/s/example' => '',
'never' => 'ፈፅሞ',
'space description' => '',
'the default start page of this space for members' => '',
'the default start page of this space for visitors' => '',
);

View File

@ -1,28 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Created At' => '',
'Created By' => '',
'Last Visit' => '',
'Originator User ID' => '',
'Request Message' => '',
'Status' => '',
'Updated At' => '',
'Updated By' => '',
];

View File

@ -1,24 +0,0 @@
<?php
return array (
'Administrators' => '',
'Color' => '',
'Created At' => '',
'Created By' => '',
'Default content visibility' => '',
'Description' => '',
'Homepage' => '',
'Homepage (Guests)' => '',
'Join Policy' => '',
'Members' => 'አባላት',
'Moderators' => '',
'Name' => '',
'Owner' => '',
'Status' => '',
'Tags' => '',
'Updated At' => '',
'Updated by' => '',
'Users' => 'ተጠቃሚዎች',
'Visibility' => 'የእይታ ሁኔታ',
'You cannot create private visible spaces!' => '',
'You cannot create public visible spaces!' => '',
);

View File

@ -1,28 +1,16 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'You were added to Space {spaceName}' => '',
'{displayName} accepted your invite for the space {spaceName}' => '',
'{displayName} approved your membership for the space {spaceName}' => '',
'{displayName} declined your invite for the space {spaceName}' => '',
'{displayName} declined your membership request for the space {spaceName}' => '',
'{displayName} invited you to the space {spaceName}' => '',
'{displayName} requests membership for the space {spaceName}' => '',
'{displayName} revoked your invitation for the space {spaceName}' => '',
];
return array (
'Friendship' => '',
'Receive Notifications for Friendship Request and Approval events.' => '',
'Receive Notifications of Space Membership events.' => '',
'Space Membership' => '',
'View Online' => 'በመስመር ላይ ሆነው ይመልከቱ',
'You were added to Space {spaceName}' => '',
'{displayName} accepted your invite for the space {spaceName}' => '',
'{displayName} approved your membership for the space {spaceName}' => '',
'{displayName} declined your invite for the space {spaceName}' => '',
'{displayName} declined your membership request for the space {spaceName}' => '',
'{displayName} invited you to the space {spaceName}' => '',
'{displayName} requests membership for the space {spaceName}' => '',
'{displayName} revoked your invitation for the space {spaceName}' => '',
);

View File

@ -1,22 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Friendship' => '',
'Receive Notifications for Friendship Request and Approval events.' => '',
];

View File

@ -1,22 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Receive Notifications of Space Membership events.' => '',
'Space Membership' => '',
];

View File

@ -1,4 +0,0 @@
<?php
return array (
'View Online' => 'በመስመር ላይ ሆነው ይመልከቱ',
);

View File

@ -1,21 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Add {n,plural,=1{space} other{spaces}}' => '',
];

View File

@ -1,5 +0,0 @@
<?php
return array (
'<strong>Modify</strong> space image' => '',
'Close' => 'ዝጋ',
);

View File

@ -1,6 +0,0 @@
<?php
return array (
'Are you sure, that you want to delete this space? All published content will be removed!' => '',
'Delete' => 'አስወግድ',
'Please provide your password to continue!' => '',
);

View File

@ -1,10 +0,0 @@
<?php
return array (
'Archive' => '',
'Choose if new content should be public or private by default' => '',
'Choose the kind of membership you want to provide for this workspace.' => '',
'Choose the security level for this workspace to define the visibleness.' => '',
'Delete' => 'አስወግድ',
'Save' => 'አስቀምጥ',
'Unarchive' => 'ከማህደር አውጣ',
);

View File

@ -1,9 +0,0 @@
<?php
return array (
'-' => '',
'<strong>Manage</strong> members' => '',
'Actions' => '',
'Invited By' => '',
'Role' => '',
'never' => 'ፈፅሞ',
);

View File

@ -1,11 +0,0 @@
<?php
return array (
'<strong>Space</strong> Modules' => '',
'Activated' => 'አገልግሎት ይሰጣል',
'Are you sure? *ALL* module data for this space will be deleted!' => '',
'Configure' => 'አዋቅር',
'Currently there are no modules available for this space!' => '',
'Disable' => 'እንዳይጠቀም አድርግ',
'Enable' => 'እንዲጠቀሙ አድርግ',
'Enhance this space with modules.' => '',
);

View File

@ -1,8 +0,0 @@
<?php
return array (
'<strong>Create</strong> new space' => '',
'Advanced access settings' => '',
'Next' => 'ቀጥሎ',
'Space name' => '',
'space description' => '',
);

View File

@ -1,21 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Add <strong>Modules</strong>' => '',
];

View File

@ -1,23 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'<strong>Security</strong> settings' => '',
'<strong>Space</strong> settings' => '',
'Permissions are assigned to different user-roles. To edit a permission, select the user-role you want to edit and change the drop-down value of the given permission.' => '',
];

View File

@ -1,23 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'<b>This space is still empty!</b>' => '',
'<b>This space is still empty!</b><br>Start by posting something here...' => '',
'<b>You are not member of this space and there is no public content, yet!</b>' => '',
];

View File

@ -1,15 +0,0 @@
<?php
return array (
'<strong>Invite</strong> members' => '',
'Add users without invitation' => '',
'Done' => 'ተከናውኗል',
'Email addresses' => '',
'Invite by email' => '',
'Login' => 'ይግቡ',
'New user?' => '',
'Pick users' => '',
'Select all registered users' => '',
'Send' => '',
'To invite users to this space, please type their names below to find and pick them.' => '',
'You can also invite external users, which are not registered now. Just add their e-mail addresses separated by comma.' => '',
);

View File

@ -1,6 +0,0 @@
<?php
return array (
'<strong>Request</strong> space membership' => '',
'Close' => 'ዝጋ',
'Please shortly introduce yourself, to become an approved member of this space.' => '',
);

View File

@ -1,6 +0,0 @@
<?php
return array (
'<strong>Request</strong> space membership' => '',
'Close' => 'ዝጋ',
'Your request was successfully submitted to the space administrators.' => '',
);

View File

@ -1,21 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Users has been invited.' => '',
];

View File

@ -1,13 +0,0 @@
<?php
return array (
'Cancel Membership' => '',
'Don\'t receive notifications for new content' => '',
'Hide posts on dashboard' => '',
'Members' => 'አባላት',
'Modules' => 'ሞጁሎች',
'Receive Notifications for new content' => '',
'Security' => 'ደህንነት',
'Show posts on dashboard' => '',
'This option will hide new content from this space at your dashboard' => '',
'This option will show new content from this space at your dashboard' => '',
);

View File

@ -1,7 +0,0 @@
<?php
return array (
'My Space List' => '',
'My space summary' => '',
'Space directory' => '',
'Spaces' => 'ምህዳሮች',
);

View File

@ -1,7 +0,0 @@
<?php
return array (
'Members' => 'አባላት',
'Owner' => '',
'Pending Approvals' => '',
'Pending Invites' => '',
);

View File

@ -1,22 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'<strong>Space</strong> menu' => '',
'Stream' => '',
];

View File

@ -1,24 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Add Space' => '',
'No spaces found for the given query' => '',
'Select {n,plural,=1{space} other{spaces}}' => '',
'This field only allows a maximum of {n,plural,=1{# space} other{# spaces}}' => '',
];

View File

@ -1,6 +0,0 @@
<?php
return array (
'This space is archived' => '',
'You are a member of this space' => 'እር' . "\0" . 'ስዎ የዚህ ምህዳር አባል ኖት',
'You are following this space' => '',
);

View File

@ -1,7 +0,0 @@
<?php
return array (
'<strong>Confirm</strong> image deleting' => '',
'Cancel' => 'ይቅር',
'Delete' => 'አስወግድ',
'Do you really want to delete your title image?' => '',
);

View File

@ -1,7 +0,0 @@
<?php
return array (
'<strong>Confirm</strong> image deleting' => '',
'Cancel' => 'ይቅር',
'Delete' => 'አስወግድ',
'Do you really want to delete your profile image?' => '',
);

View File

@ -1,22 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Follow' => '',
'Unfollow' => '',
];

View File

@ -1,4 +0,0 @@
<?php
return array (
'Invite' => 'ይጋብዙ',
);

View File

@ -1,25 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Accept Invite' => '',
'Become member' => '',
'Cancel pending membership application' => '',
'Decline Invite' => '',
'Request membership' => '',
];

View File

@ -1,8 +0,0 @@
<?php
return array (
'<strong>Something</strong> went wrong' => '',
'Followers' => '',
'Members' => 'አባላት',
'Ok' => 'እሺ',
'Posts' => '',
);

View File

@ -1,7 +0,0 @@
<?php
return array (
'Cancel' => 'ይቅር',
'Please shortly introduce yourself, to become a approved member of this workspace.' => '',
'Request workspace membership' => '',
'Send' => '',
);

View File

@ -1,6 +0,0 @@
<?php
return array (
'Close' => 'ዝጋ',
'Request workspace membership' => '',
'Your request was successfully submitted to the workspace administrators.' => '',
);

View File

@ -1,10 +0,0 @@
<?php
return array (
'Create new space' => '',
'My spaces' => '',
'No member or following spaces found.' => '',
'No result found for the given filter.' => '',
'Search' => 'ፈልግ',
'Search for spaces' => '',
'To search for other spaces, type at least {count} characters.' => '',
);

View File

@ -1,21 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'{n,plural,=1{# new entry} other{# new entries}} since your last visit' => '',
];

View File

@ -1,25 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'<strong>New</strong> member request' => '',
'<strong>Space</strong> members' => '',
'Accept' => '',
'Decline' => '',
'Show all' => '',
];

View File

@ -1,4 +0,0 @@
<?php
return array (
'Send & decline' => ' Ninviar y denegar',
);

View File

@ -1,26 +1,115 @@
<?php
return array (
'<b>This space is still empty!</b>' => '<b>Iste espacio encara ye vuido!</b>',
'<b>This space is still empty!</b><br>Start by posting something here...' => '<b>Iste espacio encara ye vuido!</b><br>Empecipia publicando bella cosa aquí...',
'<b>You are not member of this space and there is no public content, yet!</b>' => '<b>No yes miembro d\'iste espacio y no i hai conteniu encara!</b>',
'<strong>Invite</strong> members' => '',
'<strong>New</strong> member request' => '',
'<strong>Request</strong> space membership' => '',
'<strong>Something</strong> went wrong' => '<strong>Ixo</strong> no salió bien...',
'<strong>Space</strong> followers' => '',
'<strong>Space</strong> members' => '<strong>Miembros</strong> de l\'espacio',
'<strong>Space</strong> menu' => '<strong>Menu</strong> d\'o espacio',
'Accept' => 'Akzeptieren',
'Accept Invite' => '',
'Add users without invitation' => '',
'Administrator:' => '',
'Administrators' => '',
'Application message' => '',
'Archived' => 'Archivau',
'As owner you cannot revoke your membership!' => '',
'Become member' => '',
'Cancel' => 'Cancelar',
'Cancel pending membership application' => '',
'Close' => 'Zavřít',
'Color' => '',
'Could not request membership!' => '',
'Created At' => 'Creyau o',
'Created By' => 'Creyau per',
'Decline' => '',
'Decline Invite' => '',
'Default' => 'Defecto',
'Default content visibility' => '',
'Description' => 'Descripción',
'Done' => '',
'Email addresses' => '',
'Everyone can enter' => '',
'Follow' => 'Seguir',
'Followers' => 'Seguidors',
'Homepage' => '',
'Homepage (Guests)' => '',
'Invite' => '',
'Invite and request' => '',
'Invite by email' => '',
'Invites' => '',
'Join Policy' => '',
'Last Visit' => 'Zaguera visita',
'Login' => 'Iniciar sesión',
'Members' => 'Miembros',
'Moderator:' => '',
'Moderators' => '',
'My Space List' => 'A mía lista d\'espacios',
'My space summary' => 'O mío resumen d\'os espacios',
'Name' => '',
'New user by e-mail (comma separated)' => '',
'New user?' => '',
'No spaces found.' => '',
'Ok' => 'Ok',
'Only by invite' => '',
'Originator User ID' => '',
'Owner' => '',
'Owner:' => '',
'Pick users' => '',
'Please shortly introduce yourself, to become a approved member of this workspace.' => '',
'Please shortly introduce yourself, to become an approved member of this space.' => '',
'Posts' => '',
'Private' => '',
'Private (Invisible)' => '',
'Public' => 'Publico',
'Public (Members & Guests)' => '',
'Public (Members only)' => '',
'Public (Registered users only)' => '',
'Request Message' => '',
'Request membership' => '',
'Request workspace membership' => '',
'Select all registered users' => '',
'Send' => 'Ninviar',
'Settings' => 'Achustes',
'Show all' => '',
'Sorry, you are not allowed to leave this space!' => '',
'Space' => 'Espacio',
'Space directory' => 'Directorio d\'espacios',
'Space is invisible!' => 'L\'espacio ye invisible!',
'Spaces' => 'Espacios',
'Status' => '',
'Stream' => 'Actividatz',
'Tags' => 'Etiquetas',
'There is no pending invite!' => '',
'This action is only available for workspace members!' => '',
'This user is already a member of this space.' => '',
'This user is not a member of this space.' => '',
'To invite users to this space, please type their names below to find and pick them.' => '',
'Unfollow' => 'Deixar de seguir',
'Updated At' => 'Actualizau o',
'Updated By' => 'Actualizau per',
'Updated by' => '',
'User \'{username}\' is already a member of this space!' => '',
'User \'{username}\' is already an applicant of this space!' => '',
'User invitations have been added to the queue' => '',
'User memberships have been added to the queue' => '',
'User not found!' => ' Gebruikers niet gevonden!',
'Users' => 'Usuarios',
'Users has been invited.' => '',
'Visibility' => 'Visibilidat',
'Visible for all (members and guests)' => '',
'You are not allowed to join this space!' => '',
'You can also invite external users, which are not registered now. Just add their e-mail addresses separated by comma.' => '',
'You cannot create private visible spaces!' => '',
'You cannot create public visible spaces!' => '',
'You need to login to view contents of this space!' => 'Cal connectar-se pa veyer os contenius d\'iste espacio!',
'Your request was successfully submitted to the space administrators.' => '',
'Your request was successfully submitted to the workspace administrators.' => '',
'{count} members' => '',
'{email} is already registered!' => '',
'{email} is not valid!' => '',
);

View File

@ -1,22 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Space is invisible!' => 'L\'espacio ye invisible!',
'You need to login to view contents of this space!' => 'Cal connectar-se pa veyer os contenius d\'iste espacio!',
];

View File

@ -0,0 +1,19 @@
<?php
return array (
'Add Space' => '',
'Add {n,plural,=1{space} other{spaces}}' => '',
'Create new space' => 'Creyar nuevo espacio',
'My spaces' => 'Espacios',
'No member or following spaces found.' => 'No s\'han trobau espacios que sigas u que sías miembro.',
'No result found for the given filter.' => '',
'No spaces found for the given query' => '',
'Search' => 'Buscar',
'Search for spaces' => 'Buscar espacios',
'Select {n,plural,=1{space} other{spaces}}' => '',
'This field only allows a maximum of {n,plural,=1{# space} other{# spaces}}' => '',
'This space is archived' => '',
'To search for other spaces, type at least {count} characters.' => 'Pa buscar atros espacios, mete {count} o mas caracters.',
'You are a member of this space' => '',
'You are following this space' => '',
'{n,plural,=1{# new entry} other{# new entries}} since your last visit' => '',
);

View File

@ -1,21 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Stream (Default)' => '',
];

View File

@ -1,21 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'<strong>Members</strong>' => '<strong>Miembros</strong>',
];

View File

@ -1,28 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'As owner you cannot revoke your membership!' => '',
'Could not request membership!' => '',
'Sorry, you are not allowed to leave this space!' => '',
'There is no pending invite!' => '',
'This action is only available for workspace members!' => '',
'This user is already a member of this space.' => '',
'This user is not a member of this space.' => '',
'You are not allowed to join this space!' => '',
];

View File

@ -1,4 +0,0 @@
<?php
return array (
'Your password' => ' ',
);

View File

@ -1,27 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Invites' => '',
'New user by e-mail (comma separated)' => '',
'User \'{username}\' is already a member of this space!' => '',
'User \'{username}\' is already an applicant of this space!' => '',
'{email} is already registered!' => '',
'{email} is not valid!' => '',
'User not found!' => ' Gebruikers niet gevonden!',
];

View File

@ -1,21 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yiic message' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE, this file must be saved in UTF-8 encoding.
*/
return array (
'Application message' => '',
);

View File

@ -1,29 +1,67 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'As owner of this space you can transfer this role to another administrator in space.' => '',
'Remove from space' => '',
'Show all' => '',
'Space owner' => '',
'The url contains illegal characters!' => '',
'Transfer ownership' => '',
'e.g. example for {baseUrl}/s/example' => '',
'the default start page of this space for members' => '',
'the default start page of this space for visitors' => '',
];
return array (
'-' => '',
'<strong>Confirm</strong> image deleting' => '',
'<strong>Create</strong> new space' => '',
'<strong>Manage</strong> members' => '',
'<strong>Members</strong>' => '<strong>Miembros</strong>',
'<strong>Modify</strong> space image' => '',
'<strong>Security</strong> settings' => '<strong>Achustes</strong> de seguranza',
'<strong>Space</strong> Modules' => '',
'<strong>Space</strong> settings' => '',
'Actions' => '',
'Activated' => '',
'Add <strong>Modules</strong>' => '',
'Advanced access settings' => '',
'Archive' => '',
'Are you sure, that you want to delete this space? All published content will be removed!' => '',
'Are you sure? *ALL* module data for this space will be deleted!' => '',
'As owner of this space you can transfer this role to another administrator in space.' => '',
'Cancel' => 'Cancelar',
'Cancel Membership' => '',
'Choose if new content should be public or private by default' => '',
'Choose the kind of membership you want to provide for this workspace.' => '',
'Choose the security level for this workspace to define the visibleness.' => '',
'Close' => 'Zavřít',
'Configure' => '',
'Currently there are no modules available for this space!' => '',
'Delete' => 'Eliminar',
'Disable' => '',
'Do you really want to delete your profile image?' => '',
'Do you really want to delete your title image?' => '',
'Don\'t receive notifications for new content' => '',
'Enable' => '',
'Enhance this space with modules.' => '',
'Hide posts on dashboard' => '',
'Invited By' => '',
'Members' => 'Miembros',
'Modules' => 'Modulos',
'Next' => 'Siguient',
'Owner' => '',
'Pending Approvals' => '',
'Pending Invites' => '',
'Permissions are assigned to different user-roles. To edit a permission, select the user-role you want to edit and change the drop-down value of the given permission.' => '',
'Please provide your password to continue!' => '',
'Receive Notifications for new content' => '',
'Remove from space' => '',
'Role' => '',
'Save' => 'Uložit',
'Security' => 'Seguranza',
'Send & decline' => ' Ninviar y denegar',
'Show all' => '',
'Show posts on dashboard' => '',
'Space name' => '',
'Space owner' => '',
'Stream (Default)' => '',
'The url contains illegal characters!' => '',
'This option will hide new content from this space at your dashboard' => '',
'This option will show new content from this space at your dashboard' => '',
'Transfer ownership' => '',
'Unarchive' => 'Quitar de l\'archivo',
'Your password' => ' ',
'e.g. example for {baseUrl}/s/example' => '',
'never' => '',
'space description' => '',
'the default start page of this space for members' => '',
'the default start page of this space for visitors' => '',
);

View File

@ -1,11 +0,0 @@
<?php
return array (
'Created At' => 'Creyau o',
'Created By' => 'Creyau per',
'Last Visit' => 'Zaguera visita',
'Originator User ID' => '',
'Request Message' => '',
'Status' => '',
'Updated At' => 'Actualizau o',
'Updated By' => 'Actualizau per',
);

View File

@ -1,24 +0,0 @@
<?php
return array (
'Administrators' => '',
'Color' => '',
'Created At' => 'Creyau o',
'Created By' => 'Creyau per',
'Default content visibility' => '',
'Description' => 'Descripción',
'Homepage' => '',
'Homepage (Guests)' => '',
'Join Policy' => '',
'Members' => 'Miembros',
'Moderators' => '',
'Name' => '',
'Owner' => '',
'Status' => '',
'Tags' => 'Etiquetas',
'Updated At' => 'Actualizau o',
'Updated by' => '',
'Users' => 'Usuarios',
'Visibility' => 'Visibilidat',
'You cannot create private visible spaces!' => '',
'You cannot create public visible spaces!' => '',
);

View File

@ -1,28 +1,16 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'You were added to Space {spaceName}' => '',
'{displayName} accepted your invite for the space {spaceName}' => '',
'{displayName} approved your membership for the space {spaceName}' => '',
'{displayName} declined your invite for the space {spaceName}' => '',
'{displayName} declined your membership request for the space {spaceName}' => '',
'{displayName} invited you to the space {spaceName}' => '',
'{displayName} requests membership for the space {spaceName}' => '',
'{displayName} revoked your invitation for the space {spaceName}' => '',
];
return array (
'Friendship' => '',
'Receive Notifications for Friendship Request and Approval events.' => '',
'Receive Notifications of Space Membership events.' => '',
'Space Membership' => '',
'View Online' => 'Veyer en linia',
'You were added to Space {spaceName}' => '',
'{displayName} accepted your invite for the space {spaceName}' => '',
'{displayName} approved your membership for the space {spaceName}' => '',
'{displayName} declined your invite for the space {spaceName}' => '',
'{displayName} declined your membership request for the space {spaceName}' => '',
'{displayName} invited you to the space {spaceName}' => '',
'{displayName} requests membership for the space {spaceName}' => '',
'{displayName} revoked your invitation for the space {spaceName}' => '',
);

View File

@ -1,22 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Friendship' => '',
'Receive Notifications for Friendship Request and Approval events.' => '',
];

View File

@ -1,22 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Receive Notifications of Space Membership events.' => '',
'Space Membership' => '',
];

View File

@ -1,4 +0,0 @@
<?php
return array (
'View Online' => 'Veyer en linia',
);

View File

@ -1,21 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Add {n,plural,=1{space} other{spaces}}' => '',
];

View File

@ -1,22 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'<strong>Modify</strong> space image' => '',
'Close' => 'Zavřít',
];

View File

@ -1,23 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Are you sure, that you want to delete this space? All published content will be removed!' => '',
'Please provide your password to continue!' => '',
'Delete' => 'Eliminar',
];

View File

@ -1,10 +0,0 @@
<?php
return array (
'Archive' => '',
'Choose if new content should be public or private by default' => '',
'Choose the kind of membership you want to provide for this workspace.' => '',
'Choose the security level for this workspace to define the visibleness.' => '',
'Delete' => 'Eliminar',
'Save' => 'Uložit',
'Unarchive' => 'Quitar de l\'archivo',
);

View File

@ -1,26 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'-' => '',
'<strong>Manage</strong> members' => '',
'Actions' => '',
'Invited By' => '',
'Role' => '',
'never' => '',
];

View File

@ -1,28 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yiic message' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE, this file must be saved in UTF-8 encoding.
*/
return array (
'<strong>Space</strong> Modules' => '',
'Activated' => '',
'Are you sure? *ALL* module data for this space will be deleted!' => '',
'Configure' => '',
'Currently there are no modules available for this space!' => '',
'Disable' => '',
'Enable' => '',
'Enhance this space with modules.' => '',
);

View File

@ -1,8 +0,0 @@
<?php
return array (
'<strong>Create</strong> new space' => '',
'Advanced access settings' => '',
'Next' => 'Siguient',
'Space name' => '',
'space description' => '',
);

View File

@ -1,21 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Add <strong>Modules</strong>' => '',
];

View File

@ -1,6 +0,0 @@
<?php
return array (
'<strong>Security</strong> settings' => '<strong>Achustes</strong> de seguranza',
'<strong>Space</strong> settings' => '',
'Permissions are assigned to different user-roles. To edit a permission, select the user-role you want to edit and change the drop-down value of the given permission.' => '',
);

View File

@ -1,6 +0,0 @@
<?php
return array (
'<b>This space is still empty!</b>' => '<b>Iste espacio encara ye vuido!</b>',
'<b>This space is still empty!</b><br>Start by posting something here...' => '<b>Iste espacio encara ye vuido!</b><br>Empecipia publicando bella cosa aquí...',
'<b>You are not member of this space and there is no public content, yet!</b>' => '<b>No yes miembro d\'iste espacio y no i hai conteniu encara!</b>',
);

View File

@ -1,15 +0,0 @@
<?php
return array (
'<strong>Invite</strong> members' => '',
'Add users without invitation' => '',
'Done' => '',
'Email addresses' => '',
'Invite by email' => '',
'Login' => 'Iniciar sesión',
'New user?' => '',
'Pick users' => '',
'Select all registered users' => '',
'Send' => 'Ninviar',
'To invite users to this space, please type their names below to find and pick them.' => '',
'You can also invite external users, which are not registered now. Just add their e-mail addresses separated by comma.' => '',
);

View File

@ -1,23 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'<strong>Request</strong> space membership' => '',
'Please shortly introduce yourself, to become an approved member of this space.' => '',
'Close' => 'Zavřít',
];

View File

@ -1,6 +0,0 @@
<?php
return array (
'<strong>Request</strong> space membership' => '',
'Close' => 'Zavřít',
'Your request was successfully submitted to the space administrators.' => '',
);

View File

@ -1,21 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Users has been invited.' => '',
];

View File

@ -1,13 +0,0 @@
<?php
return array (
'Cancel Membership' => '',
'Don\'t receive notifications for new content' => '',
'Hide posts on dashboard' => '',
'Members' => 'Miembros',
'Modules' => 'Modulos',
'Receive Notifications for new content' => '',
'Security' => 'Seguranza',
'Show posts on dashboard' => '',
'This option will hide new content from this space at your dashboard' => '',
'This option will show new content from this space at your dashboard' => '',
);

View File

@ -1,7 +0,0 @@
<?php
return array (
'My Space List' => 'A mía lista d\'espacios',
'My space summary' => 'O mío resumen d\'os espacios',
'Space directory' => 'Directorio d\'espacios',
'Spaces' => 'Espacios',
);

View File

@ -1,7 +0,0 @@
<?php
return array (
'Members' => 'Miembros',
'Owner' => '',
'Pending Approvals' => '',
'Pending Invites' => '',
);

View File

@ -1,5 +0,0 @@
<?php
return array (
'<strong>Space</strong> menu' => '<strong>Menu</strong> d\'o espacio',
'Stream' => 'Actividatz',
);

View File

@ -1,24 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Add Space' => '',
'No spaces found for the given query' => '',
'Select {n,plural,=1{space} other{spaces}}' => '',
'This field only allows a maximum of {n,plural,=1{# space} other{# spaces}}' => '',
];

View File

@ -1,23 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'This space is archived' => '',
'You are a member of this space' => '',
'You are following this space' => '',
];

View File

@ -1,7 +0,0 @@
<?php
return array (
'<strong>Confirm</strong> image deleting' => '',
'Cancel' => 'Cancelar',
'Delete' => 'Eliminar',
'Do you really want to delete your title image?' => '',
);

View File

@ -1,7 +0,0 @@
<?php
return array (
'<strong>Confirm</strong> image deleting' => '',
'Cancel' => 'Cancelar',
'Delete' => 'Eliminar',
'Do you really want to delete your profile image?' => '',
);

View File

@ -1,5 +0,0 @@
<?php
return array (
'Follow' => 'Seguir',
'Unfollow' => 'Deixar de seguir',
);

View File

@ -1,4 +0,0 @@
<?php
return array (
'Invite' => '',
);

View File

@ -1,25 +0,0 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message (key).
* If the value is empty, the message is considered as not translated.
* Messages that no longer need translation will have their translations
* enclosed between a pair of '@@' marks.
*
* Message string can be used with plural forms format. Check i18n section
* of the guide for details.
*
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Accept Invite' => '',
'Become member' => '',
'Cancel pending membership application' => '',
'Decline Invite' => '',
'Request membership' => '',
];

View File

@ -1,8 +0,0 @@
<?php
return array (
'<strong>Something</strong> went wrong' => '<strong>Ixo</strong> no salió bien...',
'Followers' => 'Seguidors',
'Members' => 'Miembros',
'Ok' => 'Ok',
'Posts' => '',
);

View File

@ -1,7 +0,0 @@
<?php
return array (
'Cancel' => 'Cancelar',
'Please shortly introduce yourself, to become a approved member of this workspace.' => '',
'Request workspace membership' => '',
'Send' => 'Ninviar',
);

View File

@ -1,6 +0,0 @@
<?php
return array (
'Close' => 'Zavřít',
'Request workspace membership' => '',
'Your request was successfully submitted to the workspace administrators.' => '',
);

Some files were not shown because too many files have changed in this diff Show More