change the icon in the composer toolbar with a more generic upload icon
also changed all references to "images uploads" to a "uploads"
This commit is contained in:
parent
3397c2235f
commit
36e6345eee
|
@ -62,10 +62,8 @@ Discourse.Markdown = {
|
|||
code: I18n.t("composer.code_title") + " <pre><code> Ctrl+K",
|
||||
codeexample: I18n.t("composer.code_text"),
|
||||
|
||||
image: I18n.t("composer.image_title") + " <img> Ctrl+G",
|
||||
imagedescription: I18n.t("composer.image_description"),
|
||||
imagedialog: "<p><b>" + I18n.t("composer.image_dialog_title") + "</b></p><p>http://example.com/images/diagram.jpg \"" +
|
||||
I18n.t("composer.image_optional_text") + "\"<br><br>" + I18n.t("composer.image_hosting_hint") + "</p>",
|
||||
image: I18n.t("composer.upload_title") + " - Ctrl+G",
|
||||
imagedescription: I18n.t("composer.upload_description"),
|
||||
|
||||
olist: I18n.t("composer.olist_title") + " <ol> Ctrl+O",
|
||||
ulist: I18n.t("composer.ulist_title") + " <ul> Ctrl+U",
|
||||
|
|
|
@ -1,22 +0,0 @@
|
|||
/**
|
||||
The modal for inviting a user to a topic
|
||||
|
||||
@class ImageSelectorController
|
||||
@extends Discourse.Controller
|
||||
@namespace Discourse
|
||||
@uses Discourse.ModalFunctionality
|
||||
@module Discourse
|
||||
**/
|
||||
Discourse.ImageSelectorController = Discourse.Controller.extend(Discourse.ModalFunctionality, {
|
||||
|
||||
selectLocal: function() {
|
||||
this.set('localSelected', true);
|
||||
},
|
||||
|
||||
selectRemote: function() {
|
||||
this.set('localSelected', false);
|
||||
},
|
||||
|
||||
remoteSelected: Em.computed.not('localSelected')
|
||||
|
||||
});
|
|
@ -0,0 +1,17 @@
|
|||
/**
|
||||
The modal for upload a file to a post
|
||||
|
||||
@class UploadSelectorController
|
||||
@extends Discourse.Controller
|
||||
@namespace Discourse
|
||||
@uses Discourse.ModalFunctionality
|
||||
@module Discourse
|
||||
**/
|
||||
Discourse.UploadSelectorController = Discourse.Controller.extend(Discourse.ModalFunctionality, {
|
||||
localSelected: true,
|
||||
remoteSelected: Em.computed.not('localSelected'),
|
||||
|
||||
selectLocal: function() { this.set('localSelected', true); },
|
||||
selectRemote: function() { this.set('localSelected', false); }
|
||||
|
||||
});
|
|
@ -26,12 +26,9 @@ Discourse.ApplicationRoute = Em.Route.extend({
|
|||
this.controllerFor('notActivated').setProperties(props);
|
||||
},
|
||||
|
||||
showImageSelector: function(composerView) {
|
||||
Discourse.Route.showModal(this, 'imageSelector');
|
||||
this.controllerFor('imageSelector').setProperties({
|
||||
localSelected: true,
|
||||
composerView: composerView
|
||||
});
|
||||
showUploadSelector: function(composerView) {
|
||||
Discourse.Route.showModal(this, 'uploadSelector');
|
||||
this.controllerFor('uploadSelector').setProperties({ composerView: composerView });
|
||||
},
|
||||
|
||||
|
||||
|
@ -62,4 +59,4 @@ Discourse.ApplicationRoute = Em.Route.extend({
|
|||
|
||||
}
|
||||
|
||||
});
|
||||
});
|
||||
|
|
|
@ -77,7 +77,7 @@
|
|||
<div id='draft-status'></div>
|
||||
{{#if view.isUploading}}
|
||||
<div id="file-uploading">
|
||||
{{i18n image_selector.uploading_image}} {{view.uploadProgress}}% <a id="cancel-file-upload">{{i18n cancel}}</a>
|
||||
{{i18n upload_selector.upload_file}} {{view.uploadProgress}}% <a id="cancel-file-upload">{{i18n cancel}}</a>
|
||||
</div>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
|
|
@ -1,36 +0,0 @@
|
|||
<ul class="nav nav-pills image-options">
|
||||
<li title="{{i18n image_selector.local_title}}" {{bindAttr class="localSelected:active"}}>
|
||||
<a href="#" {{action selectLocal}}>{{i18n image_selector.from_my_computer}}</a>
|
||||
</li>
|
||||
<li title="{{i18n image_selector.remote_title}}" {{bindAttr class="remoteSelected:active"}}>
|
||||
<a href="#" {{action selectRemote}}>{{i18n image_selector.from_the_web}}</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
{{#if localSelected}}
|
||||
<div class='modal-body'>
|
||||
<form>
|
||||
<input type="file" name="file" id="filename-input" value="browse" accept="image/*"><br>
|
||||
<span class='description'>{{i18n image_selector.local_tip}}</span> <br>
|
||||
</form>
|
||||
</div>
|
||||
<div class='modal-footer'>
|
||||
<button class='btn btn-large btn-primary' {{action upload target="view"}}>
|
||||
<span class='add-picture'><i class='icon-picture'></i><i class='icon-plus'></i></span>
|
||||
{{i18n image_selector.upload}}
|
||||
</button>
|
||||
</div>
|
||||
{{else}}
|
||||
<div class='modal-body'>
|
||||
<form>
|
||||
<input type="text" name="text" id="fileurl-input" autofocus><br>
|
||||
<span class='description'>{{i18n image_selector.remote_tip}}</span> <br>
|
||||
</form>
|
||||
</div>
|
||||
<div class='modal-footer'>
|
||||
<button class='btn btn-large btn-primary' {{action add target="view"}}>
|
||||
<span class='add-picture'><i class='icon-picture'></i><i class='icon-plus'></i></span>
|
||||
{{i18n image_selector.add_image}}
|
||||
</button>
|
||||
</div>
|
||||
{{/if}}
|
|
@ -1,36 +0,0 @@
|
|||
<ul class="nav nav-pills image-options">
|
||||
<li title="{{i18n image_selector.local_title}}" {{bindAttr class="localSelected:active"}}>
|
||||
<a href="#" {{action selectLocal}}>{{i18n image_selector.from_my_computer}}</a>
|
||||
</li>
|
||||
<li title="{{i18n image_selector.remote_title}}" {{bindAttr class="remoteSelected:active"}}>
|
||||
<a href="#" {{action selectRemote}}>{{i18n image_selector.from_the_web}}</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
{{#if localSelected}}
|
||||
<div class='modal-body'>
|
||||
<form>
|
||||
<input type="file" name="file" id="filename-input" value="browse" accept="image/*"><br>
|
||||
<span class='description'>{{i18n image_selector.local_tip}}</span> <br>
|
||||
</form>
|
||||
</div>
|
||||
<div class='modal-footer'>
|
||||
<button class='btn btn-large btn-primary' {{action upload target="view"}}>
|
||||
<span class='add-picture'><i class='icon-picture'></i><i class='icon-plus'></i></span>
|
||||
{{i18n image_selector.upload}}
|
||||
</button>
|
||||
</div>
|
||||
{{else}}
|
||||
<div class='modal-body'>
|
||||
<form>
|
||||
<input type="text" name="text" id="fileurl-input" autofocus><br>
|
||||
<span class='description'>{{i18n image_selector.remote_tip}}</span> <br>
|
||||
</form>
|
||||
</div>
|
||||
<div class='modal-footer'>
|
||||
<button class='btn btn-large btn-primary' {{action add target="view"}}>
|
||||
<span class='add-picture'><i class='icon-picture'></i><i class='icon-plus'></i></span>
|
||||
{{i18n image_selector.add_image}}
|
||||
</button>
|
||||
</div>
|
||||
{{/if}}
|
|
@ -0,0 +1,36 @@
|
|||
<ul class="nav nav-pills">
|
||||
<li title="{{i18n upload_selector.local_title}}" {{bindAttr class="localSelected:active"}}>
|
||||
<a href="#" {{action selectLocal}}>{{i18n upload_selector.from_my_computer}}</a>
|
||||
</li>
|
||||
<li title="{{i18n upload_selector.remote_title}}" {{bindAttr class="remoteSelected:active"}}>
|
||||
<a href="#" {{action selectRemote}}>{{i18n upload_selector.from_the_web}}</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
{{#if localSelected}}
|
||||
<div class='modal-body'>
|
||||
<form>
|
||||
<input type="file" name="file" id="filename-input" value="browse"><br>
|
||||
<span class='description'>{{i18n upload_selector.local_tip}}</span> <br>
|
||||
</form>
|
||||
</div>
|
||||
<div class='modal-footer'>
|
||||
<button class='btn btn-large btn-primary' {{action upload target="view"}}>
|
||||
<span class='add-upload'><i class='icon-file-alt'></i><i class='icon-plus'></i></span>
|
||||
{{i18n upload_selector.upload}}
|
||||
</button>
|
||||
</div>
|
||||
{{else}}
|
||||
<div class='modal-body'>
|
||||
<form>
|
||||
<input type="text" name="text" id="fileurl-input" autofocus><br>
|
||||
<span class='description'>{{i18n upload_selector.remote_tip}}</span> <br>
|
||||
</form>
|
||||
</div>
|
||||
<div class='modal-footer'>
|
||||
<button class='btn btn-large btn-primary' {{action add target="view"}}>
|
||||
<span class='add-upload'><i class='icon-file-alt'></i><i class='icon-plus'></i></span>
|
||||
{{i18n upload_selector.add_image}}
|
||||
</button>
|
||||
</div>
|
||||
{{/if}}
|
|
@ -199,7 +199,7 @@ Discourse.ComposerView = Discourse.View.extend({
|
|||
var $uploadTarget = $('#reply-control');
|
||||
this.editor.hooks.insertImageDialog = function(callback) {
|
||||
callback(null);
|
||||
composerView.get('controller').send('showImageSelector', composerView);
|
||||
composerView.get('controller').send('showUploadSelector', composerView);
|
||||
return true;
|
||||
};
|
||||
|
||||
|
|
|
@ -1,23 +0,0 @@
|
|||
/**
|
||||
This view handles the image upload interface
|
||||
|
||||
@class ImageSelectorView
|
||||
@extends Discourse.ModalBodyView
|
||||
@namespace Discourse
|
||||
@module Discourse
|
||||
**/
|
||||
Discourse.ImageSelectorView = Discourse.ModalBodyView.extend({
|
||||
templateName: 'modal/image_selector',
|
||||
classNames: ['image-selector'],
|
||||
title: I18n.t('image_selector.title'),
|
||||
|
||||
upload: function() {
|
||||
$('#reply-control').fileupload('add', { fileInput: $('#filename-input') });
|
||||
},
|
||||
|
||||
add: function() {
|
||||
this.get('controller.composerView').addMarkdown("![image](" + $('#fileurl-input').val() + ")");
|
||||
this.get('controller').send('closeModal');
|
||||
}
|
||||
|
||||
});
|
|
@ -0,0 +1,23 @@
|
|||
/**
|
||||
This view handles the upload interface
|
||||
|
||||
@class UploadSelectorView
|
||||
@extends Discourse.ModalBodyView
|
||||
@namespace Discourse
|
||||
@module Discourse
|
||||
**/
|
||||
Discourse.UploadSelectorView = Discourse.ModalBodyView.extend({
|
||||
templateName: 'modal/upload_selector',
|
||||
classNames: ['upload-selector'],
|
||||
title: I18n.t('upload_selector.title'),
|
||||
|
||||
upload: function() {
|
||||
$('#reply-control').fileupload('add', { fileInput: $('#filename-input') });
|
||||
},
|
||||
|
||||
add: function() {
|
||||
this.get('controller.composerView').addMarkdown($('#fileurl-input').val());
|
||||
this.get('controller').send('closeModal');
|
||||
}
|
||||
|
||||
});
|
|
@ -69,13 +69,13 @@
|
|||
}
|
||||
|
||||
|
||||
#wmd-bold-button:before {
|
||||
content: "\f032";
|
||||
#wmd-bold-button:before {
|
||||
content: "\f032";
|
||||
}
|
||||
|
||||
|
||||
#wmd-italic-button:before {
|
||||
content: "\f033";
|
||||
content: "\f033";
|
||||
}
|
||||
|
||||
#wmd-link-button:before {
|
||||
|
@ -91,15 +91,15 @@
|
|||
}
|
||||
|
||||
#wmd-image-button:before {
|
||||
content: "\f03e";
|
||||
content: "\f093";
|
||||
}
|
||||
|
||||
#wmd-olist-button:before {
|
||||
content: "\f0cb";
|
||||
content: "\f0cb";
|
||||
}
|
||||
|
||||
#wmd-ulist-button:before {
|
||||
content: "\f0ca";
|
||||
content: "\f0ca";
|
||||
}
|
||||
|
||||
#wmd-heading-button:before {
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
// base styles for every modal popup used in Discourse
|
||||
|
||||
@import "foundation/variables";
|
||||
@import "foundation/mixins";
|
||||
|
||||
.add-picture .icon-plus {
|
||||
.add-upload .icon-plus {
|
||||
font-size: 10px;
|
||||
position: relative;
|
||||
left: -5px;
|
||||
|
@ -14,8 +12,7 @@
|
|||
-1px 1px 0 $btn-primary-background-color;
|
||||
}
|
||||
|
||||
// we should refactor this into something more general
|
||||
.image-selector {
|
||||
.upload-selector {
|
||||
input[type="text"]{
|
||||
width: 520px;
|
||||
}
|
|
@ -470,9 +470,9 @@ cs:
|
|||
quote_text: "Bloková citace"
|
||||
code_title: "Ukázka kódu"
|
||||
code_text: "sem vložte kód"
|
||||
image_title: "Obrázek"
|
||||
image_description: "sem vložek popis obrázku"
|
||||
image_dialog_title: "Vložit obrázek"
|
||||
upload_title: "Obrázek"
|
||||
upload_description: "sem vložek popis obrázku"
|
||||
upload_dialog_title: "Vložit obrázek"
|
||||
image_optional_text: "volitelný popis"
|
||||
image_hosting_hint: "Potřebujete <a href='http://www.google.com/search?q=free+image+hosting' target='_blank'>hosting obrázků zdarma?</a>"
|
||||
olist_title: "Číslovaný seznam"
|
||||
|
@ -506,7 +506,7 @@ cs:
|
|||
moved_post: "<i title='přesunutý příspěvek' class='icon icon-arrow-right'></i> {{username}} přesunul příspěvek do {{link}}"
|
||||
total_flagged: "celkem nahlášeno příspěvků"
|
||||
|
||||
image_selector:
|
||||
upload_selector:
|
||||
title: "Vložit obrázek"
|
||||
from_my_computer: "Z mého zařízení"
|
||||
from_the_web: "Z webu"
|
||||
|
@ -516,7 +516,7 @@ cs:
|
|||
local_title: "obrázek z lokálního úložiště"
|
||||
local_tip: "klikněte sem pro výběr obrázku z vašeho zařízení"
|
||||
upload: "Nahrát"
|
||||
uploading_image: "Nahrávám obrázek"
|
||||
upload_file: "Nahrávám obrázek"
|
||||
|
||||
search:
|
||||
title: "hledání témat, příspěvků, uživatelů a kategorií"
|
||||
|
|
|
@ -319,9 +319,9 @@ da:
|
|||
quote_text: "Citatblok"
|
||||
code_title: "Programkode"
|
||||
code_text: "skriv programkode her"
|
||||
image_title: "Billede"
|
||||
image_description: "skriv billedets beskrivelse her"
|
||||
image_dialog_title: "Indsæt billede"
|
||||
upload_title: "Billede"
|
||||
upload_description: "skriv billedets beskrivelse her"
|
||||
upload_dialog_title: "Indsæt billede"
|
||||
image_optional_text: "evt. titel"
|
||||
image_hosting_hint: "Brug for <a href='http://www.google.com/search?q=free+image+hosting' target='_blank'>gratis billed hosting?</a>"
|
||||
olist_title: "Numereret liste"
|
||||
|
@ -349,7 +349,7 @@ da:
|
|||
invitee_accepted: "<i title='accepted your invitation' class='icon icon-signin'></i> {{username}} har accepteret din invitation"
|
||||
moved_post: "<i title='moved post' class='icon icon-arrow-right'></i> {{username}} flyttede indlæg til {{link}}"
|
||||
|
||||
image_selector:
|
||||
upload_selector:
|
||||
title: "Indsæt billede"
|
||||
from_my_computer: "Fra min computer"
|
||||
from_the_web: "Fra nettet"
|
||||
|
@ -357,7 +357,7 @@ da:
|
|||
remote_tip: "skriv adressen på et billede i formen http://example.com/billede.jpg"
|
||||
local_tip: "klik for at vælge et billede fra din computer."
|
||||
upload: "Upload"
|
||||
uploading_image: "Uploader billede"
|
||||
upload_file: "Uploader billede"
|
||||
|
||||
search:
|
||||
title: "søg efter emner, indlæg, brugere eller kategorier"
|
||||
|
|
|
@ -453,9 +453,9 @@ de:
|
|||
quote_text: "Zitat"
|
||||
code_title: "Code"
|
||||
code_text: "Gib hier den Code ein"
|
||||
image_title: "Bild"
|
||||
image_description: "Gib hier eine Bildbeschreibung ein"
|
||||
image_dialog_title: "Bild einfügen"
|
||||
upload_title: "Bild"
|
||||
upload_description: "Gib hier eine Bildbeschreibung ein"
|
||||
upload_dialog_title: "Bild einfügen"
|
||||
image_optional_text: "optionaler Titel"
|
||||
image_hosting_hint: "Benötigst Du <a href='http://www.google.com/search?q=kostenlos+bilder+hosten' target='_blank'>kostenlosen Dienst für Bilder?</a>"
|
||||
olist_title: "Nummerierte Liste"
|
||||
|
@ -489,7 +489,7 @@ de:
|
|||
moved_post: "<i title='moved post' class='icon icon-arrow-right'></i> {{username}} hat einen Beitrag nach {{link}} verschoben"
|
||||
total_flagged: "total markierte Einträge"
|
||||
|
||||
image_selector:
|
||||
upload_selector:
|
||||
title: "Bild einfügen"
|
||||
from_my_computer: "von meinem Gerät"
|
||||
from_the_web: "aus dem Web"
|
||||
|
@ -499,7 +499,7 @@ de:
|
|||
local_title: "Lokales Bild"
|
||||
local_tip: "Klicke hier, um ein Bild von deinem Gerät zu wählen."
|
||||
upload: "Hochladen"
|
||||
uploading_image: "Bild wird hochgeladen"
|
||||
upload_file: "Bild wird hochgeladen"
|
||||
|
||||
search:
|
||||
title: "Such nach Themen, Beiträgen, Nutzern oder Kategorien"
|
||||
|
|
|
@ -448,9 +448,9 @@ en:
|
|||
quote_text: "Blockquote"
|
||||
code_title: "Code Sample"
|
||||
code_text: "enter code here"
|
||||
image_title: "Image"
|
||||
image_description: "enter image description here"
|
||||
image_dialog_title: "Insert Image"
|
||||
upload_title: "Image"
|
||||
upload_description: "enter image description here"
|
||||
upload_dialog_title: "Insert Image"
|
||||
image_optional_text: "optional title"
|
||||
image_hosting_hint: "Need <a href='http://www.google.com/search?q=free+image+hosting' target='_blank'>free image hosting?</a>"
|
||||
olist_title: "Numbered List"
|
||||
|
@ -484,17 +484,17 @@ en:
|
|||
moved_post: "<i title='moved post' class='icon icon-arrow-right'></i> {{username}} moved to {{link}}"
|
||||
total_flagged: "total flagged posts"
|
||||
|
||||
image_selector:
|
||||
title: "Insert Image"
|
||||
upload_selector:
|
||||
title: "Upload file"
|
||||
from_my_computer: "From My Device"
|
||||
from_the_web: "From The Web"
|
||||
add_image: "Add Image"
|
||||
remote_title: "remote image"
|
||||
remote_tip: "enter address of an image in the form http://example.com/image.jpg"
|
||||
local_title: "local image"
|
||||
local_tip: "click to select an image from your device."
|
||||
add_image: "Add File"
|
||||
remote_title: "remote file"
|
||||
remote_tip: "enter address of a file in the form http://example.com/image.jpg"
|
||||
local_title: "local file"
|
||||
local_tip: "click to select a file from your device."
|
||||
upload: "Upload"
|
||||
uploading_image: "Uploading image"
|
||||
upload_file: "Uploading"
|
||||
|
||||
search:
|
||||
title: "search for topics, posts, users, or categories"
|
||||
|
|
|
@ -395,9 +395,9 @@ es:
|
|||
quote_text: "Blockquote"
|
||||
code_title: "Code Sample"
|
||||
code_text: "enter code here"
|
||||
image_title: "Image"
|
||||
image_description: "enter image description here"
|
||||
image_dialog_title: "Insert Image"
|
||||
upload_title: "Image"
|
||||
upload_description: "enter image description here"
|
||||
upload_dialog_title: "Insert Image"
|
||||
image_optional_text: "optional title"
|
||||
image_hosting_hint: "Need <a href='http://www.google.com/search?q=free+image+hosting' target='_blank'>free image hosting?</a>"
|
||||
olist_title: "Numbered List"
|
||||
|
@ -425,7 +425,7 @@ es:
|
|||
invitee_accepted: "<i title='aceptó tu invitación' class='icon icon-signin'></i> {{username}} aceptó tu invitación"
|
||||
moved_post: "<i title='publicación trasladada' class='icon icon-arrow-right'></i> {{username}} trasladó la publicación a {{link}}"
|
||||
|
||||
image_selector:
|
||||
upload_selector:
|
||||
title: "Insertar Imagen"
|
||||
from_my_computer: "Desde Mí Dispositivo"
|
||||
from_the_web: "Desde La Web"
|
||||
|
@ -433,7 +433,7 @@ es:
|
|||
remote_tip: "ingrese una dirección de una imagen en la siguiente forma http://ejemplo.com/imagen.jpg"
|
||||
local_tip: "click para seleccionar la imagen desde su dispositivo."
|
||||
upload: "Subir"
|
||||
uploading_image: "Subiendo imagen"
|
||||
upload_file: "Subiendo imagen"
|
||||
|
||||
search:
|
||||
title: "buscar por temas, publicaciones, usuarios o categorías"
|
||||
|
|
|
@ -442,9 +442,9 @@ fr:
|
|||
quote_text: "Citation"
|
||||
code_title: "Bout de code"
|
||||
code_text: "renseignez ici votre code"
|
||||
image_title: "Image"
|
||||
image_description: "renseignez ici la description de l'image"
|
||||
image_dialog_title: "Insérez l'image"
|
||||
upload_title: "Image"
|
||||
upload_description: "renseignez ici la description de l'image"
|
||||
upload_dialog_title: "Insérez l'image"
|
||||
image_optional_text: "titre optionnel"
|
||||
image_hosting_hint: "Besoin <a href='https://www.google.fr/search?q=hébergement+d'image+gratuit' target='_blank'>d'un hébergeur d'image gratuit ?</a>"
|
||||
olist_title: "Liste numérotée"
|
||||
|
@ -489,17 +489,17 @@ fr:
|
|||
moved_post: "<i title='moved post' class='icon icon-arrow-right'></i> {{username}} a déplacé le message vers {{link}}"
|
||||
total_flagged: "Nombre total de messages signalés"
|
||||
|
||||
image_selector:
|
||||
title: "Insérer une image"
|
||||
upload_selector:
|
||||
title: "Insérer un fichier"
|
||||
from_my_computer: "Local"
|
||||
from_the_web: "Depuis internet"
|
||||
add_image: "Ajouter une image"
|
||||
remote_title: "Image distante"
|
||||
remote_tip: "saisissez l'url de l'image"
|
||||
local_title: "Image locale"
|
||||
local_tip: "Cliquez pour sélectionner une image depuis votre ordinateur."
|
||||
add_image: "Ajouter un fichier"
|
||||
remote_title: "Fichier distant"
|
||||
remote_tip: "saisissez l'url du fichier"
|
||||
local_title: "Fichier local"
|
||||
local_tip: "Cliquez pour sélectionner un fichier depuis votre ordinateur."
|
||||
upload: "Envoyer"
|
||||
uploading_image: "Image en cours d'envoi"
|
||||
upload_file: "Fichier en cours d'envoi"
|
||||
|
||||
search:
|
||||
title: "Rechercher les discussions, messages, utilisateurs ou catégories"
|
||||
|
|
|
@ -310,7 +310,7 @@ id:
|
|||
invitee_accepted: "<i title='accepted your invitation' class='icon icon-signin'></i> {{username}} accepted your invitation"
|
||||
moved_post: "<i title='moved post' class='icon icon-arrow-right'></i> {{username}} moved post to {{link}}"
|
||||
|
||||
image_selector:
|
||||
upload_selector:
|
||||
title: "Insert Image"
|
||||
from_my_computer: "From My Device"
|
||||
from_the_web: "From The Web"
|
||||
|
@ -318,7 +318,7 @@ id:
|
|||
remote_tip: "enter address of an image in the form http://example.com/image.jpg"
|
||||
local_tip: "click to select an image from your device."
|
||||
upload: "Upload"
|
||||
uploading_image: "Uploading image"
|
||||
upload_file: "Uploading image"
|
||||
|
||||
search:
|
||||
title: "search for topics, posts, users, or categories"
|
||||
|
|
|
@ -382,9 +382,9 @@ it:
|
|||
quote_text: "Blockquote"
|
||||
code_title: "Esempio di codice"
|
||||
code_text: "inserisci il codice qui"
|
||||
image_title: "Immagine"
|
||||
image_description: "descrizione dell'immagine"
|
||||
image_dialog_title: "Inserisci Immagine"
|
||||
upload_title: "Immagine"
|
||||
upload_description: "descrizione dell'immagine"
|
||||
upload_dialog_title: "Inserisci Immagine"
|
||||
image_optional_text: "titolo facoltativo"
|
||||
image_hosting_hint: "Hai bisogno di <a href='http://www.google.com/search?q=free+image+hosting' target='_blank'>free image hosting?</a>"
|
||||
olist_title: "Lista Numerata"
|
||||
|
@ -418,7 +418,7 @@ it:
|
|||
moved_post: "<i title='post spostato' class='icon icon-arrow-right'></i> {{username}} ha spostato il post qui {{link}}"
|
||||
total_flagged: "totale post segnalati"
|
||||
|
||||
image_selector:
|
||||
upload_selector:
|
||||
title: "Inserisci Immagine"
|
||||
from_my_computer: "Dal mio dispositivo"
|
||||
from_the_web: "Dal Web"
|
||||
|
@ -428,7 +428,7 @@ it:
|
|||
local_title: "immagine locale"
|
||||
local_tip: "clicca per selezionare un'immagine dal tuo dispositivo."
|
||||
upload: "Upload"
|
||||
uploading_image: "Carico l'immagine"
|
||||
upload_file: "Carico l'immagine"
|
||||
|
||||
search:
|
||||
title: "cerca topic, post, utenti o categorie"
|
||||
|
|
|
@ -393,9 +393,9 @@ nb_NO:
|
|||
quote_text: "Sitatramme"
|
||||
code_title: "Kode Utsnitt"
|
||||
code_text: "Legg inn kode her"
|
||||
image_title: "Bilde"
|
||||
image_description: "beskriv bildet her"
|
||||
image_dialog_title: "Legg til Bildet"
|
||||
upload_title: "Bilde"
|
||||
upload_description: "beskriv bildet her"
|
||||
upload_dialog_title: "Legg til Bildet"
|
||||
image_optional_text: "valgfri title"
|
||||
image_hosting_hint: "Trenger du <a href='http://www.google.com/search?q=free+image+hosting' target='_blank'>gratis bildelagring?</a>"
|
||||
olist_title: "Nummerert Liste"
|
||||
|
@ -429,7 +429,7 @@ nb_NO:
|
|||
moved_post: "<i title='flyttet innlegg' class='icon icon-arrow-right'></i> {{username}} flyttet til {{link}}"
|
||||
total_flagged: "totalt markerte innlegg"
|
||||
|
||||
image_selector:
|
||||
upload_selector:
|
||||
title: "Legg til Bilde"
|
||||
from_my_computer: "Fra Min Enhet"
|
||||
from_the_web: "Fra Nettet"
|
||||
|
@ -439,7 +439,7 @@ nb_NO:
|
|||
local_title: "lokalt bilde"
|
||||
local_tip: "klikk for å velge et bilde fra din enhet."
|
||||
upload: "Last opp"
|
||||
uploading_image: "Laster opp bilde"
|
||||
upload_file: "Laster opp bilde"
|
||||
|
||||
search:
|
||||
title: "søk etter emner, innlegg, brukere eller kategorier"
|
||||
|
|
|
@ -453,9 +453,9 @@ nl:
|
|||
quote_text: Citaat
|
||||
code_title: Code voorbeeld
|
||||
code_text: hier de code
|
||||
image_title: Afbeelding
|
||||
image_description: geef een omschrijving voor de afbeelding op
|
||||
image_dialog_title: Voeg afbeelding toe
|
||||
upload_title: Afbeelding
|
||||
upload_description: geef een omschrijving voor de afbeelding op
|
||||
upload_dialog_title: Voeg afbeelding toe
|
||||
image_optional_text: optionele titel
|
||||
image_hosting_hint: "Heb je een <a href='http://www.google.com/search?q=free+image+hosting' target='_blank'>een gratis stek voor je afbeelding</a> nodig?"
|
||||
olist_title: Genummerde lijst
|
||||
|
@ -489,7 +489,7 @@ nl:
|
|||
moved_post: "<i title='bericht verplaatst' class='icon icon-arrow-right'></i> {{username}} verplaatst naar {{link}}"
|
||||
total_flagged: aantal gemarkeerde berichten
|
||||
|
||||
image_selector:
|
||||
upload_selector:
|
||||
title: Voeg afbeelding toe
|
||||
from_my_computer: Vanaf mijn apparaat
|
||||
from_the_web: Vanaf het web
|
||||
|
@ -499,7 +499,7 @@ nl:
|
|||
local_title: lokale afbeelding
|
||||
local_tip: "klik om een afbeelding vanaf je apparaat te selecteren."
|
||||
upload: Uploaden
|
||||
uploading_image: Afbeelding uploaden
|
||||
upload_file: Afbeelding uploaden
|
||||
|
||||
search:
|
||||
title: "zoek naar topics, posts, leden of categoriëen"
|
||||
|
|
|
@ -429,9 +429,9 @@ pseudo:
|
|||
quote_text: '[[ Ɓłóčǩƣůóťé ]]'
|
||||
code_title: '[[ Čóďé Šáɱƿłé ]]'
|
||||
code_text: '[[ éɳťéř čóďé ĥéřé ]]'
|
||||
image_title: '[[ Íɱáǧé ]]'
|
||||
image_description: '[[ éɳťéř íɱáǧé ďéščříƿťíóɳ ĥéřé ]]'
|
||||
image_dialog_title: '[[ Íɳšéřť Íɱáǧé ]]'
|
||||
upload_title: '[[ Íɱáǧé ]]'
|
||||
upload_description: '[[ éɳťéř íɱáǧé ďéščříƿťíóɳ ĥéřé ]]'
|
||||
upload_dialog_title: '[[ Íɳšéřť Íɱáǧé ]]'
|
||||
image_optional_text: '[[ óƿťíóɳáł ťíťłé ]]'
|
||||
image_hosting_hint: '[[ Ѝééď <á ĥřéƒ=''ĥťťƿ://ŵŵŵ.ǧóóǧłé.čóɱ/šéářčĥ?ƣ=ƒřéé+íɱáǧé+ĥóšťíɳǧ''
|
||||
ťářǧéť=''_ƀłáɳǩ''>ƒřéé íɱáǧé ĥóšťíɳǧ?</á> ]]'
|
||||
|
@ -474,7 +474,7 @@ pseudo:
|
|||
moved_post: '[[ <í ťíťłé=''ɱóνéď ƿóšť'' čłášš=''íčóɳ íčóɳ-ářřóŵ-říǧĥť''></í>
|
||||
{{username}} ɱóνéď ťó {{link}} ]]'
|
||||
total_flagged: '[[ ťóťáł ƒłáǧǧéď ƿóšťš ]]'
|
||||
image_selector:
|
||||
upload_selector:
|
||||
title: '[[ Íɳšéřť Íɱáǧé ]]'
|
||||
from_my_computer: '[[ Ƒřóɱ Ϻý Ďéνíčé ]]'
|
||||
from_the_web: '[[ Ƒřóɱ Ťĥé Ŵéƀ ]]'
|
||||
|
@ -485,7 +485,7 @@ pseudo:
|
|||
local_title: '[[ łóčáł íɱáǧé ]]'
|
||||
local_tip: '[[ čłíčǩ ťó šéłéčť áɳ íɱáǧé ƒřóɱ ýóůř ďéνíčé. ]]'
|
||||
upload: '[[ Ůƿłóáď ]]'
|
||||
uploading_image: '[[ Ůƿłóáďíɳǧ íɱáǧé ]]'
|
||||
upload_file: '[[ Ůƿłóáďíɳǧ íɱáǧé ]]'
|
||||
search:
|
||||
title: '[[ šéářčĥ ƒóř ťóƿíčš, ƿóšťš, ůšéřš, óř čáťéǧóříéš ]]'
|
||||
placeholder: '[[ ťýƿé ýóůř šéářčĥ ťéřɱš ĥéřé ]]'
|
||||
|
|
|
@ -301,14 +301,14 @@ pt:
|
|||
invitee_accepted: "<i title='accepted your invitation' class='icon icon-signin'></i> {{username}} aceitou o teu convite"
|
||||
moved_post: "<i title='moved post' class='icon icon-arrow-right'></i> {{username}} moveu o post para {{link}}"
|
||||
|
||||
image_selector:
|
||||
upload_selector:
|
||||
from_my_computer: "Do meu dispositivo"
|
||||
from_the_web: "Da internet"
|
||||
add_image: "Adicionar Imagem"
|
||||
remote_tip: "insere o endereço de uma imagem no formato http://example.com/image.jpg"
|
||||
local_tip: "clica para selecionar uma imagem no teu dispositivo."
|
||||
upload: "Enviar"
|
||||
uploading_image: "A enviar imagem"
|
||||
upload_file: "A enviar imagem"
|
||||
|
||||
search:
|
||||
title: "procurar por tópicos, posts, utilizadores, ou categorias"
|
||||
|
|
|
@ -455,9 +455,9 @@ ru:
|
|||
quote_text: Цитата
|
||||
code_title: Фрагмент кода
|
||||
code_text: вводите код здесь
|
||||
image_title: Изображение
|
||||
image_description: введите здесь описание изображения
|
||||
image_dialog_title: Вставка изображения
|
||||
upload_title: Изображение
|
||||
upload_description: введите здесь описание изображения
|
||||
upload_dialog_title: Вставка изображения
|
||||
image_optional_text: необязательное название
|
||||
image_hosting_hint: "Нужен <a href='http://www.google.com/search?q=free+image+hosting' target='_blank'>бесплатный хостинг изображений?</a>"
|
||||
olist_title: Нумерованный список
|
||||
|
@ -488,7 +488,7 @@ ru:
|
|||
invitee_accepted: "<i title='принятое приглашение' class='icon icon-signin'></i> {{username}} принял ваше приглашение"
|
||||
moved_post: "<i title='перенесенное сообщение' class='icon icon-arrow-right'></i> {{username}} перенес сообщение в {{link}}"
|
||||
total_flagged: всего сообщений с жалобами
|
||||
image_selector:
|
||||
upload_selector:
|
||||
title: Вставка изображения
|
||||
from_my_computer: С устройства
|
||||
from_the_web: Из интернета
|
||||
|
@ -498,7 +498,7 @@ ru:
|
|||
local_title: локальное изображение
|
||||
local_tip: выбрать изображение с устройства.
|
||||
upload: Загрузить
|
||||
uploading_image: Загрузка изображения
|
||||
upload_file: Загрузка изображения
|
||||
search:
|
||||
title: поиск по темам, сообщениям, пользователям или категориям
|
||||
placeholder: условия поиска...
|
||||
|
|
|
@ -325,9 +325,9 @@ sv:
|
|||
quote_text: "Citat"
|
||||
code_title: "Kodexempel"
|
||||
code_text: "skriv din kod här"
|
||||
image_title: "Bild"
|
||||
image_description: "skriv en bildbeskrivning här"
|
||||
image_dialog_title: "Infoga Bild"
|
||||
upload_title: "Bild"
|
||||
upload_description: "skriv en bildbeskrivning här"
|
||||
upload_dialog_title: "Infoga Bild"
|
||||
image_optional_text: "valfri titel"
|
||||
image_hosting_hint: "Behöver du <a href='http://www.google.com/search?q=free+image+hosting' target='_blank'>gratis bilduppladdning?</a>"
|
||||
olist_title: "Numrerad Lista"
|
||||
|
@ -355,7 +355,7 @@ sv:
|
|||
invitee_accepted: "<i title='accepterade din inbjudan' class='icon icon-signin'></i> {{username}} accepterade din inbjudan"
|
||||
moved_post: "<i title='flyttade inlägg' class='icon icon-arrow-right'></i> {{username}} flyttade inlägg till {{link}}"
|
||||
|
||||
image_selector:
|
||||
upload_selector:
|
||||
title: "Infoga Bild"
|
||||
from_my_computer: "Från Min Enhet"
|
||||
from_the_web: "Från Internet"
|
||||
|
@ -363,7 +363,7 @@ sv:
|
|||
remote_tip: "skriv in en adress till en bild i formen http://exempel.se/bild.jpg"
|
||||
local_tip: "klicka för att välja en bild från din enhet."
|
||||
upload: "Ladda Upp"
|
||||
uploading_image: "Laddar upp bild"
|
||||
upload_file: "Laddar upp bild"
|
||||
|
||||
search:
|
||||
title: "sök efter trådar, inlägg, användare, eller kategorier"
|
||||
|
|
|
@ -441,9 +441,9 @@ zh_CN:
|
|||
quote_text: "引用"
|
||||
code_title: "代码"
|
||||
code_text: "在此输入代码"
|
||||
image_title: "图片"
|
||||
image_description: "在此输入图片描述"
|
||||
image_dialog_title: "插入图片"
|
||||
upload_title: "图片"
|
||||
upload_description: "在此输入图片描述"
|
||||
upload_dialog_title: "插入图片"
|
||||
image_optional_text: "可选标题"
|
||||
image_hosting_hint: "需要 <a href='http://www.google.com/search?q=free+image+hosting' target='_blank'>免费图片存储?</a>"
|
||||
olist_title: "数字列表"
|
||||
|
@ -477,7 +477,7 @@ zh_CN:
|
|||
moved_post: "<i title='移动帖子' class='icon icon-arrow-right'></i> {{username}} 已将帖子移动到 {{link}}"
|
||||
total_flagged: "被投诉帖子的总数"
|
||||
|
||||
image_selector:
|
||||
upload_selector:
|
||||
title: "插入图片"
|
||||
from_my_computer: "来自我的设备"
|
||||
from_the_web: "来自网络"
|
||||
|
@ -487,7 +487,7 @@ zh_CN:
|
|||
local_title: "本地图片"
|
||||
local_tip: "点击从你的设备中选择一张图片。"
|
||||
upload: "上传"
|
||||
uploading_image: "上传图片中"
|
||||
upload_file: "上传图片中"
|
||||
|
||||
search:
|
||||
title: "搜索主题、帖子、用户或分类"
|
||||
|
|
|
@ -382,9 +382,9 @@ zh_TW:
|
|||
quote_text: "引用"
|
||||
code_title: "代碼"
|
||||
code_text: "在此輸入代碼"
|
||||
image_title: "圖片"
|
||||
image_description: "在此輸入圖片描述"
|
||||
image_dialog_title: "插入圖片"
|
||||
upload_title: "圖片"
|
||||
upload_description: "在此輸入圖片描述"
|
||||
upload_dialog_title: "插入圖片"
|
||||
image_optional_text: "可選標題"
|
||||
image_hosting_hint: "需要 <a href='http://www.google.com/search?q=free+image+hosting' target='_blank'>免費圖片存儲?</a>"
|
||||
olist_title: "數字列表"
|
||||
|
@ -418,7 +418,7 @@ zh_TW:
|
|||
moved_post: "<i title='移動帖子' class='icon icon-arrow-right'></i> {{username}} 已將帖子移動到 {{link}}"
|
||||
total_flagged: "被投訴帖子的總數"
|
||||
|
||||
image_selector:
|
||||
upload_selector:
|
||||
title: "插入圖片"
|
||||
from_my_computer: "來自我的設備"
|
||||
from_the_web: "來自網絡"
|
||||
|
@ -428,7 +428,7 @@ zh_TW:
|
|||
local_title: "本地圖片"
|
||||
local_tip: "點擊從你的設備中選擇一張圖片。"
|
||||
upload: "上傳"
|
||||
uploading_image: "上傳圖片中"
|
||||
upload_file: "上傳圖片中"
|
||||
|
||||
search:
|
||||
title: "搜索主題、帖子、用戶或分類"
|
||||
|
|
Loading…
Reference in New Issue