mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 17:01:16 +00:00
Move resources/lang folder
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used during authentication for various
|
||||
| messages that we need to display to the user. You are free to modify
|
||||
| these language lines according to your application's requirements.
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => 'These credentials do not match our records.',
|
||||
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Previous',
|
||||
'next' => 'Next »',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reset Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
'password' => 'Passwords must be at least six characters and match the confirmation.',
|
||||
'reset' => 'Your password has been reset!',
|
||||
'sent' => 'We have e-mailed your password reset link!',
|
||||
'token' => 'This password reset token is invalid.',
|
||||
'user' => "We can't find a user with that e-mail address.",
|
||||
|
||||
];
|
||||
@@ -0,0 +1,121 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| as the size rules. Feel free to tweak each of these messages here.
|
||||
|
|
||||
*/
|
||||
|
||||
'accepted' => 'The :attribute must be accepted.',
|
||||
'active_url' => 'The :attribute is not a valid URL.',
|
||||
'after' => 'The :attribute must be a date after :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => 'The :attribute may only contain letters.',
|
||||
'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.',
|
||||
'alpha_num' => 'The :attribute may only contain letters and numbers.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => 'The :attribute must be a date before :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => 'The :attribute must be between :min and :max.',
|
||||
'file' => 'The :attribute must be between :min and :max kilobytes.',
|
||||
'string' => 'The :attribute must be between :min and :max characters.',
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'date' => 'The :attribute is not a valid date.',
|
||||
'date_format' => 'The :attribute does not match the format :format.',
|
||||
'different' => 'The :attribute and :other must be different.',
|
||||
'digits' => 'The :attribute must be :digits digits.',
|
||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'The :attribute must be a valid email address.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'image' => 'The :attribute must be an image.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'The :attribute must be an integer.',
|
||||
'ip' => 'The :attribute must be a valid IP address.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'max' => [
|
||||
'numeric' => 'The :attribute may not be greater than :max.',
|
||||
'file' => 'The :attribute may not be greater than :max kilobytes.',
|
||||
'string' => 'The :attribute may not be greater than :max characters.',
|
||||
'array' => 'The :attribute may not have more than :max items.',
|
||||
],
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'The :attribute must be at least :min.',
|
||||
'file' => 'The :attribute must be at least :min kilobytes.',
|
||||
'string' => 'The :attribute must be at least :min characters.',
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
],
|
||||
'not_in' => 'The selected :attribute is invalid.',
|
||||
'numeric' => 'The :attribute must be a number.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => 'The :attribute format is invalid.',
|
||||
'required' => 'The :attribute field is required.',
|
||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'The :attribute field is required when :values is present.',
|
||||
'required_with_all' => 'The :attribute field is required when :values is present.',
|
||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => 'The :attribute and :other must match.',
|
||||
'size' => [
|
||||
'numeric' => 'The :attribute must be :size.',
|
||||
'file' => 'The :attribute must be :size kilobytes.',
|
||||
'string' => 'The :attribute must be :size characters.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
],
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => 'The :attribute has already been taken.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => 'The :attribute format is invalid.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => [
|
||||
'attribute-name' => [
|
||||
'rule-name' => 'custom-message',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Attributes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used to swap attribute place-holders
|
||||
| with something more reader friendly such as E-Mail Address instead
|
||||
| of "email". This simply helps us make messages a little cleaner.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => [],
|
||||
|
||||
];
|
||||
Vendored
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'access_controlled_by_private_ancestor' => 'The ancestor category :category is set as private and controls access to this category.',
|
||||
'actions' => 'Kategorie-Aktionen',
|
||||
'category' => 'Kategorie|Kategorien',
|
||||
'confirm_nonempty_delete' => 'Yes, I want to permanently delete this category and everything inside it',
|
||||
'create' => 'Kategorie anlegen',
|
||||
'created' => 'Kategorie angelegt',
|
||||
'deleted' => 'Kategorie gelöscht|Kategorien gelöscht',
|
||||
'disable_threads' => 'Themen deaktivieren',
|
||||
'enable_threads' => 'Themen aktivieren',
|
||||
'make_private' => 'Privat machen',
|
||||
'make_public' => 'Öffentlich machen',
|
||||
'mark_read' => 'Themen in dieser Kategorie als gelesen markieren',
|
||||
'marked_read' => 'Neue / geänderte Themen in :category wurden als gelesen markiert',
|
||||
'restored' => 'Kategorie wiederhergestellt|Kategorien wiederhergestellt',
|
||||
'subcategories' => 'Unterkategorien',
|
||||
'threads_disabled' => 'Erstellung neuer Themen ist in dieser Kategorie deaktiviert',
|
||||
'updated' => 'Kategorie geändert|Kategorien geändert',
|
||||
|
||||
];
|
||||
Vendored
+48
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Aktion|Aktionen',
|
||||
'author' => 'Autor',
|
||||
'cancel' => 'Abbrechen',
|
||||
'changes_applied' => 'Changes applied',
|
||||
'create' => 'Erstellen',
|
||||
'color' => 'Color',
|
||||
'delete' => 'Löschen',
|
||||
'deleted' => 'Gelöscht',
|
||||
'description' => 'Beschreibung',
|
||||
'edit' => 'Bearbeiten',
|
||||
'editing' => 'Sie bearbeiten :item',
|
||||
'generic_confirm' => 'Sind Sie sicher?',
|
||||
'home_title' => 'Forum',
|
||||
'index' => 'Index',
|
||||
'invalid_selection' => 'Ungültige Auswahl',
|
||||
'last_updated' => 'Letzte Änderung',
|
||||
'manage' => 'Manage',
|
||||
'mark_read' => 'Als gelesen markieren',
|
||||
'move' => 'Verschieben',
|
||||
'new' => 'Neu',
|
||||
'new_reply' => 'Neue Antwort',
|
||||
'none' => 'Keine',
|
||||
'perma_delete' => 'Endgültig löschen',
|
||||
'permalink' => 'Permalink',
|
||||
'posted' => 'Geschrieben am',
|
||||
'private' => 'Privat',
|
||||
'proceed' => 'Fortfahren',
|
||||
'quick_reply' => 'Direktantwort',
|
||||
'rename' => 'Umbenennen',
|
||||
'replies' => 'Antworten',
|
||||
'reply' => 'Antworten',
|
||||
'reply_added' => 'Antwort hinzugefügt',
|
||||
'replying_to' => 'Sie antworten auf :item',
|
||||
'response_to' => 'Als Antwort auf :item',
|
||||
'restore' => 'Wiederherstellen',
|
||||
'save' => 'Save',
|
||||
'subject' => 'Thema',
|
||||
'title' => 'Titel',
|
||||
'unread' => 'Unread',
|
||||
'updated' => 'Updated',
|
||||
'weight' => 'Gewichtung',
|
||||
'with_selection' => 'Mit Auswahl…',
|
||||
|
||||
];
|
||||
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Beitrag Aktionen',
|
||||
'created' => 'Beitrag erstellt',
|
||||
'delete' => 'Delete post|Delete posts',
|
||||
'deleted' => 'Beitrag gelöscht|Beiträge gelöscht',
|
||||
'edit' => 'Beitrag bearbeiten',
|
||||
'last' => 'Letzter Beitrag',
|
||||
'perma_deleted' => 'Beitrag dauerhaft gelöscht|Beiträge dauerhaft gelöscht',
|
||||
'post' => 'Beitrag|Beiträge',
|
||||
'restore' => 'Restore post|Restore posts',
|
||||
'restored' => 'Beitrag wiederhergestellt|Beiträge wiederhergestellt',
|
||||
'select_all' => 'Select all posts',
|
||||
'updated' => 'Beitrag aktualisiert|Beiträge aktualisiert',
|
||||
'view' => 'Beitrag ansehen',
|
||||
'your_post' => 'Dein Beitrag',
|
||||
|
||||
];
|
||||
Vendored
+28
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Thema-Aktionen',
|
||||
'created' => 'Thema erstellt',
|
||||
'delete' => 'Dieses Thema löschen',
|
||||
'deleted' => 'Thema gelöscht|Themen gelöscht',
|
||||
'lock' => 'Sperren',
|
||||
'locked' => 'Gesperrt',
|
||||
'marked_read' => 'Alle Themen wurden als gelesen markiert',
|
||||
'new_thread' => 'Neues Thema',
|
||||
'new_updated' => 'Neue & geänderte Themen',
|
||||
'newest' => 'Neuestes Thema',
|
||||
'none_found' => 'Keine Themen gefunden',
|
||||
'perma_delete' => 'Permanently delete thread|Permanently delete threads',
|
||||
'perma_deleted' => 'Thema entgültig gelöscht|Themen entgültig gelöscht',
|
||||
'pin' => 'Anheften',
|
||||
'pinned' => 'Angeheftet',
|
||||
'post_the_first' => 'Erstelle das erste Thema!',
|
||||
'restored' => 'Thema wiederhergestellt|Themen wiederhergestellt',
|
||||
'thread' => 'Thema|Themen',
|
||||
'updated' => 'Thema geändert|Themen geändert',
|
||||
'unlock' => 'Entsperren',
|
||||
'unpin' => 'Entheften',
|
||||
'view' => 'Thema ansehen',
|
||||
|
||||
];
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'category_threads_enabled' => 'Die Erstellung neuer Themen muss in dieser Kategorie aktiviert sein.',
|
||||
'category_has_no_threads' => 'Die Kategorie darf keine Themen enthalten.',
|
||||
'category_is_empty' => 'Die Kategorie muss leer sein.',
|
||||
|
||||
];
|
||||
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'access_controlled_by_private_ancestor' => 'The ancestor category :category is set as private and controls access to this category.',
|
||||
'actions' => 'Category actions',
|
||||
'category' => 'Category|Categories',
|
||||
'confirm_nonempty_delete' => 'Yes, I want to permanently delete this category and everything inside it',
|
||||
'create' => 'Create category',
|
||||
'created' => 'Category created',
|
||||
'deleted' => 'Category deleted|Categories deleted',
|
||||
'disable_threads' => 'Disable threads',
|
||||
'enable_threads' => 'Enable threads',
|
||||
'make_private' => 'Make private',
|
||||
'make_public' => 'Make public',
|
||||
'mark_read' => 'Mark threads in this category as read',
|
||||
'marked_read' => 'New/updated threads in :category have been marked as read',
|
||||
'restored' => 'Category restored|Categories restored',
|
||||
'subcategories' => 'Subcategories',
|
||||
'threads_disabled' => 'New thread creation is disabled in this category',
|
||||
'updated' => 'Category updated|Categories updated',
|
||||
|
||||
];
|
||||
Vendored
+48
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Action|Actions',
|
||||
'author' => 'Author',
|
||||
'cancel' => 'Cancel',
|
||||
'changes_applied' => 'Changes applied',
|
||||
'create' => 'Create',
|
||||
'color' => 'Color',
|
||||
'delete' => 'Delete',
|
||||
'deleted' => 'Deleted',
|
||||
'description' => 'Description',
|
||||
'edit' => 'Edit',
|
||||
'editing' => "You're editing :item",
|
||||
'generic_confirm' => 'Are you sure?',
|
||||
'home_title' => 'Forum',
|
||||
'index' => 'Index',
|
||||
'invalid_selection' => 'Invalid selection',
|
||||
'last_updated' => 'Last updated',
|
||||
'manage' => 'Manage',
|
||||
'mark_read' => 'Mark as read',
|
||||
'move' => 'Move',
|
||||
'new' => 'New',
|
||||
'new_reply' => 'New reply',
|
||||
'none' => 'None',
|
||||
'perma_delete' => 'Permanently delete',
|
||||
'permalink' => 'Permalink',
|
||||
'posted' => 'Posted',
|
||||
'private' => 'Private',
|
||||
'proceed' => 'Proceed',
|
||||
'quick_reply' => 'Quick reply',
|
||||
'rename' => 'Rename',
|
||||
'replies' => 'Replies',
|
||||
'reply' => 'Reply',
|
||||
'reply_added' => 'Reply added',
|
||||
'replying_to' => "You're replying to :item",
|
||||
'response_to' => 'In response to :item',
|
||||
'restore' => 'Restore',
|
||||
'save' => 'Save',
|
||||
'subject' => 'Subject',
|
||||
'title' => 'Title',
|
||||
'unread' => 'Unread',
|
||||
'updated' => 'Updated',
|
||||
'weight' => 'Weight',
|
||||
'with_selection' => 'With selection…',
|
||||
|
||||
];
|
||||
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Post actions',
|
||||
'created' => 'Post created',
|
||||
'delete' => 'Delete post|Delete posts',
|
||||
'deleted' => 'Post deleted|Posts deleted',
|
||||
'edit' => 'Edit post',
|
||||
'last' => 'Last post',
|
||||
'perma_deleted' => 'Post permanently deleted|Posts permanently deleted',
|
||||
'post' => 'Post|Posts',
|
||||
'restore' => 'Restore post|Restore posts',
|
||||
'restored' => 'Post restored|Posts restored',
|
||||
'select_all' => 'Select all posts',
|
||||
'updated' => 'Post updated|Posts updated',
|
||||
'view' => 'View post',
|
||||
'your_post' => 'Your post',
|
||||
|
||||
];
|
||||
Vendored
+30
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Thread actions',
|
||||
'created' => 'Thread created',
|
||||
'delete' => 'Delete this thread',
|
||||
'deleted' => 'Thread deleted|Threads deleted',
|
||||
'lock' => 'Lock',
|
||||
'locked' => 'Locked',
|
||||
'marked_read' => 'All threads have been marked as read',
|
||||
'new_thread' => 'New thread',
|
||||
'newest' => 'Newest thread',
|
||||
'none_found' => 'No threads found',
|
||||
'perma_delete' => 'Permanently delete thread|Permanently delete threads',
|
||||
'perma_deleted' => 'Thread permanently deleted|Threads permanently deleted',
|
||||
'pin' => 'Pin',
|
||||
'pinned' => 'Pinned',
|
||||
'post_the_first' => 'Post the first!',
|
||||
'recent' => 'Recent threads',
|
||||
'restored' => 'Thread restored|Threads restored',
|
||||
'select_all' => 'Select all threads',
|
||||
'thread' => 'Thread|Threads',
|
||||
'updated' => 'Thread updated|Threads updated',
|
||||
'unlock' => 'Unlock',
|
||||
'unpin' => 'Unpin',
|
||||
'unread_updated' => 'Unread & updated threads',
|
||||
'view' => 'View thread',
|
||||
|
||||
];
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'category_threads_enabled' => 'The category must have threads enabled.',
|
||||
'category_has_no_threads' => 'The category must not contain threads.',
|
||||
'category_is_empty' => 'The category must be empty.',
|
||||
|
||||
];
|
||||
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'access_controlled_by_private_ancestor' => 'The ancestor category :category is set as private and controls access to this category.',
|
||||
'actions' => 'Acciones categoría',
|
||||
'category' => 'Categoría|Categorías',
|
||||
'confirm_nonempty_delete' => 'Yes, I want to permanently delete this category and everything inside it',
|
||||
'create' => 'Crear categoría',
|
||||
'created' => 'Categoría creado|Categorías creado',
|
||||
'deleted' => 'Categoría eliminada|Categorías eliminada',
|
||||
'disable_threads' => 'Discusiones Desactivar',
|
||||
'enable_threads' => 'Habilitar discusiones',
|
||||
'make_private' => 'Haga privada',
|
||||
'make_public' => 'Hacer público',
|
||||
'mark_read' => 'Marcar las discusiones en esta categoría como leídos',
|
||||
'marked_read' => 'Discusiones nuevos / actualizados en :category han sido marcados como leídos',
|
||||
'restored' => 'Categoría restaurado|Categorías restaurado',
|
||||
'subcategories' => 'Subcategorías',
|
||||
'threads_disabled' => 'Nueva creación discusión está desactivada en esta categoría',
|
||||
'updated' => 'Categoría actualiza|Categorías actualiza',
|
||||
|
||||
];
|
||||
Vendored
+48
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Acción|Acciones',
|
||||
'author' => 'Autor',
|
||||
'cancel' => 'Cancelar',
|
||||
'changes_applied' => 'Changes applied',
|
||||
'create' => 'Crear',
|
||||
'color' => 'Color',
|
||||
'delete' => 'Eliminar',
|
||||
'deleted' => 'Eliminada',
|
||||
'description' => 'Descripción',
|
||||
'edit' => 'Editar',
|
||||
'editing' => 'Estas editando :item',
|
||||
'generic_confirm' => 'Esta seguro?',
|
||||
'home_title' => 'Foro',
|
||||
'index' => 'Inicio',
|
||||
'invalid_selection' => 'La selección no válida',
|
||||
'last_updated' => 'Última actualización',
|
||||
'manage' => 'Manage',
|
||||
'mark_read' => 'Marcar como leído',
|
||||
'move' => 'Mover',
|
||||
'new' => 'Nuevo',
|
||||
'new_reply' => 'Nueva respuesta',
|
||||
'none' => 'Ninguno',
|
||||
'perma_delete' => 'Eliminar permanentemente',
|
||||
'permalink' => 'Permalink',
|
||||
'posted' => 'Publicado',
|
||||
'private' => 'Confidencial',
|
||||
'proceed' => 'Proceder',
|
||||
'quick_reply' => 'Respuesta rápida',
|
||||
'rename' => 'Rebautizar',
|
||||
'replies' => 'Respuestas',
|
||||
'reply' => 'Responder',
|
||||
'reply_added' => 'Respuesta agregáda',
|
||||
'replying_to' => 'Usted está respondiendo a :item',
|
||||
'response_to' => 'En respuesta a :item',
|
||||
'restore' => 'Restaurar',
|
||||
'save' => 'Save',
|
||||
'subject' => 'Asunto',
|
||||
'title' => 'Titulo',
|
||||
'unread' => 'Unread',
|
||||
'updated' => 'Updated',
|
||||
'weight' => 'Peso',
|
||||
'with_selection' => 'Con la selección…',
|
||||
|
||||
];
|
||||
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Acciones de Publicación',
|
||||
'created' => 'Publicación creado',
|
||||
'delete' => 'Delete post|Delete posts',
|
||||
'deleted' => 'Publicación eliminada|Publicaciones eliminada',
|
||||
'edit' => 'Editar publicación',
|
||||
'last' => 'Última publicación',
|
||||
'perma_deleted' => 'Publicación eliminará de forma permanente|Publicaciones eliminarán de forma permanente',
|
||||
'post' => 'Publicación|Publicaciones',
|
||||
'restore' => 'Restore post|Restore posts',
|
||||
'restored' => 'Publicación restauradas|Publicaciones restauradas',
|
||||
'select_all' => 'Select all posts',
|
||||
'updated' => 'Publicación actualizada|Publicaciones actualizada',
|
||||
'view' => 'Ver publicación',
|
||||
'your_post' => 'Su publicación',
|
||||
|
||||
];
|
||||
Vendored
+29
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Acciones Discusión',
|
||||
'created' => 'Discusión creada',
|
||||
'delete' => 'Eliminar esta discusión',
|
||||
'deleted' => 'Discusión eliminada|Discusiones eliminada',
|
||||
'lock' => 'Cerrar',
|
||||
'locked' => 'Cerrado',
|
||||
'marked_read' => 'Todas las discusiones han sido marcadas como leidas',
|
||||
'new_thread' => 'Nueva discusión',
|
||||
'new_updated' => 'Discusiones nuevas y actualizadas',
|
||||
'newest' => 'Discusiones nuevas',
|
||||
'none_found' => 'No se encontraron discusiones',
|
||||
'perma_delete' => 'Permanently delete thread|Permanently delete threads',
|
||||
'perma_deleted' => 'Discusión eliminará de forma permanente|Discusiones eliminarán de forma permanente',
|
||||
'post_the_first' => 'Crea la priméra!',
|
||||
'pin' => 'Sujetar',
|
||||
'pinned' => 'Pegado',
|
||||
'restored' => 'Discusión restaurado|Discusiones restaurado',
|
||||
'thread' => 'Discusión|Discusiones',
|
||||
'updated' => 'Discusion actualizada|Discusiones actualizada',
|
||||
'unlock' => 'Abrir cerradura',
|
||||
'unpin' => 'Desabrochar',
|
||||
'unread_updated' => 'Unread & updated threads',
|
||||
'view' => 'Ver tema',
|
||||
|
||||
];
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'category_threads_enabled' => 'La categoría debe tener hilos habilitados.',
|
||||
'category_has_no_threads' => 'La categoría no debe contener hilos.',
|
||||
'category_is_empty' => 'La categoría debe estar vacía.',
|
||||
|
||||
];
|
||||
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'access_controlled_by_private_ancestor' => 'The ancestor category :category is set as private and controls access to this category.',
|
||||
'actions' => 'Catégorie actions',
|
||||
'category' => 'Catégorie|Catégories',
|
||||
'confirm_nonempty_delete' => 'Yes, I want to permanently delete this category and everything inside it',
|
||||
'create' => 'Créer catégorie',
|
||||
'created' => 'Catégorie créé|Catégories créé',
|
||||
'deleted' => 'Catégorie supprimé|Catégories supprimés',
|
||||
'disable_threads' => 'Désactiver sujets',
|
||||
'enable_threads' => 'Activer sujets',
|
||||
'make_private' => 'Rendre privée',
|
||||
'make_public' => 'Rendre publique',
|
||||
'mark_read' => 'Marquer les sujets dans cette catégorie comme lu',
|
||||
'marked_read' => 'Les nouveaux sujets dans :category ont été marqués comme lus',
|
||||
'restored' => 'Catégorie restauré|Catégories restaurés',
|
||||
'subcategories' => 'Les sous-catégories',
|
||||
'threads_disabled' => 'La création de sujets a été désactivé dans cette catégorie',
|
||||
'updated' => 'Catégorie mis à jour|Catégories mis à jour',
|
||||
|
||||
];
|
||||
Vendored
+48
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Action|Actions',
|
||||
'author' => 'Auteur',
|
||||
'cancel' => 'Annuler',
|
||||
'changes_applied' => 'Changes applied',
|
||||
'create' => 'Créer',
|
||||
'color' => 'Color',
|
||||
'delete' => 'Supprimer',
|
||||
'deleted' => 'Supprimé',
|
||||
'description' => 'Description',
|
||||
'edit' => 'Modifier',
|
||||
'editing' => 'Vous éditez :item',
|
||||
'generic_confirm' => 'Êtes-vous sûr?',
|
||||
'home_title' => 'Forum',
|
||||
'index' => 'Index',
|
||||
'invalid_selection' => 'Sélection invalide',
|
||||
'last_updated' => 'Dernière mise à jour',
|
||||
'manage' => 'Manage',
|
||||
'mark_read' => 'Marquer comme lu',
|
||||
'move' => 'Déplacer',
|
||||
'new' => 'Nouveau',
|
||||
'new_reply' => 'Nouvelle réponse',
|
||||
'none' => 'Aucun',
|
||||
'perma_delete' => 'Supprimer définitivement',
|
||||
'permalink' => 'Permalink',
|
||||
'posted' => 'Posté',
|
||||
'proceed' => 'Procéder',
|
||||
'private' => 'Confidential',
|
||||
'quick_reply' => 'Réponse rapide',
|
||||
'rename' => 'Renommer',
|
||||
'replies' => 'Réponses',
|
||||
'reply' => 'Répondre',
|
||||
'reply_added' => 'Message ajouté',
|
||||
'replying_to' => 'En réponse à :item',
|
||||
'response_to' => 'En réponse à :item',
|
||||
'restore' => 'Restaurer',
|
||||
'save' => 'Save',
|
||||
'subject' => 'Sujet',
|
||||
'title' => 'Titre',
|
||||
'unread' => 'Unread',
|
||||
'updated' => 'Updated',
|
||||
'weight' => 'Position',
|
||||
'with_selection' => 'Avec la sélection…',
|
||||
|
||||
];
|
||||
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Actions sur les messages',
|
||||
'created' => 'Message créé',
|
||||
'delete' => 'Delete post|Delete posts',
|
||||
'deleted' => 'Message supprimé|Messages supprimés',
|
||||
'edit' => 'Modifier un message',
|
||||
'last' => 'Dernière message',
|
||||
'perma_deleted' => 'Message définitivement supprimé|Messages définitivement supprimés',
|
||||
'post' => 'Message|Messages',
|
||||
'restore' => 'Restore post|Restore posts',
|
||||
'restored' => 'Message restauré|Messages restaurés',
|
||||
'select_all' => 'Select all posts',
|
||||
'updated' => 'Message mis à jour|Messages mis à jour',
|
||||
'view' => 'Voir le message',
|
||||
'your_post' => 'Votre message',
|
||||
|
||||
];
|
||||
Vendored
+28
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Actions Sujet',
|
||||
'created' => 'Sujet créé',
|
||||
'delete' => 'Supprimer ce sujet',
|
||||
'deleted' => 'Sujet supprimé|Sujets supprimés',
|
||||
'lock' => 'Fermer',
|
||||
'locked' => 'Fermé',
|
||||
'marked_read' => 'Toutes les discussions ont été marqués comme lus',
|
||||
'new_thread' => 'Nouveau sujet',
|
||||
'new_updated' => 'Nouvelles et mises à jour les discussions',
|
||||
'newest' => 'Sujet récent',
|
||||
'none_found' => 'Aucun sujet trouvé',
|
||||
'perma_delete' => 'Permanently delete thread|Permanently delete threads',
|
||||
'perma_deleted' => 'Sujet définitivement supprimé|Sujets définitivement supprimés',
|
||||
'pin' => 'Épingler',
|
||||
'pinned' => 'Épinglé',
|
||||
'post_the_first' => 'Poster le premier message !',
|
||||
'restored' => 'Sujet restauré|Sujets restaurés',
|
||||
'thread' => 'Sujet|Sujets',
|
||||
'updated' => 'Sujet mis à jour|Sujets mis à jour',
|
||||
'unlock' => 'Ouvrir',
|
||||
'unpin' => 'Détacher',
|
||||
'view' => 'Voir le sujet',
|
||||
|
||||
];
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'category_threads_enabled' => 'La catégorie doit autoriser la création de nouvelles discussions.',
|
||||
'category_has_no_threads' => 'La catégorie ne doit pas contenir de discussions.',
|
||||
'category_is_empty' => 'La catégorie doit être vide.',
|
||||
|
||||
];
|
||||
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'access_controlled_by_private_ancestor' => 'Kategori terdahulu: kategori ditetapkan sebagai pribadi dan mengontrol akses ke kategori ini.',
|
||||
'actions' => 'Aksi pada Kategori',
|
||||
'category' => 'Kategori|Kategori',
|
||||
'confirm_nonempty_delete' => 'Ya, saya ingin menghapus kategori ini dan semuanya di dalamnya secara permanen',
|
||||
'create' => 'Buat Kategori',
|
||||
'created' => 'Kategori dibuat',
|
||||
'deleted' => 'Kategori dihapus|Kategori dihapus',
|
||||
'disable_threads' => 'Nonaktifkan Thread',
|
||||
'enable_threads' => 'Aktifkan Thread',
|
||||
'make_private' => 'Buat Pribadi',
|
||||
'make_public' => 'Buat Publik',
|
||||
'mark_read' => 'Tandai Thread di Kategori ini sebagai telah dibaca',
|
||||
'marked_read' => 'Thread baru/terbaru di :category telah ditandai sebagai telah dibaca',
|
||||
'restored' => 'Kategori dipulihkan|Kategori dipulihkan',
|
||||
'subcategories' => 'Sub Kategori',
|
||||
'threads_disabled' => 'Pembuatan thread baru di kategori ini telah dinonaktifkan',
|
||||
'updated' => 'Kategori diperbarui|Kategori diperbarui',
|
||||
|
||||
];
|
||||
Vendored
+48
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Aksi pada Kategori',
|
||||
'author' => 'Penulis',
|
||||
'cancel' => 'Batal',
|
||||
'changes_applied' => 'Perubahan telah diterapkan',
|
||||
'create' => 'Buat Kategori',
|
||||
'color' => 'Warna',
|
||||
'delete' => 'Hapus',
|
||||
'deleted' => 'Kategori dihapus|Kategori dihapus',
|
||||
'description' => 'Deskripsi',
|
||||
'edit' => 'Ubah',
|
||||
'editing' => 'Kamu telah mengubah :item',
|
||||
'generic_confirm' => 'Apakah kamu yakin?',
|
||||
'home_title' => 'Kategori',
|
||||
'index' => 'Indeks',
|
||||
'invalid_selection' => 'Pilihan tidak valid',
|
||||
'last_updated' => 'Terakhir diperbarui',
|
||||
'manage' => 'Kelola',
|
||||
'mark_read' => 'Tandai telah dibaca',
|
||||
'move' => 'Pindahkan',
|
||||
'new' => 'Baru',
|
||||
'new_reply' => 'Balasan baru',
|
||||
'none' => 'Tidak ada',
|
||||
'perma_delete' => 'Hapus secara permanen',
|
||||
'permalink' => 'Permalink',
|
||||
'posted' => 'Diposting',
|
||||
'private' => 'Pribadi',
|
||||
'proceed' => 'Lanjutkan',
|
||||
'quick_reply' => 'Balas cepat',
|
||||
'rename' => 'Ubah nama',
|
||||
'replies' => 'Balasan',
|
||||
'reply' => 'Balas',
|
||||
'reply_added' => 'Balasan ditambahkan',
|
||||
'replying_to' => 'Kamu menjawab :item',
|
||||
'response_to' => 'Balasan terhadap :item',
|
||||
'restore' => 'Pulihkan',
|
||||
'save' => 'Simpan',
|
||||
'subject' => 'Subjek',
|
||||
'title' => 'Judul',
|
||||
'unread' => 'Belum dibaca',
|
||||
'updated' => 'Diperbarui',
|
||||
'weight' => 'Bobot',
|
||||
'with_selection' => 'Dengan pilihan...',
|
||||
|
||||
];
|
||||
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Aksi pada Postingan',
|
||||
'created' => 'Postingan dibuat',
|
||||
'delete' => 'Hapus postingan|Hapus postingan',
|
||||
'deleted' => 'Postingan dihapus|Postingan dihapus',
|
||||
'edit' => 'Ubah postingan',
|
||||
'last' => 'Postingan terakhir',
|
||||
'perma_deleted' => 'Postingan dihapus secara permanen|Postingan dihapus secara permanen',
|
||||
'post' => 'Postingan|Postingan',
|
||||
'restore' => 'Pulihkan postingan|Pulihkan postingan',
|
||||
'restored' => 'Postingan dipulihkan|Postingan dipulihkan',
|
||||
'select_all' => 'Pilih semua postingan',
|
||||
'updated' => 'Postingan diperbarui|Postingan diperbarui',
|
||||
'view' => 'Lihat postingan',
|
||||
'your_post' => 'Postingan Anda',
|
||||
|
||||
];
|
||||
Vendored
+30
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Aksi pada Thread',
|
||||
'created' => 'Thread dibuat',
|
||||
'delete' => 'Hapus thread|Hapus thread',
|
||||
'deleted' => 'Thread dihapus|Thread dihapus',
|
||||
'lock' => 'Kunci thread|Kunci thread',
|
||||
'locked' => 'Thread dikunci|Thread dikunci',
|
||||
'marked_read' => 'Thread baru/terbaru di :category telah ditandai sebagai telah dibaca',
|
||||
'new_thread' => 'Thread baru',
|
||||
'newest' => 'Thread terbaru',
|
||||
'none_found' => 'Tidak ada thread yang ditemukan',
|
||||
'perma_delete' => 'Hapus secara permanen|Hapus secara permanen',
|
||||
'perma_deleted' => 'Thread dihapus secara permanen|Thread dihapus secara permanen',
|
||||
'pin' => 'Pin',
|
||||
'pinned' => 'Thread dipin',
|
||||
'post_the_first' => 'Buat thread pertama!',
|
||||
'recent' => 'Thread terbaru',
|
||||
'restored' => 'Thread dipulihkan|Thread dipulihkan',
|
||||
'select_all' => 'Pilih semua thread',
|
||||
'thread' => 'Thread|Thread',
|
||||
'updated' => 'Thread diperbarui|Thread diperbarui',
|
||||
'unlock' => 'Buka thread',
|
||||
'unpin' => 'Unpin',
|
||||
'unread_updated' => 'Unread & perbarui threads',
|
||||
'view' => 'Lihat thread',
|
||||
|
||||
];
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'category_threads_enabled' => 'Pembuatan thread baru di kategori ini telah diaktifkan',
|
||||
'category_has_no_threads' => 'Pembuatan thread baru di kategori ini telah dinonaktifkan',
|
||||
'category_is_empty' => 'Kategori ini kosong',
|
||||
|
||||
];
|
||||
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'access_controlled_by_private_ancestor' => 'The ancestor category :category is set as private and controls access to this category.',
|
||||
'actions' => 'Azioni categoria',
|
||||
'category' => 'Categoria|Categorie',
|
||||
'confirm_nonempty_delete' => 'Yes, I want to permanently delete this category and everything inside it',
|
||||
'create' => 'Crea categoria',
|
||||
'created' => 'Categoria creata',
|
||||
'deleted' => 'Categoria eliminata|Categorie eliminate',
|
||||
'disable_threads' => 'Disattiva discussioni',
|
||||
'enable_threads' => 'Abilita discussioni',
|
||||
'make_private' => 'Rendi privato',
|
||||
'make_public' => 'Rendi pubblico',
|
||||
'mark_read' => 'Segna le discussioni in questa categoria come lette',
|
||||
'marked_read' => 'Discussioni nuove/aggiornate in :category sono state contrassegnate come lette',
|
||||
'restored' => 'Categoria ripristinata|Categorie ripristinate',
|
||||
'subcategories' => 'Sotto-categorie',
|
||||
'threads_disabled' => 'La creazione di nuove discussioni è disabilitata in questa categoria',
|
||||
'updated' => 'Categoria aggiornata|Categorie aggiornate',
|
||||
|
||||
];
|
||||
Vendored
+48
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Azione|Azioni',
|
||||
'author' => 'Autore',
|
||||
'cancel' => 'Cancella',
|
||||
'changes_applied' => 'Changes applied',
|
||||
'create' => 'Crea',
|
||||
'color' => 'Color',
|
||||
'delete' => 'Elimina',
|
||||
'deleted' => 'Cancellato',
|
||||
'description' => 'Descrizione',
|
||||
'edit' => 'Modifica',
|
||||
'editing' => 'Stai moficando :item',
|
||||
'generic_confirm' => 'Sei sicuro?',
|
||||
'home_title' => 'Forum',
|
||||
'index' => 'Indice',
|
||||
'invalid_selection' => 'Selezione non valida',
|
||||
'last_updated' => 'Ultimo aggiornamento',
|
||||
'manage' => 'Manage',
|
||||
'mark_read' => 'Segna come letto',
|
||||
'move' => 'Trasferisci',
|
||||
'new' => 'Nuovo',
|
||||
'new_reply' => 'Nuova risposta',
|
||||
'none' => 'Nessuno',
|
||||
'perma_delete' => 'Elimina definitivamente',
|
||||
'permalink' => 'Permalink',
|
||||
'posted' => 'Postato',
|
||||
'private' => 'Confidenziale',
|
||||
'proceed' => 'Procedere',
|
||||
'quick_reply' => 'Risposta rapida',
|
||||
'rename' => 'Rinominare',
|
||||
'replies' => 'Risposte',
|
||||
'reply' => 'Rispondi',
|
||||
'reply_added' => 'Risposta aggiunta',
|
||||
'replying_to' => 'Stai rispondendo a :item',
|
||||
'response_to' => 'In risposta a :item',
|
||||
'restore' => 'Ripristina',
|
||||
'save' => 'Save',
|
||||
'subject' => 'Oggetto',
|
||||
'title' => 'Titolo',
|
||||
'unread' => 'Unread',
|
||||
'updated' => 'Updated',
|
||||
'weight' => 'Ordine',
|
||||
'with_selection' => 'Con la selezione…',
|
||||
|
||||
];
|
||||
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Azioni post',
|
||||
'created' => 'Post creato',
|
||||
'delete' => 'Delete post|Delete posts',
|
||||
'deleted' => 'Post eliminato|Post eliminati',
|
||||
'edit' => 'Modifica post',
|
||||
'last' => 'Ultimo post',
|
||||
'perma_deleted' => 'Post eliminati in modo permanente|Post eliminati definitivamente',
|
||||
'post' => 'Post|Post',
|
||||
'restore' => 'Restore post|Restore posts',
|
||||
'restored' => 'Post ripristinato|Post ripristinati',
|
||||
'select_all' => 'Select all posts',
|
||||
'updated' => 'Post aggiornato|Post aggiornati',
|
||||
'view' => 'Vedi post',
|
||||
'your_post' => 'Il tuo post',
|
||||
|
||||
];
|
||||
Vendored
+28
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Azioni discussione',
|
||||
'created' => 'Discussione creata',
|
||||
'delete' => 'Elimina questa discussione',
|
||||
'deleted' => 'Discussione eliminata|Discussioni eliminate',
|
||||
'lock' => 'Blocca',
|
||||
'locked' => 'Bloccata',
|
||||
'marked_read' => 'Tutte le discussioni sono marcate come lette',
|
||||
'new_thread' => 'Nuova discussione',
|
||||
'new_updated' => 'Discussioni nuove ed aggiornate',
|
||||
'newest' => 'Discussione più recente',
|
||||
'none_found' => 'Nessuna discussione trovata',
|
||||
'perma_delete' => 'Permanently delete thread|Permanently delete threads',
|
||||
'perma_deleted' => 'Discussione eliminata in modo permanente|Discussioni eliminate definitivamente',
|
||||
'pin' => 'Importante',
|
||||
'pinned' => 'Resa importante',
|
||||
'post_the_first' => 'Rispondi per primo!',
|
||||
'restored' => 'Discussione ripristinata|Discussioni ripristinate',
|
||||
'thread' => 'Discussione|Discussioni',
|
||||
'updated' => 'Discussione aggiornato|Discussioni aggiornate',
|
||||
'unlock' => 'Sblocca',
|
||||
'unpin' => 'Non importante',
|
||||
'view' => 'Vedi discussione',
|
||||
|
||||
];
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'category_threads_enabled' => 'La categoria deve avere discussioni abilitate.',
|
||||
'category_has_no_threads' => 'La categoria non deve contenere discussioni.',
|
||||
'category_is_empty' => 'La categoria deve essere vuota.',
|
||||
|
||||
];
|
||||
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'access_controlled_by_private_ancestor' => 'The ancestor category :category is set as private and controls access to this category.',
|
||||
'actions' => 'Categorie acties',
|
||||
'category' => 'Categorie|Categorieën',
|
||||
'confirm_nonempty_delete' => 'Ik bevestig dat ik hiermee permanent de categorie en alle gegevens die hier onder hangen verwijder',
|
||||
'create' => 'Categorie maken',
|
||||
'created' => 'Categorie aangemaakt',
|
||||
'deleted' => 'Categorie verwijderd|Categorieën verwijderd',
|
||||
'disable_threads' => 'Onderwerpen uitschakelen',
|
||||
'enable_threads' => 'Onderwerpen inschakelen',
|
||||
'make_private' => 'Maak privé',
|
||||
'make_public' => 'Maak publiekelijk',
|
||||
'mark_read' => 'Markeer de onderwerpen in deze categorie als gelezen',
|
||||
'marked_read' => 'Nieuwe/bijgewerkte onderwerpen in :category zijn als gelezen gemarkeerd',
|
||||
'restored' => 'Categorie hersteld|Categorieën hersteld',
|
||||
'subcategories' => 'Subcategorieën',
|
||||
'threads_disabled' => 'Aanmaken van onderwerpen in deze categorie is uitgeschakeld',
|
||||
'updated' => 'Categorie bijgewerkt|Categorieën bijgewerkt',
|
||||
|
||||
];
|
||||
Vendored
+48
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Actie|Acties',
|
||||
'author' => 'Auteur',
|
||||
'cancel' => 'Annuleer',
|
||||
'changes_applied' => 'Wijzigingen toegepast',
|
||||
'create' => 'Maak',
|
||||
'color' => 'Kleur',
|
||||
'delete' => 'Verwijder',
|
||||
'deleted' => 'Verwijderd',
|
||||
'description' => 'Omschrijving',
|
||||
'edit' => 'Wijzig',
|
||||
'editing' => 'Je wijzigd :item',
|
||||
'generic_confirm' => 'Weet je het zeker?',
|
||||
'home_title' => 'Forum',
|
||||
'index' => 'Index',
|
||||
'invalid_selection' => 'Ongeldige selectie',
|
||||
'last_updated' => 'Laatst gewijzigd',
|
||||
'manage' => 'Beheren',
|
||||
'mark_read' => 'Markeer als gelezen',
|
||||
'move' => 'Verplaats',
|
||||
'new' => 'Nieuw',
|
||||
'new_reply' => 'Nieuwe reactie',
|
||||
'none' => 'Geen',
|
||||
'perma_delete' => 'Permanent verwijderen',
|
||||
'permalink' => 'Permalink',
|
||||
'posted' => 'Geplaatst',
|
||||
'private' => 'Privé',
|
||||
'proceed' => 'Ga door',
|
||||
'quick_reply' => 'Snelle reactie',
|
||||
'rename' => 'Hernoem',
|
||||
'replies' => 'Reacties',
|
||||
'reply' => 'Reactie',
|
||||
'reply_added' => 'Reactie toegevoegd',
|
||||
'replying_to' => 'Je reageert op :item',
|
||||
'response_to' => 'Als reactie op :item',
|
||||
'restore' => 'Herstel',
|
||||
'save' => 'Opslaan',
|
||||
'subject' => 'Onderwerp',
|
||||
'title' => 'Titel',
|
||||
'unread' => 'Ongelezen',
|
||||
'updated' => 'Bijgewerkt',
|
||||
'weight' => 'Prioriteit',
|
||||
'with_selection' => 'Met selectie…',
|
||||
|
||||
];
|
||||
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Reactie acties',
|
||||
'created' => 'Reactie aangemaakt',
|
||||
'delete' => 'Verwijder reactie|Verwijder reacties',
|
||||
'deleted' => 'Reactie verwijderd|Reacties verwijderd',
|
||||
'edit' => 'Wijzig reactie',
|
||||
'last' => 'Laatste reactie',
|
||||
'perma_deleted' => 'Reactie permanent verwijderd|Reacties permanent verwijderd',
|
||||
'post' => 'Reactie|Reacties',
|
||||
'restore' => 'Reactie herstellen|Reacties herstellen',
|
||||
'restored' => 'Reactie hersteld|Reacties hersteld',
|
||||
'select_all' => 'Selecteer alle reacties',
|
||||
'updated' => 'Reactie bijgewerkt|Reacties bijgewerkt',
|
||||
'view' => 'Bekijk reactie',
|
||||
'your_post' => 'Jouw reactie',
|
||||
|
||||
];
|
||||
Vendored
+28
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Onderwerp acties',
|
||||
'created' => 'Onderwerp aangemaakt',
|
||||
'delete' => 'Verwijder dit onderwerp',
|
||||
'deleted' => 'Onderwerp verwijderd|Onderwerpen verwijderd',
|
||||
'lock' => 'Sluit',
|
||||
'locked' => 'Gesloten',
|
||||
'marked_read' => 'Alle onderwerpen zijn gemarkeerd als gelezen',
|
||||
'new_thread' => 'Nieuw onderwerp',
|
||||
'new_updated' => 'Nieuwe & bijgewerkte onderwerpen',
|
||||
'newest' => 'Nieuwste onderwerp',
|
||||
'none_found' => 'Geen onderwerpen gevonden',
|
||||
'perma_delete' => 'Onderwerp permanent verwijderen|Onderwerpen permanent verwijderen',
|
||||
'perma_deleted' => 'Onderwerp permanent verwijderd|Onderwerpen permanent verwijderd',
|
||||
'pin' => 'Vastpinnen',
|
||||
'pinned' => 'Vastgepind',
|
||||
'post_the_first' => 'Plaats de eerste!',
|
||||
'restored' => 'Onderwerp hersteld|Onderwerpen hersteld',
|
||||
'thread' => 'Onderwerp|Onderwerpen',
|
||||
'updated' => 'Onderwerp bijgewerkt|Onderwerpen bijgewerkt',
|
||||
'unlock' => 'Openen',
|
||||
'unpin' => 'Losmaken',
|
||||
'view' => 'Bekijk onderwerp',
|
||||
|
||||
];
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'category_threads_enabled' => 'De categorie moet onderwerpen ingeschakeld hebben.',
|
||||
'category_has_no_threads' => 'De categorie moet geen onderwerpen bevatten.',
|
||||
'category_is_empty' => 'De categorie moet leeg zijn.',
|
||||
|
||||
];
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'access_controlled_by_private_ancestor' => 'The ancestor category :category is set as private and controls access to this category.',
|
||||
'actions' => 'Ações de categoria',
|
||||
'category' => 'Categoria|Categorias',
|
||||
'confirm_nonempty_delete' => 'Yes, I want to permanently delete this category and everything inside it',
|
||||
'create' => 'Criar categoria',
|
||||
'created' => 'Categoria criada',
|
||||
'deleted' => 'Categoria deletada|Categorias deletadas',
|
||||
'disable_threads' => 'Desabilitar tópicos',
|
||||
'enable_threads' => 'Habilitar tópicos',
|
||||
'make_private' => 'Tornar privado',
|
||||
'make_public' => 'Tornar público',
|
||||
'mark_read' => 'Marcar como lido os tópicos dessa categoria',
|
||||
'marked_read' => 'Tópico novo/atualizado em :category foi marcado como lido',
|
||||
'restored' => 'Categoria restaurada|Categorias restauradas',
|
||||
'subcategories' => 'Subcategorias',
|
||||
'threads_disabled' => 'Criar novo tópico está desativado nessa categoria',
|
||||
'updated' => 'Categoria atualizada|Categorias atualizadas',
|
||||
|
||||
];
|
||||
Vendored
+48
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Ação|Ações',
|
||||
'author' => 'Autor',
|
||||
'cancel' => 'Cancelar',
|
||||
'changes_applied' => 'Changes applied',
|
||||
'create' => 'Criar',
|
||||
'color' => 'Color',
|
||||
'delete' => 'Deletar',
|
||||
'deleted' => 'Deletado',
|
||||
'description' => 'Descrição',
|
||||
'edit' => 'Editar',
|
||||
'editing' => 'Você está editando :item',
|
||||
'generic_confirm' => 'Você tem certeza?',
|
||||
'home_title' => 'Fórum',
|
||||
'index' => 'Index',
|
||||
'invalid_selection' => 'Seleção inválida',
|
||||
'last_updated' => 'Última atualização',
|
||||
'manage' => 'Manage',
|
||||
'mark_read' => 'Marcar como lido',
|
||||
'move' => 'Mover',
|
||||
'new' => 'Novo',
|
||||
'new_reply' => 'Nova resposta',
|
||||
'none' => 'Nenhum',
|
||||
'perma_delete' => 'Permanentemente deletado',
|
||||
'permalink' => 'Permalink',
|
||||
'posted' => 'Postado',
|
||||
'private' => 'Privado',
|
||||
'proceed' => 'Proceder',
|
||||
'quick_reply' => 'Resposta rápida',
|
||||
'rename' => 'Renomear',
|
||||
'replies' => 'Respostas',
|
||||
'reply' => 'Resposta',
|
||||
'reply_added' => 'Resposta adicionada',
|
||||
'replying_to' => 'Você está respondendo ao :item',
|
||||
'response_to' => 'Em resposta ao :item',
|
||||
'restore' => 'Restaurar',
|
||||
'save' => 'Save',
|
||||
'subject' => 'Assunto',
|
||||
'title' => 'Título',
|
||||
'unread' => 'Unread',
|
||||
'updated' => 'Updated',
|
||||
'weight' => 'Peso',
|
||||
'with_selection' => 'Com seleção…',
|
||||
|
||||
];
|
||||
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Ações da postagem',
|
||||
'created' => 'Postagem criada',
|
||||
'delete' => 'Delete post|Delete posts',
|
||||
'deleted' => 'Postagem deletada|Postagens deletadas',
|
||||
'edit' => 'Editar postagem',
|
||||
'last' => 'Última postagem',
|
||||
'perma_deleted' => 'Postagem permanentemente deletada|Postagens permanentementes deletadas',
|
||||
'post' => 'Postagem|Postagens',
|
||||
'restore' => 'Restore post|Restore posts',
|
||||
'restored' => 'Postagem restaurada|Postagens restauradas',
|
||||
'select_all' => 'Select all posts',
|
||||
'updated' => 'Postagem atualizada|Postagens atualizadas',
|
||||
'view' => 'Ver postagem',
|
||||
'your_post' => 'Sua postagem',
|
||||
|
||||
];
|
||||
Vendored
+28
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Ações do tópico',
|
||||
'created' => 'Tópico criado',
|
||||
'delete' => 'Deletar esse tópico',
|
||||
'deleted' => 'Tópico deletado|Tópicos deletados',
|
||||
'lock' => 'Travar',
|
||||
'locked' => 'Travado',
|
||||
'marked_read' => 'Todos tópicos foram marcados como lido',
|
||||
'new_thread' => 'Novo tópico',
|
||||
'new_updated' => 'Tópico novo e atualizado',
|
||||
'newest' => 'Novos tópicos',
|
||||
'none_found' => 'Nenhum tópico encontrado',
|
||||
'perma_delete' => 'Permanently delete thread|Permanently delete threads',
|
||||
'perma_deleted' => 'Tópico permanentemente deletado|Tópicos permanentementes deletados',
|
||||
'pin' => 'Destaque',
|
||||
'pinned' => 'Destacado',
|
||||
'post_the_first' => 'Seja o primeiro a postar!',
|
||||
'restored' => 'Tópico restaurado|Tópicos restaurados',
|
||||
'thread' => 'Tópico|Tópicos',
|
||||
'updated' => 'Tópico atualizado|Tópicos atualizados',
|
||||
'unlock' => 'Destravar',
|
||||
'unpin' => 'Remover do destaque',
|
||||
'view' => 'Ver tópico',
|
||||
|
||||
];
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'category_threads_enabled' => 'A categoria deve ter tópicos ativado.',
|
||||
'category_has_no_threads' => 'A categoria não deve conter tópicos.',
|
||||
'category_is_empty' => 'A categoria deve estar vazia.',
|
||||
|
||||
];
|
||||
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'access_controlled_by_private_ancestor' => 'The ancestor category :category is set as private and controls access to this category.',
|
||||
'actions' => 'Acțiuni categoria',
|
||||
'category' => 'Categorie|Categorii',
|
||||
'confirm_nonempty_delete' => 'Yes, I want to permanently delete this category and everything inside it',
|
||||
'create' => 'Creați categorie',
|
||||
'created' => 'Categorie creat',
|
||||
'deleted' => 'Categorie șters|Categorii șters',
|
||||
'disable_threads' => 'Discuții dezactiva',
|
||||
'enable_threads' => 'Activați discuții',
|
||||
'make_private' => 'Să facă publice',
|
||||
'make_public' => 'Face privat',
|
||||
'mark_read' => 'Discuții Mark din această categorie ca fiind citit',
|
||||
'marked_read' => 'Discuții noi / actualizate din :category au fost marcate ca citite',
|
||||
'restored' => 'Categorie restaurat|Categorii restaurat',
|
||||
'subcategories' => 'Subcategorii',
|
||||
'threads_disabled' => 'Crearea discuție nouă este dezactivată în această categorie',
|
||||
'updated' => 'Categorie actualizat|Categorii actualizat',
|
||||
|
||||
];
|
||||
Vendored
+48
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Acțiune|Acțiuni',
|
||||
'author' => 'Autor',
|
||||
'cancel' => 'Anulează',
|
||||
'changes_applied' => 'Changes applied',
|
||||
'create' => 'Crea',
|
||||
'color' => 'Color',
|
||||
'delete' => 'Șterge',
|
||||
'deleted' => 'Șters',
|
||||
'description' => 'Descriere',
|
||||
'edit' => 'Editează',
|
||||
'editing' => 'Editezi :item',
|
||||
'generic_confirm' => 'Ești sigur?',
|
||||
'home_title' => 'Forum',
|
||||
'index' => 'Index',
|
||||
'invalid_selection' => 'Selecție invalid',
|
||||
'last_updated' => 'Ultima actualizare',
|
||||
'manage' => 'Manage',
|
||||
'mark_read' => 'Marchează ca citit',
|
||||
'move' => 'Muta',
|
||||
'new' => 'Nou',
|
||||
'new_reply' => 'Răspuns nou',
|
||||
'none' => 'Nici unul',
|
||||
'perma_delete' => 'Șterge definitiv',
|
||||
'permalink' => 'Permalink',
|
||||
'posted' => 'Adăugat',
|
||||
'private' => 'Privat',
|
||||
'proceed' => 'Continua',
|
||||
'quick_reply' => 'Răspuns rapid',
|
||||
'rename' => 'Redenumiți',
|
||||
'replies' => 'Răspunsuri',
|
||||
'reply' => 'Răspunde',
|
||||
'reply_added' => 'Răspuns adăugat',
|
||||
'replying_to' => 'Te răspuns la :item',
|
||||
'response_to' => 'Ca raspuns la :item',
|
||||
'restore' => 'Restabili',
|
||||
'save' => 'Save',
|
||||
'subject' => 'Subiect',
|
||||
'title' => 'Titlu',
|
||||
'unread' => 'Unread',
|
||||
'updated' => 'Updated',
|
||||
'weight' => 'Greutate',
|
||||
'with_selection' => 'Cu selecție…',
|
||||
|
||||
];
|
||||
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Acțiuni mesaj',
|
||||
'created' => 'Mesajul creat',
|
||||
'delete' => 'Delete post|Delete posts',
|
||||
'deleted' => 'Mesaj șters|Mesaje șterse',
|
||||
'edit' => 'Editează mesaj',
|
||||
'last' => 'Ultimul mesaj',
|
||||
'perma_deleted' => 'Mesaj șters definitiv|Mesaje șters definitiv',
|
||||
'post' => 'Mesaj|Mesaje',
|
||||
'restore' => 'Restore post|Restore posts',
|
||||
'restored' => 'Mesajul restaurat|Mesaje restaurat',
|
||||
'select_all' => 'Select all posts',
|
||||
'updated' => 'Mesaj actualizat|Mesaje actualizat',
|
||||
'view' => 'Vezi mesajul',
|
||||
'your_post' => 'Mesajul tău',
|
||||
|
||||
];
|
||||
Vendored
+28
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Acțiuni de discuții',
|
||||
'created' => 'Discuție creată',
|
||||
'delete' => 'Șterge această discuție',
|
||||
'deleted' => 'Discuție ștearsă|Discuții eliminat',
|
||||
'lock' => 'Bloca',
|
||||
'locked' => 'Blocat',
|
||||
'marked_read' => 'Toate discuțiile au fost marcate ca citite',
|
||||
'new_thread' => 'Discuție nouă',
|
||||
'new_updated' => 'Discuții noi și actualizate',
|
||||
'newest' => 'Cea mai nouă discuție',
|
||||
'none_found' => 'Nicio discuție găsită',
|
||||
'perma_delete' => 'Permanently delete thread|Permanently delete threads',
|
||||
'perma_deleted' => 'Discuție șters definitiv|Discuții șters definitiv',
|
||||
'pin' => 'Fixa',
|
||||
'pinned' => 'Fixate',
|
||||
'post_the_first' => 'Începe prima discuție!',
|
||||
'restored' => 'Discuție restaurat|Discuții restaurat',
|
||||
'thread' => 'Discuție|Discuții',
|
||||
'updated' => 'Discuție actualizată|Discuții actualizat',
|
||||
'unlock' => 'Deschide',
|
||||
'unpin' => 'Dezlega',
|
||||
'view' => 'Vezi discuție',
|
||||
|
||||
];
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'category_threads_enabled' => 'Categoria trebuie să aibă fire activat.',
|
||||
'category_has_no_threads' => 'Categoria nu trebuie să conțină fire.',
|
||||
'category_is_empty' => 'Categoria trebuie să fie gol.',
|
||||
|
||||
];
|
||||
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'access_controlled_by_private_ancestor' => 'The ancestor category :category is set as private and controls access to this category.',
|
||||
'actions' => 'Категория действия',
|
||||
'category' => 'Категория',
|
||||
'confirm_nonempty_delete' => 'Yes, I want to permanently delete this category and everything inside it',
|
||||
'create' => 'Создать категорию',
|
||||
'created' => 'Категория создана',
|
||||
'deleted' => 'Категория удалена|Категории удалены',
|
||||
'disable_threads' => 'Отключить темы',
|
||||
'enable_threads' => 'Включить темы',
|
||||
'make_private' => 'Сделать приватным',
|
||||
'make_public' => 'Опубликовать',
|
||||
'mark_read' => 'Отметить как прочитанные',
|
||||
'marked_read' => 'Новые / Обновленные темы в :category отмечены как прочитанные',
|
||||
'restored' => 'Категория восстановлена|Категории восстановлены',
|
||||
'subcategories' => 'Подкатегории',
|
||||
'threads_disabled' => 'Создание Новых тем отключено в этой категории',
|
||||
'updated' => 'Категория обновлена|Категории обновлены',
|
||||
|
||||
];
|
||||
Vendored
+48
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'действия',
|
||||
'author' => 'Автор',
|
||||
'cancel' => 'Отмена',
|
||||
'changes_applied' => 'Changes applied',
|
||||
'create' => 'Создать',
|
||||
'color' => 'Color',
|
||||
'delete' => 'Удалить',
|
||||
'deleted' => 'Удаленный',
|
||||
'description' => 'Описание',
|
||||
'edit' => 'Редактировать',
|
||||
'editing' => 'Вы редактируете :item',
|
||||
'generic_confirm' => 'Вы уверены?',
|
||||
'home_title' => 'Форум',
|
||||
'index' => 'Главная',
|
||||
'invalid_selection' => 'Неверный выбор',
|
||||
'last_updated' => 'Последнее обновление',
|
||||
'manage' => 'Manage',
|
||||
'mark_read' => 'Отметить как прочитаное',
|
||||
'move' => 'Перенести',
|
||||
'new' => 'Новая',
|
||||
'new_reply' => 'Новый ответ',
|
||||
'none' => 'Ни одной',
|
||||
'perma_delete' => 'Удалить навсегда',
|
||||
'permalink' => 'Permalink',
|
||||
'posted' => 'Опубликовано',
|
||||
'private' => 'Приватная',
|
||||
'proceed' => 'Продолжить',
|
||||
'quick_reply' => 'Быстрый ответ',
|
||||
'rename' => 'Переименовать',
|
||||
'replies' => 'Ответы',
|
||||
'reply' => 'Ответить',
|
||||
'reply_added' => 'Ответ добавлен',
|
||||
'replying_to' => 'Вы публикуете пост в :item',
|
||||
'response_to' => 'в ответ на :item',
|
||||
'restore' => 'восстановить',
|
||||
'save' => 'Save',
|
||||
'subject' => 'Тема',
|
||||
'title' => 'Заголовок',
|
||||
'unread' => 'Unread',
|
||||
'updated' => 'Updated',
|
||||
'weight' => 'Вес',
|
||||
'with_selection' => 'С выбранными…',
|
||||
|
||||
];
|
||||
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Действия',
|
||||
'created' => 'Сообщение создано',
|
||||
'delete' => 'Delete post|Delete posts',
|
||||
'deleted' => 'Сообщение удалено|cообщения удалены',
|
||||
'edit' => 'Редактировать сообщение',
|
||||
'last' => 'Последнее сообщение',
|
||||
'perma_deleted' => 'Сообщение удалены навсегда|Сообщения удалены навсегда',
|
||||
'post' => 'Сообщение|Сообщения',
|
||||
'restore' => 'Restore post|Restore posts',
|
||||
'restored' => 'Сообщение восстановлено|Сообщения восстановлены',
|
||||
'select_all' => 'Select all posts',
|
||||
'updated' => 'Сообщение обновлено|Сообщения обновлены',
|
||||
'view' => 'Посмотреть сообщение',
|
||||
'your_post' => 'Ваше сообщение',
|
||||
|
||||
];
|
||||
Vendored
+28
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Действия',
|
||||
'created' => 'Тема создана',
|
||||
'delete' => 'Удалить тему',
|
||||
'deleted' => 'Тема удалена|Темы удалены',
|
||||
'lock' => 'Закрыть',
|
||||
'locked' => 'Закрыто',
|
||||
'marked_read' => 'Все ветки были отмечены как прочитаные',
|
||||
'new_thread' => 'Новая ветка',
|
||||
'new_updated' => 'Новые и обновленные ветки',
|
||||
'newest' => 'Новейшая ветка',
|
||||
'none_found' => 'Нет веток',
|
||||
'perma_delete' => 'Permanently delete thread|Permanently delete threads',
|
||||
'perma_deleted' => 'Тема удалена навсегда|Темы удалены навсегда',
|
||||
'pin' => 'Закрепить',
|
||||
'pinned' => 'Закреплено',
|
||||
'post_the_first' => 'Напишите первым!',
|
||||
'restored' => 'Тема восстановлена|Темы восстановлены',
|
||||
'thread' => 'Тема|темы',
|
||||
'updated' => 'Тема обновлена|Темы обновлены',
|
||||
'unlock' => 'Открыть',
|
||||
'unpin' => 'открепить',
|
||||
'view' => 'Просмотреть ветку',
|
||||
|
||||
];
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'category_threads_enabled' => 'Указанная категория должна иметь активные темы.',
|
||||
'category_has_no_threads' => 'Категория не должна содержать тем.',
|
||||
'category_is_empty' => 'Категория должна быть пустой.',
|
||||
|
||||
];
|
||||
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'access_controlled_by_private_ancestor' => 'The ancestor category :category is set as private and controls access to this category.',
|
||||
'actions' => 'Category actions',
|
||||
'category' => 'Kategorija|Kategorije',
|
||||
'confirm_nonempty_delete' => 'Yes, I want to permanently delete this category and everything inside it',
|
||||
'create' => 'Napravi kategoriju',
|
||||
'created' => 'Kategorija napravljena',
|
||||
'deleted' => 'Kategorija izbrisana|Kategorije izbrisane',
|
||||
'disable_threads' => 'Onemogući teme',
|
||||
'enable_threads' => 'Omogući teme',
|
||||
'make_private' => 'Učini privatnim',
|
||||
'make_public' => 'Učini javnim',
|
||||
'mark_read' => 'Obeleži teme u ovoj kategoriji kao pročitane',
|
||||
'marked_read' => 'Nove/izmenjene teme u :category su obeležene kao pročitane',
|
||||
'restored' => 'Kategorija vraćena|Kategorije vraćene',
|
||||
'subcategories' => 'Podkategorije',
|
||||
'threads_disabled' => 'Kreiranje novih tema je onemogućeno u ovoj kategoriji',
|
||||
'updated' => 'Kategorija izmenjena|Kategorije izmenjene',
|
||||
|
||||
];
|
||||
Vendored
+48
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Akcija|Akcije',
|
||||
'author' => 'Autor',
|
||||
'cancel' => 'Poništi',
|
||||
'changes_applied' => 'Changes applied',
|
||||
'create' => 'Kreiraj',
|
||||
'color' => 'Color',
|
||||
'delete' => 'Izbriši',
|
||||
'deleted' => 'Izbrisano',
|
||||
'description' => 'Opis',
|
||||
'edit' => 'Izmeni',
|
||||
'editing' => 'Menjate :item',
|
||||
'generic_confirm' => 'Da li ste sigurni?',
|
||||
'home_title' => 'Forum',
|
||||
'index' => 'Lista',
|
||||
'invalid_selection' => 'Loš izbor',
|
||||
'last_updated' => 'Poslednje izmenjeno',
|
||||
'manage' => 'Manage',
|
||||
'mark_read' => 'Obeleži kao pročitano',
|
||||
'move' => 'Premesti',
|
||||
'new' => 'Novo',
|
||||
'new_reply' => 'Nov odgovor',
|
||||
'none' => 'Ništa',
|
||||
'perma_delete' => 'Trajno izbriši',
|
||||
'permalink' => 'Permalink',
|
||||
'posted' => 'Objavljeno',
|
||||
'private' => 'Privatno',
|
||||
'proceed' => 'Nastavi',
|
||||
'quick_reply' => 'Brz odgovor',
|
||||
'rename' => 'Promeni ime',
|
||||
'replies' => 'Odgovori',
|
||||
'reply' => 'Odgovori',
|
||||
'reply_added' => 'Odgovor dodat',
|
||||
'replying_to' => 'Odgovarate na :item',
|
||||
'response_to' => 'Odgovor na :item',
|
||||
'restore' => 'Povrati',
|
||||
'save' => 'Save',
|
||||
'subject' => 'Tema',
|
||||
'title' => 'Naslov',
|
||||
'unread' => 'Unread',
|
||||
'updated' => 'Updated',
|
||||
'weight' => 'Značaj',
|
||||
'with_selection' => 'Sa izabranim…',
|
||||
|
||||
];
|
||||
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Akcije nad objavom',
|
||||
'created' => 'Objava kreirana',
|
||||
'delete' => 'Delete post|Delete posts',
|
||||
'deleted' => 'Objava izbrisana|Objave izbrisane',
|
||||
'edit' => 'Izmeni objavu',
|
||||
'last' => 'Poslednja objava',
|
||||
'perma_deleted' => 'Objava trajno izbrisana|Objave trajno izbrisane',
|
||||
'post' => 'Objava|Objave',
|
||||
'restore' => 'Restore post|Restore posts',
|
||||
'restored' => 'Objava vraćena|Objave vraćene',
|
||||
'select_all' => 'Select all posts',
|
||||
'updated' => 'Objava izmenjena|Objave izmenjene',
|
||||
'view' => 'Vidi objavu',
|
||||
'your_post' => 'Vaša objava',
|
||||
|
||||
];
|
||||
Vendored
+28
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Akcije nad temom',
|
||||
'created' => 'Tema kreirana',
|
||||
'delete' => 'Izbriši ovu temu',
|
||||
'deleted' => 'Tema izbrisana|Teme izbrisane',
|
||||
'lock' => 'Zaključaj',
|
||||
'locked' => 'Zaključano',
|
||||
'marked_read' => 'Sve teme su označene kao pročitane',
|
||||
'new_thread' => 'Nova tema',
|
||||
'new_updated' => 'Nove i izmenjene teme',
|
||||
'newest' => 'Najnovija tema',
|
||||
'none_found' => 'Teme nisu nadđene',
|
||||
'perma_delete' => 'Permanently delete thread|Permanently delete threads',
|
||||
'perma_deleted' => 'Tema trajno izbrisana|Teme trajno izbrisane',
|
||||
'pin' => 'Zakači',
|
||||
'pinned' => 'Zakačeno',
|
||||
'post_the_first' => 'Objavi prvu!',
|
||||
'restored' => 'Tema povraćena|Teme povraćene',
|
||||
'thread' => 'Tema|Teme',
|
||||
'updated' => 'Tema izmenjena|Teme izmenjene',
|
||||
'unlock' => 'Otključaj',
|
||||
'unpin' => 'Otkači',
|
||||
'view' => 'Vidi temu',
|
||||
|
||||
];
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'category_threads_enabled' => 'U kategoriji moraju biti omogućene teme.',
|
||||
'category_has_no_threads' => 'Kategorija ne sme da ima teme.',
|
||||
'category_is_empty' => 'Kategorija mora biti prazna.',
|
||||
|
||||
];
|
||||
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'access_controlled_by_private_ancestor' => 'The ancestor category :category is set as private and controls access to this category.',
|
||||
'actions' => 'Kategori åtgärder',
|
||||
'category' => 'Kategori',
|
||||
'confirm_nonempty_delete' => 'Yes, I want to permanently delete this category and everything inside it',
|
||||
'create' => 'Skapa kategori',
|
||||
'created' => 'Kategori skapad',
|
||||
'deleted' => 'Kategori utgår|Kategorier utgår',
|
||||
'disable_threads' => 'Inaktivera trådar',
|
||||
'enable_threads' => 'Aktivera trådar',
|
||||
'make_private' => 'Gör privat',
|
||||
'make_public' => 'Gör ett allmänt',
|
||||
'mark_read' => 'Markera trådar i denna kategori som läst',
|
||||
'marked_read' => 'Nya / uppdaterade trådar i :category har markerats som läst',
|
||||
'restored' => 'Kategori restaurerade|Kategorier restaurerade',
|
||||
'subcategories' => 'Underkategorier',
|
||||
'threads_disabled' => 'Ny tråd skapande är inaktiverad i denna kategori',
|
||||
'updated' => 'Kategori uppdaterad|Kategorier uppdaterade',
|
||||
|
||||
];
|
||||
Vendored
+48
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Åtgärd|Åtgärder',
|
||||
'author' => 'Författare',
|
||||
'cancel' => 'Avbryt',
|
||||
'changes_applied' => 'Changes applied',
|
||||
'create' => 'Skapa',
|
||||
'color' => 'Color',
|
||||
'delete' => 'Radera',
|
||||
'deleted' => 'Utgår',
|
||||
'description' => 'Beskrivning',
|
||||
'edit' => 'Ändra',
|
||||
'editing' => 'Du redigerar :item',
|
||||
'generic_confirm' => 'Är du säker?',
|
||||
'home_title' => 'Forum',
|
||||
'index' => 'Index',
|
||||
'invalid_selection' => 'Ogiltigt val',
|
||||
'last_updated' => 'Senast uppdaterad',
|
||||
'manage' => 'Manage',
|
||||
'mark_read' => 'Markera som läst',
|
||||
'move' => 'Flytta',
|
||||
'new' => 'Ny',
|
||||
'new_reply' => 'Nytt svar',
|
||||
'none' => 'Inget',
|
||||
'perma_delete' => 'Radera permanent',
|
||||
'permalink' => 'Permalink',
|
||||
'posted' => 'Publicerad',
|
||||
'private' => 'Privat',
|
||||
'proceed' => 'Fortsätt',
|
||||
'quick_reply' => 'Snabbsvar',
|
||||
'rename' => 'Byt namn',
|
||||
'replies' => 'Svar',
|
||||
'reply' => 'Svara',
|
||||
'reply_added' => 'Svar sparat',
|
||||
'replying_to' => 'Du svarar på :item',
|
||||
'response_to' => 'Som svar på :item',
|
||||
'restore' => 'Restore',
|
||||
'save' => 'Save',
|
||||
'subject' => 'Ämne',
|
||||
'title' => 'Titel',
|
||||
'unread' => 'Unread',
|
||||
'updated' => 'Updated',
|
||||
'weight' => 'Vikt',
|
||||
'with_selection' => 'Med val…',
|
||||
|
||||
];
|
||||
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Inlägg åtgärder',
|
||||
'created' => 'Inlägg som skapas',
|
||||
'delete' => 'Delete post|Delete posts',
|
||||
'deleted' => 'Inlägg raderad|Inlägg raderad',
|
||||
'edit' => 'Redigera inlägg',
|
||||
'last' => 'Senaste inlägg',
|
||||
'perma_deleted' => 'Inlägg tas bort permanent|Inlägg tas bort permanent',
|
||||
'post' => 'Inlägg|Inlägg',
|
||||
'restore' => 'Restore post|Restore posts',
|
||||
'restored' => 'Inlägg restaurerade|Inlägg restaurerade',
|
||||
'select_all' => 'Select all posts',
|
||||
'updated' => 'Inlägg uppdaterat|Inlägg uppdaterat',
|
||||
'view' => 'Visa inlägg',
|
||||
'your_post' => 'Dina inlägg',
|
||||
|
||||
];
|
||||
Vendored
+28
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Tråd åtgärder',
|
||||
'created' => 'Tråd skapad',
|
||||
'delete' => 'Radera den här tråden',
|
||||
'deleted' => 'Tråd utgår|Trådar utgår',
|
||||
'lock' => 'Lås',
|
||||
'locked' => 'Låst',
|
||||
'marked_read' => 'Alla trådar har markerats som lästa',
|
||||
'new_thread' => 'Ny tråd',
|
||||
'new_updated' => 'Nya & uppdaterade trådar',
|
||||
'newest' => 'Senaste tråden',
|
||||
'none_found' => 'Inga trådar hittades',
|
||||
'perma_delete' => 'Permanently delete thread|Permanently delete threads',
|
||||
'perma_deleted' => 'Tråd bort permanent|Ämnen bort permanent',
|
||||
'pin' => 'Pin',
|
||||
'pinned' => 'Pinnad',
|
||||
'post_the_first' => 'Skapa den första!',
|
||||
'restored' => 'Gäng restaurerade|Trådar restaurerade',
|
||||
'thread' => 'Tråd|Trådar',
|
||||
'updated' => 'Tråd uppdaterad|Trådar uppdaterade',
|
||||
'unlock' => 'Lås upp',
|
||||
'unpin' => 'Avpinna',
|
||||
'view' => 'Visa tråd',
|
||||
|
||||
];
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'category_threads_enabled' => 'Kategorin måste ha trådar aktiverade.',
|
||||
'category_has_no_threads' => 'Kategorin får inte innehålla ämnen.',
|
||||
'category_is_empty' => 'Kategorin måste vara tom.',
|
||||
|
||||
];
|
||||
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'access_controlled_by_private_ancestor' => 'The ancestor category :category is set as private and controls access to this category.',
|
||||
'actions' => 'จัดการหมวดหมู่',
|
||||
'category' => 'หมวดหมู่|หมวดหมู่',
|
||||
'confirm_nonempty_delete' => 'Yes, I want to permanently delete this category and everything inside it',
|
||||
'create' => 'เพิ่มหมวดหมู่',
|
||||
'created' => 'เพิ่มหมวดหมู่แล้ว',
|
||||
'deleted' => 'ลบหมวดหมู่แล้ว|ลบหมวดหมู่แล้ว',
|
||||
'disable_threads' => 'ปิดการเพิ่มหัวข้อใหม่',
|
||||
'enable_threads' => 'เปิดการเพิ่มหัวข้อใหม่',
|
||||
'make_private' => 'ตั้งค่าเป็นส่วนตัว',
|
||||
'make_public' => 'ตั้งค่าเป็นสาธารณะ',
|
||||
'mark_read' => 'ทำเครื่องหมายว่าอ่านแล้ว',
|
||||
'marked_read' => 'หัวข้อใน:categoryถูกบันทึกว่าอ่านแล้ว',
|
||||
'restored' => 'หมวดหมู่ถูกกู้คืนแล้ว|หมวดหมู่ถูกกู้คืนแล้ว',
|
||||
'subcategories' => 'หมวดหมู่ย่อย',
|
||||
'threads_disabled' => 'การเริ่มหัวข้อใหม่ถูกปิดการใช้งานในหมวดหมู่นี้',
|
||||
'updated' => 'อัพเดทหมวดหมู่แล้ว|อัพเดทหมวดหมู่แล้ว',
|
||||
|
||||
];
|
||||
Vendored
+48
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'จัดการ|จัดการ',
|
||||
'author' => 'ผู้เขียน',
|
||||
'cancel' => 'ยกเลิก',
|
||||
'changes_applied' => 'Changes applied',
|
||||
'create' => 'สร้าง',
|
||||
'color' => 'Color',
|
||||
'delete' => 'ลบ',
|
||||
'deleted' => 'ลบแล้ว',
|
||||
'description' => 'รายละเอียด',
|
||||
'edit' => 'แก้ไข',
|
||||
'editing' => 'คุณกำลังแก้ไข :item',
|
||||
'generic_confirm' => 'คุณแน่ใจหรือ?',
|
||||
'home_title' => 'ฟอรั่ม',
|
||||
'index' => 'หน้าหลัก',
|
||||
'invalid_selection' => 'การเลือกไม่ถูกต้อง',
|
||||
'last_updated' => 'แก้ไขล่าสุด',
|
||||
'manage' => 'Manage',
|
||||
'mark_read' => 'ทำเครื่องหมายว่าอ่านแล้ว',
|
||||
'move' => 'ย้าย',
|
||||
'new' => 'ใหม่',
|
||||
'new_reply' => 'ตอบกระทู้',
|
||||
'none' => 'ไม่ระบุ',
|
||||
'perma_delete' => 'ลบถาวร',
|
||||
'permalink' => 'Permalink',
|
||||
'posted' => 'โพสต์',
|
||||
'private' => 'ส่วนตัว',
|
||||
'proceed' => 'กำลังดำเนินการ',
|
||||
'quick_reply' => 'ตอบด่วน',
|
||||
'rename' => 'แก้ไขชื่อ',
|
||||
'replies' => 'ตอบกลับ',
|
||||
'reply' => 'ตอบกลับ',
|
||||
'reply_added' => 'ตอบกระทู้แล้ว',
|
||||
'replying_to' => 'คุณกำลังตอบกระทู้ :item',
|
||||
'response_to' => ':item กำลังตอบสนอง',
|
||||
'restore' => 'กู้คืน',
|
||||
'save' => 'Save',
|
||||
'subject' => 'เรื่อง',
|
||||
'title' => 'หัวข้อ',
|
||||
'unread' => 'Unread',
|
||||
'updated' => 'Updated',
|
||||
'weight' => 'น้ำหนัก',
|
||||
'with_selection' => 'เลือกด้วย ...',
|
||||
|
||||
];
|
||||
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'จัดการโพสต์',
|
||||
'created' => 'เพิ่มโพสต์แล้ว',
|
||||
'delete' => 'Delete post|Delete posts',
|
||||
'deleted' => 'โพสต์ถูกลบแล้ว|โพสต์ถูกลบแล้ว',
|
||||
'edit' => 'แก้ไขโพสต์',
|
||||
'last' => 'แก้ไขโพสต์ล่าสุด',
|
||||
'perma_deleted' => 'ลบโพสต์ถาวร|ลบโพสต์ถาวร',
|
||||
'post' => 'โพสต์|โพสต์',
|
||||
'restore' => 'Restore post|Restore posts',
|
||||
'restored' => 'กู้คืนโพสต์|กู้คืนโพสต์',
|
||||
'select_all' => 'Select all posts',
|
||||
'updated' => 'โพสต์ถูกแก้ไขแล้ว|โพสต์ถูกแก้ไขแล้ว',
|
||||
'view' => 'ดูโพสต์',
|
||||
'your_post' => 'โพสต์ของคุณ',
|
||||
|
||||
];
|
||||
Vendored
+28
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'จัดการหัวข้อใหม่',
|
||||
'created' => 'เพิ่มหัวข้อใหม่แล้ว',
|
||||
'delete' => 'ลบหัวข้อนี้',
|
||||
'deleted' => 'หัวข้อถูกลบแล้ว|หัวข้อถูกลบแล้ว',
|
||||
'lock' => 'ล็อค',
|
||||
'locked' => 'ล็อค',
|
||||
'marked_read' => 'หัวข้อทั้งหมดถูกทำเครื่องหมายว่าอ่านแล้ว',
|
||||
'new_thread' => 'หัวข้อใหม่',
|
||||
'new_updated' => 'เพิ่ม และบันทึกหัวข้อใหม่แล้ว',
|
||||
'newest' => 'หัวข้อใหม่สุด',
|
||||
'none_found' => 'ไม่มีหัวข้อที่กำลังค้นหา',
|
||||
'perma_delete' => 'Permanently delete thread|Permanently delete threads',
|
||||
'perma_deleted' => 'หัวข้อจะถูกลบถาวร|หัวข้อจะถูกลบถาวร',
|
||||
'pin' => 'ปักหมุด',
|
||||
'pinned' => 'ปักหมุด',
|
||||
'post_the_first' => 'โพสต์ครั้งแรก!',
|
||||
'restored' => 'หัวข้อถูกกู้คืนแล้ว|หัวข้อถูกกู้คืนแล้ว',
|
||||
'thread' => 'หัวข้อ|หัวข้อ',
|
||||
'updated' => 'หัวข้อถูกอัพเดทแล้ว|หัวข้อถูกอัพเดทแล้ว',
|
||||
'unlock' => 'ปลดล็อค',
|
||||
'unpin' => 'เอาปักหมุดออก',
|
||||
'view' => 'ดูหัวข้อ',
|
||||
|
||||
];
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'category_threads_enabled' => 'ต้องเปิดการเพิ่มหัวข้อใหม่ในหมวดหมู่นี้ก่อน',
|
||||
'category_has_no_threads' => 'ต้องไม่มีหัวข้อในหมวดหมู่นี้ก่อน',
|
||||
'category_is_empty' => 'หมวดหมู่นี้ต้องไม่มีข้อมูล',
|
||||
|
||||
];
|
||||
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'access_controlled_by_private_ancestor' => 'The ancestor category :category is set as private and controls access to this category.',
|
||||
'actions' => 'Kategori ayarları',
|
||||
'category' => 'Kategori|Kategoriler',
|
||||
'confirm_nonempty_delete' => 'Yes, I want to permanently delete this category and everything inside it',
|
||||
'create' => 'Kategori Oluştur',
|
||||
'created' => 'Kategori oluşturuldu',
|
||||
'deleted' => 'Kategori silindi|Kategoriler Silindi',
|
||||
'disable_threads' => 'Konuları kapat',
|
||||
'enable_threads' => 'Konuları aktif et',
|
||||
'make_private' => 'Özel olarak işaretle',
|
||||
'make_public' => 'Herkese açık olarak işaretle',
|
||||
'mark_read' => 'Bu kategorideki konuları okundu olarak işaretle',
|
||||
'marked_read' => 'Yeni/Güncellenen şu :category deki konuları okundu olarak işaretlendi',
|
||||
'restored' => 'Kategori geri alındı|Kategoriler geri alındı',
|
||||
'subcategories' => 'Alt Kategoriler',
|
||||
'threads_disabled' => 'Bu kategori kilitli olduğundan buraya konu açamazsınız.',
|
||||
'updated' => 'Kategori güncellendi|Kategoriler güncelendi',
|
||||
|
||||
];
|
||||
Vendored
+48
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Ayar|Ayarlar',
|
||||
'author' => 'Yazar',
|
||||
'cancel' => 'İptal',
|
||||
'changes_applied' => 'Changes applied',
|
||||
'create' => 'Oluştur',
|
||||
'color' => 'Color',
|
||||
'delete' => 'Sil',
|
||||
'deleted' => 'Silindi',
|
||||
'description' => 'Açıklama',
|
||||
'edit' => 'Düzenle',
|
||||
'editing' => 'Şunu düzenliyorsunuz :item',
|
||||
'generic_confirm' => 'Emin misiniz?',
|
||||
'home_title' => 'Forum',
|
||||
'index' => 'Anasayfa',
|
||||
'invalid_selection' => 'Hatalı seçim',
|
||||
'last_updated' => 'Son güncelleme',
|
||||
'manage' => 'Manage',
|
||||
'mark_read' => 'Okundu olarak işaretle',
|
||||
'move' => 'Taşı',
|
||||
'new' => 'Yeni',
|
||||
'new_reply' => 'Yeni cevap',
|
||||
'none' => 'Hiçbiri',
|
||||
'perma_delete' => 'Kalıcı olarak sil',
|
||||
'permalink' => 'Permalink',
|
||||
'posted' => 'Gönderildi',
|
||||
'private' => 'Gizli',
|
||||
'proceed' => 'Devam',
|
||||
'quick_reply' => 'Hızlı cevap',
|
||||
'rename' => 'Yeniden isimlendir',
|
||||
'replies' => 'Cevaplar',
|
||||
'reply' => 'Cevap',
|
||||
'reply_added' => 'Cevap gönderildi',
|
||||
'replying_to' => 'Şunu cevaplıyorsunuz :item',
|
||||
'response_to' => 'Cevap olarak :item',
|
||||
'restore' => 'Geri al',
|
||||
'save' => 'Save',
|
||||
'subject' => 'Konu',
|
||||
'title' => 'Başlık',
|
||||
'unread' => 'Unread',
|
||||
'updated' => 'Updated',
|
||||
'weight' => 'Adet',
|
||||
'with_selection' => 'Seçim ile…',
|
||||
|
||||
];
|
||||
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Mesaj ayarları',
|
||||
'created' => 'Mesaj gönderildi',
|
||||
'delete' => 'Delete post|Delete posts',
|
||||
'deleted' => 'Mesaj silindi|Mesajlar silindi',
|
||||
'edit' => 'Mesaj düzenle',
|
||||
'last' => 'Son mesaj',
|
||||
'perma_deleted' => 'Mesaj kalıcı silindi|Mesajlar kalıncı olarak silindi',
|
||||
'post' => 'Mesaj|Mesajlar',
|
||||
'restore' => 'Restore post|Restore posts',
|
||||
'restored' => 'Mesaj geri alındı|Mesajlar geri alındı',
|
||||
'select_all' => 'Select all posts',
|
||||
'updated' => 'Mesaj güncellendi|Mesajlar güncellendi',
|
||||
'view' => 'Mesajı görüntüle',
|
||||
'your_post' => 'Sizin mesajınız',
|
||||
|
||||
];
|
||||
Vendored
+28
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => 'Konu ayarları',
|
||||
'created' => 'Konu oluşturuldu',
|
||||
'delete' => 'Bu konuyu silindi',
|
||||
'deleted' => 'Konu silindi|Konular silindi',
|
||||
'lock' => 'Kilitle',
|
||||
'locked' => 'Kitlendi',
|
||||
'marked_read' => 'Tüm konular okundu olarak işaretlendi',
|
||||
'new_thread' => 'Yeni konu',
|
||||
'new_updated' => 'Yeni & güncellenen konular',
|
||||
'newest' => 'Son Konular',
|
||||
'none_found' => 'Konu bulunamadı',
|
||||
'perma_delete' => 'Permanently delete thread|Permanently delete threads',
|
||||
'perma_deleted' => 'Konu kalıcı olarak silindi|Konular kalıcı olarak silindi',
|
||||
'pin' => 'Sabitle',
|
||||
'pinned' => 'Sabitlendi',
|
||||
'post_the_first' => 'İlk mesaj!',
|
||||
'restored' => 'Konu geri alındı|Konular geri alındı',
|
||||
'thread' => 'Konu|Konular',
|
||||
'updated' => 'Konu güncellendi|Konular güncellendi',
|
||||
'unlock' => 'Kilidi aç',
|
||||
'unpin' => 'Sabitlikten Kaldır',
|
||||
'view' => 'Konuyu görüntüle',
|
||||
|
||||
];
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'category_threads_enabled' => 'Kategori etkin Konuları olması gerekir.',
|
||||
'category_has_no_threads' => 'Kategori konuları içermemelidir.',
|
||||
'category_is_empty' => 'Kategori boş olmalıdır.',
|
||||
|
||||
];
|
||||
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'access_controlled_by_private_ancestor' => '祖先分类 :category 设置为私有并控制对此类别的访问.',
|
||||
'actions' => '分类操作',
|
||||
'category' => '分类|分类',
|
||||
'confirm_nonempty_delete' => '是的,我想永久删除此分类及其中的所有内容',
|
||||
'create' => '创建分类',
|
||||
'created' => '分类已创建',
|
||||
'deleted' => '分类已删除|分类已删除',
|
||||
'disable_threads' => '禁用贴子',
|
||||
'enable_threads' => '启用贴子',
|
||||
'make_private' => '设为私有',
|
||||
'make_public' => '设为公开',
|
||||
'mark_read' => '将此类别中的贴子标记为已读',
|
||||
'marked_read' => ':category中的新/更新的贴子已被标记为已读',
|
||||
'restored' => '分类已恢复|分类已恢复',
|
||||
'subcategories' => '子分类',
|
||||
'threads_disabled' => '此分类中禁用了新贴子创建',
|
||||
'updated' => '分类已更新|分类已更新',
|
||||
|
||||
];
|
||||
Vendored
+48
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => '操作|操作',
|
||||
'author' => '作者',
|
||||
'cancel' => '取消',
|
||||
'changes_applied' => '更改已生效',
|
||||
'create' => '创建',
|
||||
'color' => '颜色',
|
||||
'delete' => '删除',
|
||||
'deleted' => '已删除',
|
||||
'description' => '描述',
|
||||
'edit' => '编辑',
|
||||
'editing' => '你正在编辑 :item',
|
||||
'generic_confirm' => '是否确定?',
|
||||
'home_title' => '论坛',
|
||||
'index' => '首页',
|
||||
'invalid_selection' => '无效选择',
|
||||
'last_updated' => '上次更新时间',
|
||||
'manage' => '管理',
|
||||
'mark_read' => '标记为已读',
|
||||
'move' => '移动',
|
||||
'new' => '新',
|
||||
'new_reply' => '新回复',
|
||||
'none' => '无',
|
||||
'perma_delete' => '永久删除',
|
||||
'permalink' => '永久链接',
|
||||
'posted' => '已发布',
|
||||
'private' => '私有',
|
||||
'proceed' => '执行',
|
||||
'quick_reply' => '快速回复',
|
||||
'rename' => '重命名',
|
||||
'replies' => '回复',
|
||||
'reply' => '回复',
|
||||
'reply_added' => '已添加回复',
|
||||
'replying_to' => '您正在回复 :item',
|
||||
'response_to' => '回应 :item',
|
||||
'restore' => '恢复',
|
||||
'save' => '保存',
|
||||
'subject' => '主题',
|
||||
'title' => '标题',
|
||||
'unread' => '未读',
|
||||
'updated' => '已更新',
|
||||
'weight' => '权重',
|
||||
'with_selection' => '已选内容…',
|
||||
|
||||
];
|
||||
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => '回贴操作',
|
||||
'created' => '回贴已创建',
|
||||
'delete' => '删除回贴|删除回贴',
|
||||
'deleted' => '回贴已删除|回贴已删除',
|
||||
'edit' => '编辑回贴',
|
||||
'last' => '最新回贴',
|
||||
'perma_deleted' => '回贴被永久删除|回贴被永久删除',
|
||||
'post' => '回贴|回贴',
|
||||
'restore' => '恢复回贴|恢复回贴',
|
||||
'restored' => '回贴已恢复|回贴已恢复',
|
||||
'select_all' => '选择所有回贴',
|
||||
'updated' => '回贴已更新|回贴已更新',
|
||||
'view' => '查看回贴',
|
||||
'your_post' => '你的回贴',
|
||||
|
||||
];
|
||||
Vendored
+30
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => '贴子操作',
|
||||
'created' => '贴子已创建',
|
||||
'delete' => '删除此贴子',
|
||||
'deleted' => '贴子已删除|贴子已删除',
|
||||
'lock' => '锁定',
|
||||
'locked' => '已锁定',
|
||||
'marked_read' => '所有贴子都已标记为已读',
|
||||
'new_thread' => '发贴',
|
||||
'newest' => '最新贴子',
|
||||
'none_found' => '未发现贴子',
|
||||
'perma_delete' => '永久删除贴子|永久删除贴子',
|
||||
'perma_deleted' => '贴子被永久删除|贴子被永久删除',
|
||||
'pin' => '固定',
|
||||
'pinned' => '已固定',
|
||||
'post_the_first' => '发布第一个!',
|
||||
'recent' => '最新贴子',
|
||||
'restored' => '贴子已恢复|贴子已恢复',
|
||||
'select_all' => '选择所有贴子',
|
||||
'thread' => '贴子|贴子',
|
||||
'updated' => '贴子已更新|贴子已更新',
|
||||
'unlock' => '解锁',
|
||||
'unpin' => '解除固定',
|
||||
'unread_updated' => '未读&已更新贴子',
|
||||
'view' => '查看贴子',
|
||||
|
||||
];
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'category_threads_enabled' => '该分类必须启用贴子.',
|
||||
'category_has_no_threads' => '分类不得包含贴子.',
|
||||
'category_is_empty' => '分类必须为空.',
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user