mirror of
https://github.com/discourse/discourse-adplugin.git
synced 2025-07-14 08:43:26 +00:00
Merge branch 'master' into stable
This commit is contained in:
commit
c838f10467
18
README.md
18
README.md
@ -11,6 +11,7 @@ This is the official Discourse advertising plugin. It allows advertisements to
|
||||
* [Google Adsense](http://www.google.com.au/adsense/start/why-adsense.html)
|
||||
* [Google Double Click for Publishers](https://www.google.com/dfp)
|
||||
* [Amazon Affiliates](http://affiliate-program.amazon.com) - Banner and Product Link Ads
|
||||
* [CodeFund](https://codefund.io) - Ethical Ad Platform for Developers
|
||||
|
||||
|
||||
## Quick Start in 3 Steps
|
||||
@ -40,7 +41,7 @@ hooks:
|
||||
Rebuild the container
|
||||
|
||||
```
|
||||
cd /var/docker
|
||||
cd /var/discourse
|
||||
git pull
|
||||
./launcher rebuild app
|
||||
```
|
||||
@ -58,6 +59,7 @@ There are 2 easy steps for configuring your Discourse settings to enable adverti
|
||||
<ul>
|
||||
<li>Adsense - if using Adsense as your advertisement platform.</li>
|
||||
<li>DFP - if using the DoubleClick for Publishers advertisement platform.</li>
|
||||
<li>CodeFund - if using the CodeFund ethical advertisement platform.</li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
@ -82,7 +84,9 @@ Only for Product Link and Banner Ads.
|
||||
|
||||

|
||||
|
||||
##### CodeFund Embed Tag to Discourse's Site Settings
|
||||
|
||||

|
||||
|
||||
### Step 3 - See Your Ad
|
||||
|
||||
@ -101,12 +105,12 @@ In this section, we go into more detail on:
|
||||
|
||||
The following are available locations along with a description and an image showing their location within Discourse to display ads for all platforms.
|
||||
|
||||
Location Name | Description
|
||||
--- | --- | ---
|
||||
Topic List Top | Ad will appear at the header of Discourse homepage
|
||||
Topic Above Post Stream | Ad will appear in the header of all Discourse forum topics
|
||||
Topic Above Suggested | Ad will appear in the footer above suggested topics of all Discourse forum topics
|
||||
Post Bottom & Nth Post | Ad will appear on the stipulated nth post within a topic. So if you have 5 posts in a topic and you want the ad to display after on the 2nd post, put 2 in ```ad_platform_nth_post_code```.
|
||||
| Location Name | Description |
|
||||
| --- | --- |
|
||||
| Topic List Top | Ad will appear at the header of Discourse homepage |
|
||||
| Topic Above Post Stream | Ad will appear in the header of all Discourse forum topics |
|
||||
| Topic Above Suggested | Ad will appear in the footer above suggested topics of all Discourse forum topics |
|
||||
| Post Bottom & Nth Post | Ad will appear on the stipulated nth post within a topic. So if you have 5 posts in a topic and you want the ad to display after on the 2nd post, put 2 in ```ad_platform_nth_post_code```. |
|
||||
|
||||
|
||||

|
||||
|
@ -1,9 +1,3 @@
|
||||
var amazon_width = '';
|
||||
var amazon_height = '';
|
||||
var mobile_amazon_width = '';
|
||||
var mobile_amazon_height = '';
|
||||
var user_input = '';
|
||||
var user_input_mobile = '';
|
||||
var currentUser = Discourse.User.current();
|
||||
|
||||
var data = {
|
||||
@ -44,7 +38,7 @@ if (!Discourse.Mobile.mobileView && Discourse.SiteSettings.amazon_topic_above_su
|
||||
data["topic-above-suggested"]["amazon_height"] = parseInt(Discourse.SiteSettings.amazon_topic_above_suggested_ad_height_code);
|
||||
}
|
||||
|
||||
if (Discourse.Mobile.mobileView && Discourse.SiteSettings.amazon_mobile_topic_above_sugggested_src_code) {
|
||||
if (Discourse.Mobile.mobileView && Discourse.SiteSettings.amazon_mobile_topic_above_suggested_src_code) {
|
||||
data["topic-above-suggested"]["user_input_mobile"] = Discourse.SiteSettings.amazon_mobile_topic_above_suggested_src_code;
|
||||
data["topic-above-suggested"]["mobile_amazon_width"] = parseInt(Discourse.SiteSettings.amazon_mobile_topic_above_suggested_ad_width_code);
|
||||
data["topic-above-suggested"]["mobile_amazon_height"] = parseInt(Discourse.SiteSettings.amazon_mobile_topic_above_suggested_ad_height_code);
|
||||
@ -64,22 +58,16 @@ if (Discourse.Mobile.mobileView && Discourse.SiteSettings.amazon_mobile_post_bot
|
||||
|
||||
|
||||
export default Ember.Component.extend({
|
||||
amazon_width: amazon_width,
|
||||
amazon_height: amazon_height,
|
||||
mobile_amazon_width: mobile_amazon_width,
|
||||
mobile_amazon_height: mobile_amazon_height,
|
||||
user_input: user_input,
|
||||
user_input_mobile: user_input_mobile,
|
||||
|
||||
classNames: ['amazon-product-links'],
|
||||
|
||||
init: function() {
|
||||
this.set('user_input', data[this.placement]["user_input"] );
|
||||
this.set('amazon_width', data[this.placement]["amazon_width"] );
|
||||
this.set('amazon_height', data[this.placement]["amazon_height"] );
|
||||
this.set('user_input_mobile', data[this.placement]["user_input_mobile"] );
|
||||
this.set('mobile_amazon_height', data[this.placement]["mobile_amazon_height"] );
|
||||
this.set('mobile_amazon_width', data[this.placement]["mobile_amazon_width"] );
|
||||
let placement = this.get('placement');
|
||||
this.set('user_input', data[placement]["user_input"] );
|
||||
this.set('amazon_width', data[placement]["amazon_width"] );
|
||||
this.set('amazon_height', data[placement]["amazon_height"] );
|
||||
this.set('user_input_mobile', data[placement]["user_input_mobile"] );
|
||||
this.set('mobile_amazon_height', data[placement]["mobile_amazon_height"] );
|
||||
this.set('mobile_amazon_width', data[placement]["mobile_amazon_width"] );
|
||||
this._super();
|
||||
},
|
||||
|
||||
|
110
assets/javascripts/discourse/components/codefund-ad.js.es6
Normal file
110
assets/javascripts/discourse/components/codefund-ad.js.es6
Normal file
@ -0,0 +1,110 @@
|
||||
import { default as computed, observes } from 'ember-addons/ember-computed-decorators';
|
||||
|
||||
var _loaded = false,
|
||||
_promise = null,
|
||||
currentUser = Discourse.User.current(),
|
||||
propertyId = Discourse.SiteSettings.codefund_property_id;
|
||||
|
||||
function loadCodeFund() {
|
||||
if (_loaded) {
|
||||
return Ember.RSVP.resolve();
|
||||
}
|
||||
|
||||
if (_promise) {
|
||||
return _promise;
|
||||
}
|
||||
|
||||
const url = 'https://codefund.io/t/s/' + propertyId + '/details.json';
|
||||
|
||||
_promise = new Promise(function(resolve, reject) {
|
||||
let xhr = new XMLHttpRequest();
|
||||
|
||||
xhr.open('GET', url);
|
||||
xhr.onreadystatechange = handler;
|
||||
xhr.responseType = 'json';
|
||||
xhr.setRequestHeader('Accept', 'application/json');
|
||||
xhr.send();
|
||||
|
||||
function handler() {
|
||||
if (this.readyState === this.DONE) {
|
||||
_loaded = true;
|
||||
|
||||
if (this.status === 200) {
|
||||
resolve(this.response);
|
||||
} else {
|
||||
reject(new Error('getJSON: `' + url + '` failed with status: [' + this.status + ']'));
|
||||
}
|
||||
}
|
||||
};
|
||||
});
|
||||
|
||||
return _promise;
|
||||
}
|
||||
|
||||
|
||||
export default Ember.Component.extend({
|
||||
classNameBindings: [':codefund-ad', 'classForSlot', 'isResponsive:codefund-responsive'],
|
||||
propertyId: propertyId,
|
||||
adRequested: false,
|
||||
adDetails: {},
|
||||
|
||||
_triggerAds() {
|
||||
if (!propertyId) return;
|
||||
|
||||
this.set('adRequested', true);
|
||||
loadCodeFund().then((data) => {
|
||||
_loaded = false;
|
||||
_promise = null;
|
||||
this.set('adDetails', data);
|
||||
this.set('adRequested', false);
|
||||
}).catch(error => console.log(error));
|
||||
},
|
||||
|
||||
didInsertElement() {
|
||||
this._super();
|
||||
|
||||
if (!this.get('showAd')) { return; }
|
||||
|
||||
if (this.get('listLoading')) { return; }
|
||||
|
||||
Ember.run.scheduleOnce('afterRender', this, this._triggerAds);
|
||||
},
|
||||
|
||||
@observes('listLoading')
|
||||
waitForLoad: function() {
|
||||
if (this.get('adRequested')) { return; } // already requested that this ad unit be populated
|
||||
if (!this.get('listLoading')) {
|
||||
Ember.run.scheduleOnce('afterRender', this, this._triggerAds);
|
||||
}
|
||||
},
|
||||
|
||||
checkTrustLevels: function() {
|
||||
return !((currentUser) && (currentUser.get('trust_level') > Discourse.SiteSettings.codefund_through_trust_level));
|
||||
}.property('trust_level'),
|
||||
|
||||
@computed('checkTrustLevels')
|
||||
showAd: function(checkTrustLevels) {
|
||||
return Discourse.SiteSettings.codefund_property_id && checkTrustLevels;
|
||||
},
|
||||
|
||||
@computed('placement')
|
||||
displayPostBottom: function(placement) {
|
||||
return placement === 'post-bottom';
|
||||
},
|
||||
|
||||
@computed('placement')
|
||||
displayTopicAbovePostStream: function() {
|
||||
return this.get('placement') === 'topic-above-post-stream';
|
||||
},
|
||||
|
||||
@computed('placement')
|
||||
displayTopicAboveSuggested: function() {
|
||||
return this.get('placement') === 'topic-above-suggested';
|
||||
},
|
||||
|
||||
@computed('placement')
|
||||
displayTopicListTop: function() {
|
||||
return this.get('placement') === 'topic-list-top';
|
||||
}
|
||||
|
||||
});
|
@ -14,6 +14,11 @@
|
||||
{{amazon-product-links placement="post-bottom" postNumber=model.post_number}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{#if model.postSpecificCountCodeFund}}
|
||||
{{#if siteSettings.codefund_below_post_enabled}}
|
||||
{{codefund-ad placement="post-bottom" postNumber=model.post_number}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{else}}
|
||||
{{#if model.postSpecificCountAdsense}}
|
||||
{{#if siteSettings.adsense_post_bottom_code}}
|
||||
@ -30,4 +35,9 @@
|
||||
{{amazon-product-links placement="post-bottom" postNumber=model.post_number}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{#if model.postSpecificCountCodeFund}}
|
||||
{{#if siteSettings.codefund_below_post_enabled}}
|
||||
{{codefund-ad placement="post-bottom" postNumber=model.post_number}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
@ -1,10 +1,10 @@
|
||||
{{#if checkTrustLevels}}
|
||||
{{#if site.mobileView}}
|
||||
<div class="amazon-product-links-label" style={{adTitleStyleMobile}}><h2>ADVERTISEMENT</h2></div>
|
||||
<div class="amazon-product-links-label" style={{adTitleStyleMobile}}><h2>{{i18n 'adplugin.advertisement_label'}}</h2></div>
|
||||
<iframe style={{adWrapperStyleMobile}} marginwidth="0" marginheight="0" scrolling="no" frameborder="0" src={{userInputMobile}}>
|
||||
</iframe>
|
||||
{{else}}
|
||||
<div class="amazon-product-links-label"><h2>ADVERTISEMENT</h2></div>
|
||||
<div class="amazon-product-links-label"><h2>{{i18n 'adplugin.advertisement_label'}}</h2></div>
|
||||
<div class="container" align="center">
|
||||
<iframe style={{adWrapperStyle}} marginwidth="0" marginheight="0" scrolling="no" frameborder="0" src={{userInput}}>
|
||||
</iframe>
|
||||
|
@ -0,0 +1,29 @@
|
||||
{{#if showAd}}
|
||||
{{#if site.mobileView}}
|
||||
{{#if displayPostBottom}}
|
||||
{{partial "components/codefund/post-bottom"}}
|
||||
{{/if}}
|
||||
{{#if displayTopicAbovePostStream}}
|
||||
{{partial "components/codefund/topic-above-post-stream"}}
|
||||
{{/if}}
|
||||
{{#if displayTopicAboveSuggested}}
|
||||
{{partial "components/codefund/topic-above-suggested"}}
|
||||
{{/if}}
|
||||
{{#if displayTopicListTop}}
|
||||
{{partial "components/codefund/topic-list-top"}}
|
||||
{{/if}}
|
||||
{{else}}
|
||||
{{#if displayPostBottom}}
|
||||
{{partial "components/codefund/post-bottom"}}
|
||||
{{/if}}
|
||||
{{#if displayTopicAbovePostStream}}
|
||||
{{partial "components/codefund/topic-above-post-stream"}}
|
||||
{{/if}}
|
||||
{{#if displayTopicAboveSuggested}}
|
||||
{{partial "components/codefund/topic-above-suggested"}}
|
||||
{{/if}}
|
||||
{{#if displayTopicListTop}}
|
||||
{{partial "components/codefund/topic-list-top"}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{/if}}
|
@ -0,0 +1,8 @@
|
||||
<span class="codefund-wrapper codefund-post-bottom">
|
||||
<a href="{{adDetails.link}}" class="codefund-text" target="_blank" rel="noopener">
|
||||
{{#if siteSettings.codefund_display_advertiser_labels}}
|
||||
<span class="codefund-label">{{siteSettings.codefund_advertiser_short_label}}</span>
|
||||
{{/if}}
|
||||
<strong>{{adDetails.headline}}</strong> {{adDetails.description}}
|
||||
</a>
|
||||
</span>
|
@ -0,0 +1,11 @@
|
||||
<span class="codefund-wrapper codefund-topic-above-post-stream">
|
||||
<a href="{{adDetails.link}}" class="codefund-text" target="_blank" rel="noopener">
|
||||
{{#if siteSettings.codefund_display_advertiser_labels}}
|
||||
<span class="codefund-label">{{siteSettings.codefund_advertiser_label}}</span>
|
||||
{{/if}}
|
||||
<strong>{{adDetails.headline}}</strong> {{adDetails.description}}
|
||||
</a>
|
||||
<a href={{adDetails.poweredByLink}} class="codefund-powered-by" target="_blank" rel="noopener">
|
||||
ads via codefund.io
|
||||
</a>
|
||||
</span>
|
@ -0,0 +1,11 @@
|
||||
<span class="codefund-wrapper codefund-topic-above-suggested">
|
||||
<a href="{{adDetails.link}}" class="codefund-text" target="_blank" rel="noopener">
|
||||
{{#if siteSettings.codefund_display_advertiser_labels}}
|
||||
<span class="codefund-label">{{siteSettings.codefund_advertiser_label}}</span>
|
||||
{{/if}}
|
||||
<strong>{{adDetails.headline}}</strong> {{adDetails.description}}
|
||||
</a>
|
||||
<a href={{adDetails.poweredByLink}} class="codefund-powered-by" target="_blank" rel="noopener">
|
||||
ads via codefund.io
|
||||
</a>
|
||||
</span>
|
@ -0,0 +1,11 @@
|
||||
<span class="codefund-wrapper codefund-topic-list-top">
|
||||
<a href="{{adDetails.link}}" class="codefund-text" target="_blank" rel="noopener">
|
||||
{{#if siteSettings.codefund_display_advertiser_labels}}
|
||||
<span class="codefund-label">{{siteSettings.codefund_advertiser_label}}</span>
|
||||
{{/if}}
|
||||
<strong>{{adDetails.headline}}</strong> {{adDetails.description}}
|
||||
</a>
|
||||
<a href={{adDetails.poweredByLink}} class="codefund-powered-by" target="_blank" rel="noopener">
|
||||
ads via codefund.io
|
||||
</a>
|
||||
</span>
|
@ -1,5 +1,5 @@
|
||||
{{#if showAd}}
|
||||
<div class="google-adsense-label"><h2>ADVERTISEMENT</h2></div>
|
||||
<div class="google-adsense-label"><h2>{{i18n 'adplugin.advertisement_label'}}</h2></div>
|
||||
<div class="google-adsense-content" style={{adWrapperStyle}}>
|
||||
<ins class="adsbygoogle"
|
||||
style={{adInsStyle}}
|
||||
|
@ -1,9 +1,9 @@
|
||||
{{#if showAd}}
|
||||
{{#if site.mobileView}}
|
||||
<div class="google-dfp-ad-label" style={{adTitleStyleMobile}}><h2>ADVERTISEMENT</h2></div>
|
||||
<div class="google-dfp-ad-label" style={{adTitleStyleMobile}}><h2>{{i18n 'adplugin.advertisement_label'}}</h2></div>
|
||||
<div id={{divId}} style={{adWrapperStyle}} class="dfp-ad-unit" align=center></div>
|
||||
{{else}}
|
||||
<div class="google-dfp-ad-label"><h2>ADVERTISEMENT</h2></div>
|
||||
<div class="google-dfp-ad-label"><h2>{{i18n 'adplugin.advertisement_label'}}</h2></div>
|
||||
<div id={{divId}} style={{adWrapperStyle}} class="dfp-ad-unit" align=center></div>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
@ -3,19 +3,25 @@
|
||||
{{google-adsense placement="topic-list-top" listLoading=listLoading}}
|
||||
{{/if}}
|
||||
{{#if siteSettings.dfp_mobile_topic_list_top_code}}
|
||||
{{google-dfp-ad placement="topic-list-top" refreshOnChange=loading category=category.slug listLoading=listLoading}}
|
||||
{{google-dfp-ad placement="topic-list-top" refreshOnChange=listLoading category=category.slug listLoading=listLoading}}
|
||||
{{/if}}
|
||||
{{#if siteSettings.amazon_mobile_topic_list_top_src_code}}
|
||||
{{amazon-product-links placement="topic-list-top" listLoading=listLoading}}
|
||||
{{/if}}
|
||||
{{#if siteSettings.codefund_top_of_topic_list_enabled}}
|
||||
{{codefund-ad placement="topic-list-top" listLoading=listLoading refreshOnChange=listLoading}}
|
||||
{{/if}}
|
||||
{{else}}
|
||||
{{#if siteSettings.adsense_topic_list_top_code}}
|
||||
{{google-adsense placement="topic-list-top" listLoading=listLoading}}
|
||||
{{/if}}
|
||||
{{#if siteSettings.dfp_topic_list_top_code}}
|
||||
{{google-dfp-ad placement="topic-list-top" refreshOnChange=loading category=category.slug listLoading=listLoading}}
|
||||
{{google-dfp-ad placement="topic-list-top" refreshOnChange=listLoading category=category.slug listLoading=listLoading}}
|
||||
{{/if}}
|
||||
{{#if siteSettings.amazon_topic_list_top_src_code}}
|
||||
{{amazon-product-links placement="topic-list-top" listLoading=listLoading}}
|
||||
{{/if}}
|
||||
{{#if siteSettings.codefund_top_of_topic_list_enabled}}
|
||||
{{codefund-ad placement="topic-list-top" listLoading=listLoading refreshOnChange=listLoading}}
|
||||
{{/if}}
|
||||
{{/if}}
|
@ -8,6 +8,9 @@
|
||||
{{#if siteSettings.amazon_mobile_topic_above_post_stream_src_code}}
|
||||
{{amazon-product-links placement="topic-above-post-stream"}}
|
||||
{{/if}}
|
||||
{{#if siteSettings.codefund_above_post_stream_enabled}}
|
||||
{{codefund-ad placement="topic-above-post-stream"}}
|
||||
{{/if}}
|
||||
{{else}}
|
||||
{{#if siteSettings.adsense_topic_above_post_stream_code}}
|
||||
{{google-adsense placement="topic-above-post-stream"}}
|
||||
@ -18,4 +21,7 @@
|
||||
{{#if siteSettings.amazon_topic_above_post_stream_src_code}}
|
||||
{{amazon-product-links placement="topic-above-post-stream"}}
|
||||
{{/if}}
|
||||
{{#if siteSettings.codefund_above_post_stream_enabled}}
|
||||
{{codefund-ad placement="topic-above-post-stream"}}
|
||||
{{/if}}
|
||||
{{/if}}
|
@ -8,6 +8,9 @@
|
||||
{{#if siteSettings.amazon_mobile_topic_above_suggested_src_code}}
|
||||
{{amazon-product-links placement="topic-above-suggested"}}
|
||||
{{/if}}
|
||||
{{#if siteSettings.codefund_above_suggested_enabled}}
|
||||
{{codefund-ad placement="topic-above-suggested"}}
|
||||
{{/if}}
|
||||
{{else}}
|
||||
{{#if siteSettings.adsense_topic_above_suggested_code}}
|
||||
{{google-adsense placement="topic-above-suggested"}}
|
||||
@ -18,4 +21,7 @@
|
||||
{{#if siteSettings.amazon_topic_above_suggested_src_code}}
|
||||
{{amazon-product-links placement="topic-above-suggested"}}
|
||||
{{/if}}
|
||||
{{#if siteSettings.codefund_above_suggested_enabled}}
|
||||
{{codefund-ad placement="topic-above-suggested"}}
|
||||
{{/if}}
|
||||
{{/if}}
|
@ -1,5 +1,7 @@
|
||||
import PostModel from 'discourse/models/post';
|
||||
import { withPluginApi } from 'discourse/lib/plugin-api';
|
||||
import {
|
||||
withPluginApi
|
||||
} from 'discourse/lib/plugin-api';
|
||||
|
||||
export default {
|
||||
name: 'initialize-ad-plugin',
|
||||
@ -19,6 +21,10 @@ export default {
|
||||
return this.isNthPost(parseInt(siteSettings.amazon_nth_post_code));
|
||||
}.property('post_number'),
|
||||
|
||||
postSpecificCountCodeFund: function() {
|
||||
return this.isNthPost(parseInt(siteSettings.codefund_nth_post));
|
||||
}.property('post_number'),
|
||||
|
||||
isNthPost: function(n) {
|
||||
if (n && n > 0) {
|
||||
return (this.get('post_number') % n) === 0;
|
||||
@ -32,7 +38,10 @@ export default {
|
||||
api.decorateWidget('post:after', dec => {
|
||||
|
||||
if (dec.canConnectComponent) {
|
||||
return dec.connect({ component: 'adplugin-container', context: 'model' });
|
||||
return dec.connect({
|
||||
component: 'adplugin-container',
|
||||
context: 'model'
|
||||
});
|
||||
}
|
||||
|
||||
// Old way for backwards compatibility
|
||||
|
8
config/locales/client.bg.yml
Normal file
8
config/locales/client.bg.yml
Normal file
@ -0,0 +1,8 @@
|
||||
# encoding: utf-8
|
||||
#
|
||||
# Never edit this file. It will be overwritten when translations are pulled from Transifex.
|
||||
#
|
||||
# To work with us on translations, join this project:
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
bg: {}
|
8
config/locales/client.ca.yml
Normal file
8
config/locales/client.ca.yml
Normal file
@ -0,0 +1,8 @@
|
||||
# encoding: utf-8
|
||||
#
|
||||
# Never edit this file. It will be overwritten when translations are pulled from Transifex.
|
||||
#
|
||||
# To work with us on translations, join this project:
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
ca: {}
|
@ -6,6 +6,9 @@
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
cs:
|
||||
js:
|
||||
adplugin:
|
||||
advertisement_label: 'REKLAMA'
|
||||
admin_js:
|
||||
admin:
|
||||
site_settings:
|
||||
|
@ -6,6 +6,9 @@
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
da:
|
||||
js:
|
||||
adplugin:
|
||||
advertisement_label: 'REKLAME'
|
||||
admin_js:
|
||||
admin:
|
||||
site_settings:
|
||||
|
@ -6,6 +6,9 @@
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
de:
|
||||
js:
|
||||
adplugin:
|
||||
advertisement_label: 'WERBUNG'
|
||||
admin_js:
|
||||
admin:
|
||||
site_settings:
|
||||
|
@ -1,4 +1,7 @@
|
||||
en:
|
||||
js:
|
||||
adplugin:
|
||||
advertisement_label: 'ADVERTISEMENT'
|
||||
admin_js:
|
||||
admin:
|
||||
site_settings:
|
||||
@ -6,3 +9,4 @@ en:
|
||||
dfp_plugin: 'DFP'
|
||||
adsense_plugin: 'Adsense'
|
||||
amazon_plugin: 'Amazon'
|
||||
codefund_plugin: 'CodeFund'
|
@ -6,6 +6,9 @@
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
es:
|
||||
js:
|
||||
adplugin:
|
||||
advertisement_label: 'ANUNCIO'
|
||||
admin_js:
|
||||
admin:
|
||||
site_settings:
|
||||
|
@ -6,6 +6,9 @@
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
et:
|
||||
js:
|
||||
adplugin:
|
||||
advertisement_label: 'REKLAAM'
|
||||
admin_js:
|
||||
admin:
|
||||
site_settings:
|
||||
|
@ -6,6 +6,9 @@
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
fi:
|
||||
js:
|
||||
adplugin:
|
||||
advertisement_label: 'MAINOS'
|
||||
admin_js:
|
||||
admin:
|
||||
site_settings:
|
||||
|
@ -6,6 +6,9 @@
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
fr:
|
||||
js:
|
||||
adplugin:
|
||||
advertisement_label: 'PUBLICITE'
|
||||
admin_js:
|
||||
admin:
|
||||
site_settings:
|
||||
|
@ -6,6 +6,9 @@
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
he:
|
||||
js:
|
||||
adplugin:
|
||||
advertisement_label: 'פרסום'
|
||||
admin_js:
|
||||
admin:
|
||||
site_settings:
|
||||
|
@ -6,6 +6,9 @@
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
it:
|
||||
js:
|
||||
adplugin:
|
||||
advertisement_label: 'ANNUNCIO'
|
||||
admin_js:
|
||||
admin:
|
||||
site_settings:
|
||||
|
@ -6,10 +6,13 @@
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
nb_NO:
|
||||
js:
|
||||
adplugin:
|
||||
advertisement_label: 'REKLAME'
|
||||
admin_js:
|
||||
admin:
|
||||
site_settings:
|
||||
categories:
|
||||
dfp_plugin: 'DFP'
|
||||
adsense_plugin: 'AdSense'
|
||||
adsense_plugin: 'Adsense'
|
||||
amazon_plugin: 'Amazon'
|
||||
|
@ -6,6 +6,9 @@
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
pt:
|
||||
js:
|
||||
adplugin:
|
||||
advertisement_label: 'Publicidade'
|
||||
admin_js:
|
||||
admin:
|
||||
site_settings:
|
||||
|
@ -5,4 +5,14 @@
|
||||
# To work with us on translations, join this project:
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
ro: {}
|
||||
ro:
|
||||
js:
|
||||
adplugin:
|
||||
advertisement_label: 'PUBLICITATE'
|
||||
admin_js:
|
||||
admin:
|
||||
site_settings:
|
||||
categories:
|
||||
dfp_plugin: 'DFP'
|
||||
adsense_plugin: 'Adsense'
|
||||
amazon_plugin: 'Amazon'
|
||||
|
@ -6,6 +6,9 @@
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
sk:
|
||||
js:
|
||||
adplugin:
|
||||
advertisement_label: 'REKLAMA'
|
||||
admin_js:
|
||||
admin:
|
||||
site_settings:
|
||||
|
11
config/locales/client.sl.yml
Normal file
11
config/locales/client.sl.yml
Normal file
@ -0,0 +1,11 @@
|
||||
# encoding: utf-8
|
||||
#
|
||||
# Never edit this file. It will be overwritten when translations are pulled from Transifex.
|
||||
#
|
||||
# To work with us on translations, join this project:
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
sl:
|
||||
js:
|
||||
adplugin:
|
||||
advertisement_label: 'OGLAS'
|
8
config/locales/client.sr.yml
Normal file
8
config/locales/client.sr.yml
Normal file
@ -0,0 +1,8 @@
|
||||
# encoding: utf-8
|
||||
#
|
||||
# Never edit this file. It will be overwritten when translations are pulled from Transifex.
|
||||
#
|
||||
# To work with us on translations, join this project:
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
sr: {}
|
@ -5,4 +5,9 @@
|
||||
# To work with us on translations, join this project:
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
sv: {}
|
||||
sv:
|
||||
admin_js:
|
||||
admin:
|
||||
site_settings:
|
||||
categories:
|
||||
amazon_plugin: 'Amazon'
|
||||
|
@ -5,4 +5,14 @@
|
||||
# To work with us on translations, join this project:
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
ur: {}
|
||||
ur:
|
||||
js:
|
||||
adplugin:
|
||||
advertisement_label: 'اشتہار'
|
||||
admin_js:
|
||||
admin:
|
||||
site_settings:
|
||||
categories:
|
||||
dfp_plugin: 'DFP'
|
||||
adsense_plugin: 'ایڈسینس'
|
||||
amazon_plugin: 'اَیمَیزَون'
|
||||
|
@ -5,4 +5,7 @@
|
||||
# To work with us on translations, join this project:
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
vi: {}
|
||||
vi:
|
||||
js:
|
||||
adplugin:
|
||||
advertisement_label: 'QUẢNG CÁO'
|
||||
|
@ -6,6 +6,9 @@
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
zh_CN:
|
||||
js:
|
||||
adplugin:
|
||||
advertisement_label: '广告'
|
||||
admin_js:
|
||||
admin:
|
||||
site_settings:
|
||||
|
@ -17,20 +17,17 @@ ar:
|
||||
dfp_target_topic_list_top_value_code: "ادخل قيم الاستهداف المخصصة - مستوى المخزون"
|
||||
dfp_topic_above_post_stream_code: "ضع الشفرة الخاصة للوحدة الاعلانية لكي تظهر فوق عنوان الموضوع في صفحة الموضوع, هذه شفرة قصيرة( اقصى 100 حرف) تم اعطائها للوحدة الاعلانية حين تم انشائها, ليست شفرة نص جافا."
|
||||
dfp_topic_above_post_stream_ad_sizes: "اختر حجم وحدتك الاعلانية فوق صفحة الموضوع."
|
||||
dfp_mobile_topic_above_post_stream_code: "ضع الشفرة الخاصة للوحدة الاعلانية لكي تظهر فوق عنوان الموضوع في صفحة الموضوع في الهاتف المحمول, هذه شفرة قصيرة( اقصى 100 حرف) تم اعطائها للوحدة الاعلانية حين تم انشائها, ليست شفرة نص جافا."
|
||||
dfp_mobile_topic_above_post_stream_ad_sizes: "اختر حجم وحدتك الاعلانية فوق صفحة الموضوع في الهاتف المحمول."
|
||||
dfp_target_topic_above_post_stream_key_code: "ادخل مفاتيح الاستهداف المخصص - مستوى المخزون"
|
||||
dfp_target_topic_above_post_stream_value_code: "ادخل قيم الاستهداف المخصصة - مستوى المخزون"
|
||||
dfp_topic_above_suggested_code: "ضع الشفرة الخاصة للوحدة الاعلانية لكي تظهر بعد المنشور الاخير فوق المواضيع المقترحة, هذه شفرة قصيرة( اقصى 100 حرف) تم اعطائها للوحدة الاعلانية حين تم انشائها, ليست شفرة نص جافا."
|
||||
dfp_topic_above_suggested_ad_sizes: "اختر حجم وحدتك الاعلانية بعد اخر منشور في الموضوع."
|
||||
dfp_mobile_topic_above_suggested_code: "ضع الشفرة الخاصة للوحدة الاعلانية لكي تظهر بعد المنشور الاخير فوق المواضيع المقترحة, هذه شفرة قصيرة( اقصى 100 حرف) تم اعطائها للوحدة الاعلانية حين تم انشائها, ليست شفرة نص جافا."
|
||||
dfp_mobile_topic_above_suggested_ad_sizes: "اختر حجم وحدتك الاعلانية بعد اخر منشور في الموضوع في الهاتف المحمول."
|
||||
dfp_target_topic_above_suggested_key_code: "ادخل مفاتيح الاستهداف المخصص - مستوى المخزون"
|
||||
dfp_target_topic_above_suggested_value_code: "ادخل قيم الاستهداف المخصصة - مستوى المخزون"
|
||||
dfp_nth_post_code: "اظهر الاعلان بعد كل N منشور, حيث ان N هي القيمة."
|
||||
dfp_post_bottom_code: "ضع الشفرة الخاصة للوحدة الاعلانية لكي بين المنشورات بعد nth منشور , هذه شفرة قصيرة( اقصى 100 حرف) تم اعطائها للوحدة الاعلانية حين تم انشائها, ليست شفرة نص جافا."
|
||||
dfp_post_bottom_ad_sizes: "اختر حجم مساحتك العلانية لتظهر بين المشنورات."
|
||||
dfp_mobile_post_bottom_code: "ضع الشفرة الخاصة للوحدة الاعلانية لكي بين المنشورات بعد nth منشور في الهاتف المحمول, هذه شفرة قصيرة( اقصى 100 حرف) تم اعطائها للوحدة الاعلانية حين تم انشائها, ليست شفرة نص جافا."
|
||||
dfp_mobile_post_bottom_ad_sizes: "اختر حجم مساحتك العلانية لتظهر بين المشنورات في الهاتف المحمول."
|
||||
dfp_target_post_bottom_key_code: "ادخل مفاتيح الاستهداف المخصص - مستوى المخزون"
|
||||
dfp_target_post_bottom_value_code: "ادخل قيم الاستهداف المخصصة - مستوى المخزون"
|
||||
|
8
config/locales/server.bg.yml
Normal file
8
config/locales/server.bg.yml
Normal file
@ -0,0 +1,8 @@
|
||||
# encoding: utf-8
|
||||
#
|
||||
# Never edit this file. It will be overwritten when translations are pulled from Transifex.
|
||||
#
|
||||
# To work with us on translations, join this project:
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
bg: {}
|
8
config/locales/server.ca.yml
Normal file
8
config/locales/server.ca.yml
Normal file
@ -0,0 +1,8 @@
|
||||
# encoding: utf-8
|
||||
#
|
||||
# Never edit this file. It will be overwritten when translations are pulled from Transifex.
|
||||
#
|
||||
# To work with us on translations, join this project:
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
ca: {}
|
@ -15,14 +15,11 @@ cs:
|
||||
dfp_mobile_topic_list_top_ad_sizes: "Zvolte velikost reklamy pro reklamní jednotku nad seznamem témat při mobilním zobrazení."
|
||||
dfp_topic_above_post_stream_code: "Zadejte unikátní kód reklamní jednotky pro zobrazení nad názvem tématu na stránce tématu. Toto je krátký kód (max 100 znaků), přiřazený reklamní jednotce, když byla vytvořena, ne JavaScript kód."
|
||||
dfp_topic_above_post_stream_ad_sizes: "Vyberte velikost reklamy pro reklamní jednotku nahoře na stránce tématu."
|
||||
dfp_mobile_topic_above_post_stream_code: "Zadejte unikátní kód reklamní jednotky pro zobrazení nad názvem tématu na stránce tématu, na mobilu. Toto je krátký kód (max 100 znaků) přiřazený reklamní jednotce, když byla vytvořena, ne JavaScript kód."
|
||||
dfp_mobile_topic_above_post_stream_ad_sizes: "Zvolte velikost reklamy pro reklamní jednotku nahoře na stránce témat při zobrazení na mobilu."
|
||||
dfp_topic_above_suggested_code: "Zadejte unikátní kód reklamní jednotky pro zobrazení po posledním příspěvku v tématu, nad navrhovanými tématy. Toto je krátký kód (max 100 znaků) přiřazený reklamní jednotce, když byla vytvořena, ne JavaScript kód."
|
||||
dfp_topic_above_suggested_ad_sizes: "Zvolte velikost reklamy pro reklamní jednotku po posledním příspěvku v tématu."
|
||||
dfp_mobile_topic_above_suggested_code: "Zadejte unikátní kód reklamní jednotky pro zobrazení po posledním příspěvku v tématu, nad navrhovanými tématy. Toto je krátký kód (max 100 znaků) přiřazený reklamní jednotce, když byla vytvořena, ne JavaScript kód."
|
||||
dfp_mobile_topic_above_suggested_ad_sizes: "Zvolte si velikost reklamy pro reklamní jednotku po posledním příspěvku v tématu při mobilním zobrazení."
|
||||
dfp_nth_post_code: "Zobrazit reklamu po každém N-tém příspěvku, kde N je tato hodnota."
|
||||
dfp_post_bottom_code: "Zadejte unikátní kód reklamní jednotky pro zobrazení mezi příspěvky po každém n-tém příspěvku. Toto je krátký kód (max 100 znaků) přiřazený reklamní jednotce, když byla vytvořena, ne JavaScript kód."
|
||||
dfp_post_bottom_ad_sizes: "Zvolte si velikost reklamy pro reklamní jednotku zobrazovanou mezi příspěvky."
|
||||
dfp_mobile_post_bottom_code: "Zadejte unikátní kód reklamní jednotky pro zobrazení mezi příspěvky po každém n-tém příspěvku na mobilním zařízení. Toto je krátký kód (max 100 znaků) přiřazený reklamní jednotce, když byla vytvořena, ne JavaScript kód."
|
||||
dfp_mobile_post_bottom_ad_sizes: "Zvolte si velikost reklamy pro reklamní jednotku zobrazovanou mezi příspěvky při mobilním zobrazení."
|
||||
|
@ -17,20 +17,17 @@ el:
|
||||
dfp_target_topic_list_top_value_code: "Input custom targeting values - inventory Level"
|
||||
dfp_topic_above_post_stream_code: "Enter the unique Code of the ad unit to display above the title of a topic on the topic page. This is the short code (max 100 chars) given to the ad unit when it was created, not the JavaScript code."
|
||||
dfp_topic_above_post_stream_ad_sizes: "Choose your ad size for the ad unit at the top of the topic page."
|
||||
dfp_mobile_topic_above_post_stream_code: "Enter the unique Code of the ad unit to display above the title of a topic on the topic page on mobile. This is the short code (max 100 chars) given to the ad unit when it was created, not the JavaScript code."
|
||||
dfp_mobile_topic_above_post_stream_ad_sizes: "Choose your ad size for the ad unit at the top of the topic page on mobile view."
|
||||
dfp_target_topic_above_post_stream_key_code: "Input custom targeting keys - inventory Level"
|
||||
dfp_target_topic_above_post_stream_value_code: "Input custom targeting values - inventory Level"
|
||||
dfp_topic_above_suggested_code: "Enter the unique Code of the ad unit to display after the last post in a topic, above the suggested topics. This is the short code (max 100 chars) given to the ad unit when it was created, not the JavaScript code."
|
||||
dfp_topic_above_suggested_ad_sizes: "Choose your ad size for the ad unit after the last post in a topic."
|
||||
dfp_mobile_topic_above_suggested_code: "Enter the unique Code of the ad unit to display after the last post in a topic, above the suggested topics. This is the short code (max 100 chars) given to the ad unit when it was created, not the JavaScript code."
|
||||
dfp_mobile_topic_above_suggested_ad_sizes: "Choose your ad size for the ad unit after the last post in a topic on mobile view."
|
||||
dfp_target_topic_above_suggested_key_code: "Input custom targeting keys - inventory Level"
|
||||
dfp_target_topic_above_suggested_value_code: "Input custom targeting values - inventory Level"
|
||||
dfp_nth_post_code: "Show an ad after every N posts, where N is this value."
|
||||
dfp_post_bottom_code: "Enter the unique Code of the ad unit to display in between posts after every nth post. This is the short code (max 100 chars) given to the ad unit when it was created, not the JavaScript code."
|
||||
dfp_post_bottom_ad_sizes: "Choose your ad size for the ad unit shown in between posts."
|
||||
dfp_mobile_post_bottom_code: "Enter the unique Code of the ad unit to display in between posts after every nth post on mobile. This is the short code (max 100 chars) given to the ad unit when it was created, not the JavaScript code."
|
||||
dfp_mobile_post_bottom_ad_sizes: "Choose your ad size for the ad unit shown in between posts on mobile view."
|
||||
dfp_target_post_bottom_key_code: "Input custom targeting keys - inventory Level"
|
||||
dfp_target_post_bottom_value_code: "Input custom targeting values - inventory Level"
|
||||
|
@ -12,14 +12,14 @@ en:
|
||||
|
||||
dfp_topic_above_post_stream_code: "Enter the unique Code of the ad unit to display above the title of a topic on the topic page. This is the short code (max 100 chars) given to the ad unit when it was created, not the JavaScript code."
|
||||
dfp_topic_above_post_stream_ad_sizes: "Choose your ad size for the ad unit at the top of the topic page."
|
||||
dfp_mobile_topic_above_post_stream_code: "Enter the unique Code of the ad unit to display above the title of a topic on the topic page on mobile. This is the short code (max 100 chars) given to the ad unit when it was created, not the JavaScript code."
|
||||
dfp_mobile_topic_above_post_stream_code: "Enter the unique Code of the ad unit to display above the title of a topic on the topic page on mobile view. This is the short code (max 100 chars) given to the ad unit when it was created, not the JavaScript code."
|
||||
dfp_mobile_topic_above_post_stream_ad_sizes: "Choose your ad size for the ad unit at the top of the topic page on mobile view."
|
||||
dfp_target_topic_above_post_stream_key_code: "Input custom targeting keys - inventory Level"
|
||||
dfp_target_topic_above_post_stream_value_code: "Input custom targeting values - inventory Level"
|
||||
|
||||
dfp_topic_above_suggested_code: "Enter the unique Code of the ad unit to display after the last post in a topic, above the suggested topics. This is the short code (max 100 chars) given to the ad unit when it was created, not the JavaScript code."
|
||||
dfp_topic_above_suggested_ad_sizes: "Choose your ad size for the ad unit after the last post in a topic."
|
||||
dfp_mobile_topic_above_suggested_code: "Enter the unique Code of the ad unit to display after the last post in a topic, above the suggested topics. This is the short code (max 100 chars) given to the ad unit when it was created, not the JavaScript code."
|
||||
dfp_mobile_topic_above_suggested_code: "Enter the unique Code of the ad unit to display after the last post in a topic, above the suggested topics on mobile view. This is the short code (max 100 chars) given to the ad unit when it was created, not the JavaScript code."
|
||||
dfp_mobile_topic_above_suggested_ad_sizes: "Choose your ad size for the ad unit after the last post in a topic on mobile view."
|
||||
dfp_target_topic_above_suggested_key_code: "Input custom targeting keys - inventory Level"
|
||||
dfp_target_topic_above_suggested_value_code: "Input custom targeting values - inventory Level"
|
||||
@ -27,7 +27,7 @@ en:
|
||||
dfp_nth_post_code: "Show an ad after every N posts, where N is this value."
|
||||
dfp_post_bottom_code: "Enter the unique Code of the ad unit to display in between posts after every nth post. This is the short code (max 100 chars) given to the ad unit when it was created, not the JavaScript code."
|
||||
dfp_post_bottom_ad_sizes: "Choose your ad size for the ad unit shown in between posts."
|
||||
dfp_mobile_post_bottom_code: "Enter the unique Code of the ad unit to display in between posts after every nth post on mobile. This is the short code (max 100 chars) given to the ad unit when it was created, not the JavaScript code."
|
||||
dfp_mobile_post_bottom_code: "Enter the unique Code of the ad unit to display in between posts after every nth post on mobile view. This is the short code (max 100 chars) given to the ad unit when it was created, not the JavaScript code."
|
||||
dfp_mobile_post_bottom_ad_sizes: "Choose your ad size for the ad unit shown in between posts on mobile view."
|
||||
dfp_target_post_bottom_key_code: "Input custom targeting keys - inventory Level"
|
||||
dfp_target_post_bottom_value_code: "Input custom targeting values - inventory Level"
|
||||
@ -78,3 +78,14 @@ en:
|
||||
amazon_mobile_post_bottom_ad_width_code: "Input your ad width (mobile)"
|
||||
amazon_mobile_post_bottom_ad_height_code: "Input your ad height (mobile)"
|
||||
amazon_nth_post_code: "Show an ad after every N posts, where N is this value."
|
||||
|
||||
codefund_property_id: "Your CodeFund property ID"
|
||||
codefund_advertiser_label: "Label that appears before the advertisement (e.g. Advertiser or Supporter)"
|
||||
codefund_advertiser_short_label: "Abbreviated label that appears before the advertisement (e.g. Ad)"
|
||||
codefund_display_advertiser_labels: "Show the advertiser label (e.g. 'Advertiser') on the ads"
|
||||
codefund_through_trust_level: "Show your ads to users based on trust levels. Users with trust level higher than this value will not see ads"
|
||||
codefund_nth_post: "Show an ad after every N posts, where N is this value"
|
||||
codefund_below_post_enabled: "Show an ad below each post"
|
||||
codefund_above_post_stream_enabled: "Show an ad above the post stream"
|
||||
codefund_above_suggested_enabled: "Show an ad above the suggested topic list"
|
||||
codefund_top_of_topic_list_enabled: "Show an ad above the topic list"
|
||||
|
@ -10,27 +10,27 @@ es:
|
||||
dfp_publisher_id: "Ingrese su network code, que podes encontrar en la configuración."
|
||||
dfp_through_trust_level: "Muestre sus anuncios a los usuarios basados en los niveles de confianza. Usuarios con un nivel de confianza elevado no verían anuncios."
|
||||
dfp_topic_list_top_code: "Ingrese su código único de anuncio para mostrar por encima de la lista de temas. Este es un código corto (max 100 caracteres) dado al anuncio cuando fue creado, no el código JavaScript."
|
||||
dfp_topic_list_top_ad_sizes: "Seleccione el tamaño de tu anuncio"
|
||||
dfp_mobile_topic_list_top_code: "Ingrese su código único del anuncio (móvil) para ver por encima de la lista de temas. Este es un código corto (max 100 caracteres) dado al anuncio cuando fue creado, no el código JavaScript."
|
||||
dfp_topic_list_top_ad_sizes: "Seleccione el tamaño de tu anuncio para el anuncio sobre la lista de temas."
|
||||
dfp_mobile_topic_list_top_code: "Ingrese su código único del anuncio para ver por encima de la lista de temas en la vista móvil. Este es un código corto (máx 100 caracteres) dado al anuncio cuando fue creado, no el código JavaScript."
|
||||
dfp_mobile_topic_list_top_ad_sizes: "Selecciona el tamaño de anuncios para ser mostrado arriba de la lista de temas o en la vista móvil."
|
||||
dfp_target_topic_list_top_key_code: "Llaves de entrada para la orientación personalizada en el nivel de inventario"
|
||||
dfp_target_topic_list_top_value_code: "Los valores de entrada para la orientación personalizada en el nivel de inventario"
|
||||
dfp_topic_above_post_stream_code: "Ingrese su código único de anuncio para mostrar en la página de los temas por encima de la relación de mensajes (posts). Este es un código corto (max 100 caracteres) dado al anuncio cuando fue creado, no el código JavaScript."
|
||||
dfp_topic_above_post_stream_ad_sizes: "Seleccione el tamaño de tu anuncio"
|
||||
dfp_mobile_topic_above_post_stream_code: "Ingrese su código único del anuncio (móvil) para ver en la página de los temas por encima de los posts. Este es un código corto (max 100 caracteres) dado al anuncio cuando fue creado, no el código JavaScript."
|
||||
dfp_mobile_topic_above_post_stream_ad_sizes: "Selecciona tu tamaño de anuncio para el top de la lista en versión móvil."
|
||||
dfp_topic_above_post_stream_code: "Ingrese su código único de anuncio para mostrarse arriba del título del tema en la página del tema. Este es un código corto (máx 100 caracteres) dado al anuncio cuando fue creado, no el código JavaScript."
|
||||
dfp_topic_above_post_stream_ad_sizes: "Seleccione el tamaño de tu anuncio para el anuncio en la parte superior de la página de temas."
|
||||
dfp_mobile_topic_above_post_stream_code: "Ingrese su código único de anuncio para mostrar por encima del título de un tema de la lista de temas en la vista del móvil. Este es un código corto (max 100 caracteres) dado al anuncio cuando fue creado, no el código JavaScript."
|
||||
dfp_mobile_topic_above_post_stream_ad_sizes: "Selecciona tu tamaño de anuncio para el top de la lista de temas en versión móvil."
|
||||
dfp_target_topic_above_post_stream_key_code: "Llaves de entrada para la orientación personalizada en el nivel de inventario"
|
||||
dfp_target_topic_above_post_stream_value_code: "Los valores de entrada para la orientación personalizada en el nivel de inventario"
|
||||
dfp_topic_above_suggested_code: "Ingrese su código de anuncio para mostrar por encima de temas sugeridos."
|
||||
dfp_topic_above_suggested_ad_sizes: "Seleccione el tamaño de tu anuncio"
|
||||
dfp_mobile_topic_above_suggested_code: "Ingrese su código del anuncio (móvil) para ver por encima de temas sugeridos."
|
||||
dfp_topic_above_suggested_code: "Ingrese su código de anuncio para mostrar después del último post en un tema, por encima de temas sugeridos. Este es un código corto (máx 100 caracteres) dado al anuncio cuando fue creado, no el código JavaScript."
|
||||
dfp_topic_above_suggested_ad_sizes: "Seleccione el tamaño de tu anuncio para el anuncio después del último post en un tema."
|
||||
dfp_mobile_topic_above_suggested_code: "Ingrese su código único de anuncio para mostrar después del último post en un tema, sobre la lista de temas sugeridos en la vista del móvil. Este es un código corto (max 100 caracteres) dado al anuncio cuando fue creado, no el código JavaScript."
|
||||
dfp_mobile_topic_above_suggested_ad_sizes: "Selecciona tu tamaño de anuncio para debajo de la lista en versión móvil."
|
||||
dfp_target_topic_above_suggested_key_code: "Llaves de entrada para la orientación personalizada en el nivel de inventario"
|
||||
dfp_target_topic_above_suggested_value_code: "Los valores de entrada para la orientación personalizada en el nivel de inventario"
|
||||
dfp_nth_post_code: "Elija un número de post para su anuncio; se mostrará al final de ese mensaje"
|
||||
dfp_post_bottom_code: "Ingrese su código único de anuncio para mostrar al final de un post. Este es un código corto (max 100 caracteres) dado al anuncio cuando fue creado, no el código JavaScript."
|
||||
dfp_post_bottom_code: "Ingrese su código único de anuncio para mostrar al final de un post. Este es un código corto (máx 100 caracteres) dado al anuncio cuando fue creado, no el código JavaScript."
|
||||
dfp_post_bottom_ad_sizes: "Seleccione el tamaño de tu anuncio entre posts."
|
||||
dfp_mobile_post_bottom_code: "Ingrese su código único del anuncio (móvil) para ver al final de un post. Este es un código corto (max 100 caracteres) dado al anuncio cuando fue creado, no el código JavaScript."
|
||||
dfp_mobile_post_bottom_code: "Ingrese su código único de anuncio para mostrar entre posts después de n posts en la vista del móvil. Este es un código corto (max 100 caracteres) dado al anuncio cuando fue creado, no el código JavaScript."
|
||||
dfp_mobile_post_bottom_ad_sizes: "Selecciona tu tamaño de anuncio para ser mostrado entre posts en la vista móvil."
|
||||
dfp_target_post_bottom_key_code: "Llaves de entrada para la orientación personalizada en el nivel de inventario"
|
||||
dfp_target_post_bottom_value_code: "Los valores de entrada para la orientación personalizada en el nivel de inventario"
|
||||
@ -39,19 +39,19 @@ es:
|
||||
adsense_topic_list_top_code: "Ingrese su código de anuncio para mostrar por encima de la lista de temas"
|
||||
adsense_mobile_topic_list_top_code: "Ingrese su código del anuncio (móvil) para ver por encima de la lista de temas"
|
||||
adsense_topic_list_top_ad_sizes: "Seleccione el tamaño de tu anuncio"
|
||||
adsense_mobile_topic_list_top_ad_size: "Selecciona el tamaño del anuncio"
|
||||
adsense_mobile_topic_list_top_ad_size: "Selecciona tamaño de anuncio"
|
||||
adsense_topic_above_post_stream_code: "Ingrese su código de anuncio para mostrar en la página de los temas por encima de la relación de posts"
|
||||
adsense_mobile_topic_above_post_stream_code: "Ingrese su código del anuncio (móvil) para ver en la página de los temas por encima de la relación de posts"
|
||||
adsense_topic_above_post_stream_ad_sizes: "Seleccione el tamaño de tu anuncio"
|
||||
adsense_mobile_topic_above_post_stream_ad_size: "Selecciona el tamaño del anuncio"
|
||||
adsense_mobile_topic_above_post_stream_ad_size: "Selecciona tamaño de anuncio"
|
||||
adsense_topic_above_suggested_code: "Ingrese su código de anuncio para mostrar por encima de temas sugeridos"
|
||||
adsense_mobile_topic_above_suggested_code: "Ingrese su código del anuncio (móvil) para ver por encima de temas sugeridos"
|
||||
adsense_topic_above_suggested_ad_sizes: "Seleccione el tamaño de tu anuncio"
|
||||
adsense_mobile_topic_above_suggested_ad_size: "Selecciona el tamaño del anuncio"
|
||||
adsense_mobile_topic_above_suggested_ad_size: "Selecciona tamaño de anuncio"
|
||||
adsense_post_bottom_code: "Ingrese su código de anuncio para mostrar al final de un post"
|
||||
adsense_mobile_post_bottom_code: "Ingrese su código del anuncio (móvil) para ver al final de un post"
|
||||
adsense_post_bottom_ad_sizes: "Seleccione el tamaño de tu anuncio"
|
||||
adsense_mobile_post_bottom_ad_size: "Selecciona el tamaño del anuncio"
|
||||
adsense_mobile_post_bottom_ad_size: "Selecciona tamaño de anuncio"
|
||||
adsense_nth_post_code: "Elija un número de post para su anuncio; se mostrará al final de ese mensaje"
|
||||
amazon_through_trust_level: "Muestre sus anuncios a los usuarios basados en los niveles de confianza"
|
||||
amazon_topic_list_top_src_code: "Ingrese su código SRC de anuncio para mostrar por encima de la lista de temas"
|
||||
|
@ -5,4 +5,16 @@
|
||||
# To work with us on translations, join this project:
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
et: {}
|
||||
et:
|
||||
site_settings:
|
||||
adsense_topic_list_top_ad_sizes: " reklaami suurus"
|
||||
adsense_mobile_topic_list_top_ad_size: "Vali oma reklaami suurus"
|
||||
adsense_topic_above_post_stream_ad_sizes: "Vali oma reklaami suurus"
|
||||
adsense_mobile_topic_above_post_stream_ad_size: "Vali oma reklaami suurus"
|
||||
adsense_topic_above_suggested_ad_sizes: "Vali oma reklaami suurus"
|
||||
adsense_mobile_topic_above_suggested_ad_size: "Vali oma reklaami suurus"
|
||||
adsense_post_bottom_ad_sizes: "Vali oma reklaami suurus"
|
||||
adsense_mobile_post_bottom_ad_size: "Vali oma reklaami suurus"
|
||||
amazon_topic_list_top_ad_height_code: "Sisesta oma reklaami kõrgus"
|
||||
amazon_topic_above_post_stream_ad_width_code: "Sisesta oma reklaami laius"
|
||||
amazon_topic_above_post_stream_ad_height_code: "Sisesta oma reklaami kõrgus"
|
||||
|
@ -15,9 +15,7 @@ fa_IR:
|
||||
dfp_mobile_topic_list_top_ad_sizes: "سایز تبلیغ خود را برای واحد تبلیغات بالای لیست مباحث در حالت موبایل انتخاب کنید."
|
||||
dfp_topic_above_post_stream_code: "کد منحصر بفرد واحد تبلیغ خود را وارد کنید تا بالای عنوان مبحث در صفحه مباحث نمایش داده شود. این کد، یک کد کوتاه (با حداکثر طول 100 کاراکتر) می باشد که هنگام ساختن واحد تبلیغ اختصاص داده شده است، کد جاوا اسکریپت نیست."
|
||||
dfp_topic_above_post_stream_ad_sizes: "سایز تبلیغ خود را برای واحد تبلیغات بالای صفحه مباحث انتخاب کنید."
|
||||
dfp_mobile_topic_above_post_stream_code: "کد منحصر بفرد واحد تبلیغ خود را وارد کنید تا بالای عنوان مبحث در صفحه مباحث در حالت موبایل نمایش داده شود. این کد، یک کد کوتاه (با حداکثر طول 100 کاراکتر) می باشد که هنگام ساختن واحد تبلیغ اختصاص داده شده است، کد جاوا اسکریپت نیست."
|
||||
dfp_mobile_topic_above_post_stream_ad_sizes: "سایز تبلیغ خود را برای واحد تبلیغات بالای صفحه مباحث در حالت موبایل انتخاب کنید."
|
||||
dfp_topic_above_suggested_code: "کد منحصر بفرد واحد تبلیغ خود را وارد کنید تا زیر آخرین نوشته در صفحه مباحث نمایش داده شود. این کد، یک کد کوتاه (با حداکثر طول 100 کاراکتر) می باشد که هنگام ساختن واحد تبلیغ اختصاص داده شده است، کد جاوا اسکریپت نیست."
|
||||
dfp_topic_above_suggested_ad_sizes: "سایز تبلیغ خود را برای واحد تبلیغات زیر آخرین نوشته در صفحه مباحث انتخاب کنید."
|
||||
dfp_mobile_topic_above_suggested_code: "کد منحصر بفرد واحد تبلیغ خود را وارد کنید تا زیر آخرین نوشته و بالای مباحث پیشنهادی در صفحه مباحث نمایش داده شود. این کد، یک کد کوتاه (با حداکثر طول 100 کاراکتر) می باشد که هنگام ساختن واحد تبلیغ اختصاص داده شده است، کد جاوا اسکریپت نیست."
|
||||
dfp_mobile_topic_above_suggested_ad_sizes: "سایز تبلیغ خود را برای واحد تبلیغات زیر آخرین نوشته در صفحه مباحث در حالت موبایل انتخاب کنید."
|
||||
|
@ -19,7 +19,7 @@ fi:
|
||||
dfp_mobile_topic_above_post_stream_ad_sizes: "Mobiilinäkymässä ketjusivun ylälaidassa näytettävän mainoksen koko."
|
||||
dfp_topic_above_suggested_code: "Ketjun viimeisimmän viestin jälkeen, ennen ketjusuosituksia näytettävän mainosyksikön yksilöllinen koodi. Kyseessä on lyhyt koodi (enint. 100 merkkiä), joka annetaan mainosyksikölle kun sitä luodaan. Ei JavaScript-koodi."
|
||||
dfp_topic_above_suggested_ad_sizes: "Ketjun viimeisimmän viestin jälkeen näytettävän mainoksen koko."
|
||||
dfp_mobile_topic_above_suggested_code: "Ketjun viimeisimmän viestin jälkeen, ennen ketjusuosituksia näytettävän mainosyksikön yksilöllinen koodi. Kyseessä on lyhyt koodi (enint. 100 merkkiä), joka annetaan mainosyksikölle kun sitä luodaan. Ei JavaScript-koodi."
|
||||
dfp_mobile_topic_above_suggested_code: "Mobiilinäkymässä ketjun viimeisimmän viestin jälkeen, ennen ketjusuosituksia näytettävän mainosyksikön yksilöllinen koodi. Kyseessä on lyhyt koodi (enint. 100 merkkiä), joka annetaan mainosyksikölle kun sitä luodaan. Ei JavaScript-koodi."
|
||||
dfp_mobile_topic_above_suggested_ad_sizes: "Mobiilinäkymässä ketjun viimeisimmän viestin jälkeen näytettävän mainoksen koko."
|
||||
dfp_nth_post_code: "Näytä mainos N viestin välein, missä N on syöttämäsi luku."
|
||||
dfp_post_bottom_code: "Joka n:nnen viestin jälkeen viestien välissä näytettävän mainosyksikön yksilöllinen koodi. Kyseessä on lyhyt koodi (enint. 100 merkkiä), joka annetaan mainosyksikölle kun sitä luodaan. Ei JavaScript-koodi."
|
||||
|
@ -7,45 +7,53 @@
|
||||
|
||||
fr:
|
||||
site_settings:
|
||||
dfp_publisher_id: "Votre code 'Référence éditeur'"
|
||||
dfp_through_trust_level: "Afficher les publicités aux utilisateurs en fonction de leurs niveaux de confiance"
|
||||
dfp_topic_list_top_code: "ID de la publicité pour l'emplacement au dessus de la liste des sujets"
|
||||
dfp_topic_list_top_ad_sizes: "Sélectionner des formats de publicité"
|
||||
dfp_mobile_topic_list_top_code: "ID de la publicité Mobile pour l'emplacement au dessus de la liste des sujets"
|
||||
dfp_publisher_id: "Saisir votre code réseau, qui se trouve dans vos paramètres réseau."
|
||||
dfp_through_trust_level: "Afficher les publicités aux utilisateurs en fonction de leurs niveaux de confiance. Les utilisateurs avec un niveau de confiance supérieur à celui-ci ne verront pas de publicité."
|
||||
dfp_topic_list_top_code: "Saisir le Code unique de l'unité de publicité à afficher au dessus de la liste des sujets. Ceci est un code court (100 caractères maximum) attribué à l'unité de publicité à sa création, et non un code JavaScript. "
|
||||
dfp_topic_list_top_ad_sizes: "Choisir le format de publicité pour l'unité de publicité au-dessus des listes de sujet."
|
||||
dfp_mobile_topic_list_top_code: "Saisir le Code unique de l'unité de publicité à afficher au dessus de la liste des sujets en vue mobile. Ceci est un code court (100 caractères maximum) attribué à l'unité de publicité à sa création, et non un code JavaScript. "
|
||||
dfp_mobile_topic_list_top_ad_sizes: "Choisir le format de publicité pour l'unité de publicité au-dessus des listes de sujet en mode portable."
|
||||
dfp_target_topic_list_top_key_code: "Entrez vos clés pour le ciblage personnalisé - niveau des stocks"
|
||||
dfp_target_topic_list_top_value_code: "Entrez vos valeurs pour le ciblage personnalisé - niveau des stocks"
|
||||
dfp_topic_above_post_stream_code: "ID de la publicité pour l'emplacement sur la page de sujet ci-dessus tous les messages"
|
||||
dfp_topic_above_post_stream_ad_sizes: "Sélectionner des formats de publicité"
|
||||
dfp_mobile_topic_above_post_stream_code: "ID de la publicité Mobile pour l'emplacement sur la page de sujet ci-dessus tous les messages"
|
||||
dfp_topic_above_post_stream_code: "Saisir le Code unique de l'unité de publicité à afficher au dessus du titre d'un sujet sur la page sujet. Ceci est un code court (100 caractères maximum) attribué à l'unité de publicité à sa création, et non un code JavaScript."
|
||||
dfp_topic_above_post_stream_ad_sizes: "Choisir la taille de l'unité de publicité affiché en haut des pages sujet."
|
||||
dfp_mobile_topic_above_post_stream_code: "Saisir le Code unique de l'unité de publicité à afficher au dessus du titre d'un sujet sur la page sujet en vue mobile. Ceci est un code court (100 caractères maximum) attribué à l'unité de publicité à sa création, et non un code JavaScript."
|
||||
dfp_mobile_topic_above_post_stream_ad_sizes: "Choisir la taille de l'unité de publicité affiché en haut des pages sujet en vue mobile."
|
||||
dfp_target_topic_above_post_stream_key_code: "Entrez vos clés pour le ciblage personnalisé - niveau des stocks"
|
||||
dfp_target_topic_above_post_stream_value_code: "Entrez vos valeurs pour le ciblage personnalisé - niveau des stocks"
|
||||
dfp_topic_above_suggested_code: "ID de la publicité pour l'emplacement ci-dessus la liste des sujets suggérés"
|
||||
dfp_topic_above_suggested_ad_sizes: "Sélectionner des formats de publicité"
|
||||
dfp_mobile_topic_above_suggested_code: "ID de la publicité Mobile pour l'emplacement ci-dessus la liste des sujets suggérés"
|
||||
dfp_topic_above_suggested_code: "Saisir le Code unique de l'unité de publicité à afficher après le dernier message d'un sujet, au dessus des sujets suggérés. Ceci est un code court (100 caractères maximum) attribué à l'unité de publicité à sa création, et non un code JavaScript."
|
||||
dfp_topic_above_suggested_ad_sizes: "Choisir la taille de l'unité de publicité affiché après le dernier message d'un sujet."
|
||||
dfp_mobile_topic_above_suggested_code: "Saisir le Code unique de l'unité de publicité à afficher après le dernier message d'un sujet, au dessus des sujets suggérés, en vue mobile. Ceci est un code court (100 caractères maximum) attribué à l'unité de publicité à sa création, et non un code JavaScript."
|
||||
dfp_mobile_topic_above_suggested_ad_sizes: "Choisir la taille de l'unité de publicité affiché après le dernier message d'un sujet en vue mobile."
|
||||
dfp_target_topic_above_suggested_key_code: "Entrez vos clés pour le ciblage personnalisé - niveau des stocks"
|
||||
dfp_target_topic_above_suggested_value_code: "Entrez vos valeurs pour le ciblage personnalisé - niveau des stocks"
|
||||
dfp_nth_post_code: "Choisissez un numéro de message pour votre publicité d'apparaître dans le message - emplacement en bas"
|
||||
dfp_post_bottom_code: "ID de la publicité qui se trouve au bas d'un message"
|
||||
dfp_post_bottom_ad_sizes: "Sélectionner des formats de publicité"
|
||||
dfp_mobile_post_bottom_code: "ID de la publicité Mobile qui se trouve au bas d'un message"
|
||||
dfp_nth_post_code: "Afficher une publicité après chaque N messages, où N est cette valeur."
|
||||
dfp_post_bottom_code: "Saisir le Code unique de l'unité de publicité à afficher entre les messages après chaque nième message. Ceci est un code court (100 caractères maximum) attribué à l'unité de publicité à sa création, et non un code JavaScript."
|
||||
dfp_post_bottom_ad_sizes: "Choisir la taille de l'unité de publicité affiché entre les messages."
|
||||
dfp_mobile_post_bottom_code: "Saisir le Code unique de l'unité de publicité à afficher entre les messages après chaque nième message, en vue mobile. Ceci est un code court (100 caractères maximum) attribué à l'unité de publicité à sa création, et non un code JavaScript."
|
||||
dfp_mobile_post_bottom_ad_sizes: "Choisir la taille de l'unité de publicité affiché entre les messages en vue mobile."
|
||||
dfp_target_post_bottom_key_code: "Entrez vos clés pour le ciblage personnalisé - niveau des stocks"
|
||||
dfp_target_post_bottom_value_code: "Entrez vos valeurs pour le ciblage personnalisé - niveau des stocks"
|
||||
adsense_publisher_code: "Votre code 'Référence éditeur'"
|
||||
adsense_through_trust_level: "Afficher les publicités aux utilisateurs en fonction de leurs niveaux de confiance"
|
||||
adsense_topic_list_top_code: "ID de la publicité pour l'emplacement au dessus de la liste des sujets"
|
||||
adsense_mobile_topic_list_top_code: "ID de la publicité Mobile pour l'emplacement au dessus de la liste des sujets"
|
||||
adsense_topic_list_top_ad_sizes: "Sélectionner des formats de publicité"
|
||||
adsense_topic_above_post_stream_code: "ID de la publicité pour l'emplacement sur la page de sujet ci-dessus tous les messages"
|
||||
adsense_mobile_topic_above_post_stream_code: "ID de la publicité Mobile pour l'emplacement sur la page de sujet ci-dessus tous les messages"
|
||||
adsense_topic_above_post_stream_ad_sizes: "Sélectionner des formats de publicité"
|
||||
adsense_topic_above_suggested_code: "ID de la publicité pour l'emplacement ci-dessus la liste des sujets suggérés"
|
||||
adsense_mobile_topic_above_suggested_code: "ID de la publicité Mobile pour l'emplacement ci-dessus la liste des sujets suggérés"
|
||||
adsense_topic_above_suggested_ad_sizes: "Sélectionner des formats de publicité"
|
||||
adsense_post_bottom_code: "ID de la publicité qui se trouve au bas d'un message"
|
||||
adsense_mobile_post_bottom_code: "ID de la publicité Mobile qui se trouve au bas d'un message"
|
||||
adsense_post_bottom_ad_sizes: "Sélectionner des formats de publicité"
|
||||
adsense_nth_post_code: "Choisissez un numéro de message pour votre publicité d'apparaître dans le message - emplacement en bas"
|
||||
amazon_through_trust_level: "Afficher les publicités aux utilisateurs en fonction de leurs niveaux de confiance"
|
||||
adsense_publisher_code: "Votre ID publisher. Saisir que le chiffre, en excluant le 'pub-'."
|
||||
adsense_through_trust_level: "Afficher les publicités aux utilisateurs en fonction de leurs niveaux de confiance. Les utilisateurs avec un niveau de confiance supérieur à celui-ci ne verront pas de publicité."
|
||||
adsense_topic_list_top_code: "ID de la publicité pour l'emplacement au dessus de la liste des sujets. Ceci est le chiffre assigné à l'unité de publicité, et non le code JavaScript."
|
||||
adsense_mobile_topic_list_top_code: "ID de la publicité Mobile pour l'emplacement au dessus de la liste des sujets. Ceci est le chiffre assigné à l'unité de publicité, et non le code JavaScript."
|
||||
adsense_topic_list_top_ad_sizes: "Choisir la taille de la publicité"
|
||||
adsense_mobile_topic_list_top_ad_size: "Choisir la taille de la publicité"
|
||||
adsense_topic_above_post_stream_code: "ID de la publicité pour l'emplacement sur la page de sujet ci-dessus tous les messages. Ceci est le chiffre assigné à l'unité de publicité, et non le code JavaScript."
|
||||
adsense_mobile_topic_above_post_stream_code: "ID de la publicité mobile pour l'emplacement sur la page de sujet au-dessus de tous les messages. Ceci est le chiffre assigné à l'unité de publicité, et non le code JavaScript."
|
||||
adsense_topic_above_post_stream_ad_sizes: "Choisir la taille de la publicité"
|
||||
adsense_mobile_topic_above_post_stream_ad_size: "Choisir la taille de la publicité"
|
||||
adsense_topic_above_suggested_code: "ID de la publicité pour l'emplacement ci-dessus la liste des sujets suggérés. Ceci est le chiffre assigné à l'unité de publicité, et non le code JavaScript."
|
||||
adsense_mobile_topic_above_suggested_code: "ID de la publicité Mobile pour l'emplacement ci-dessus la liste des sujets suggérés. Ceci est le chiffre assigné à l'unité de publicité, et non le code JavaScript."
|
||||
adsense_topic_above_suggested_ad_sizes: "Choisir la taille de la publicité"
|
||||
adsense_mobile_topic_above_suggested_ad_size: "Choisir la taille de la publicité"
|
||||
adsense_post_bottom_code: "ID de la publicité qui se trouve au bas d'un message. Ceci est le chiffre assigné à l'unité de publicité, et non le code JavaScript."
|
||||
adsense_mobile_post_bottom_code: "ID de la publicité Mobile qui se trouve au bas d'un message. Ceci est le chiffre assigné à l'unité de publicité, et non le code JavaScript."
|
||||
adsense_post_bottom_ad_sizes: "Choisir la taille de la publicité"
|
||||
adsense_mobile_post_bottom_ad_size: "Choisir la taille de la publicité"
|
||||
adsense_nth_post_code: "Afficher une publicité après chaque N messages, où N est cette valeur."
|
||||
amazon_through_trust_level: "Afficher les publicités aux utilisateurs en fonction de leurs niveaux de confiance. Les utilisateurs avec un niveau de confiance supérieur à celui-ci ne verront pas de publicité."
|
||||
amazon_topic_list_top_src_code: "ID SRC de la publicité pour l'emplacement au dessus de la liste des sujets"
|
||||
amazon_topic_list_top_ad_width_code: "Entrez la largeur de la publicité"
|
||||
amazon_topic_list_top_ad_height_code: "Entrez la hauteur de la publicité"
|
||||
@ -70,4 +78,4 @@ fr:
|
||||
amazon_mobile_post_bottom_src_code: "ID SRC de la publicité Mobile qui se trouve au bas d'un message"
|
||||
amazon_mobile_post_bottom_ad_width_code: "Entrez la largeur de la publicité Mobile"
|
||||
amazon_mobile_post_bottom_ad_height_code: "Entrez la hauteur de la publicité Mobile"
|
||||
amazon_nth_post_code: "Choisissez un numéro de message pour votre publicité d'apparaître dans le message - emplacement en bas"
|
||||
amazon_nth_post_code: "Afficher une publicité après chaque N messages, où N est cette valeur."
|
||||
|
@ -5,4 +5,6 @@
|
||||
# To work with us on translations, join this project:
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
id: {}
|
||||
id:
|
||||
site_settings:
|
||||
dfp_publisher_id: "Masukan kode jaringan, ditemukan pada pengaturan jaringan."
|
||||
|
@ -17,20 +17,17 @@ it:
|
||||
dfp_target_topic_list_top_value_code: "Inserisci i valori personalizzati di targeting - Livello inventario"
|
||||
dfp_topic_above_post_stream_code: "Inserisci il Codice univoco dell'annuncio da mostrare sopra il titolo sulla pagina dell'argomento. E' il codice breve (massimo 100 caratteri) dato all'annuncio quando è stato creato, non il codice JavaScript."
|
||||
dfp_topic_above_post_stream_ad_sizes: "Scegli la dimensione dell'annuncio in cima alla pagina dell'argomento."
|
||||
dfp_mobile_topic_above_post_stream_code: "Inserisci il codice univoco dell'annuncio da mostrare sopra il titolo sulla pagina dell'argomento per la visualizzazione su mobile. E' il codice breve (max 100 caratteri) dato all'annuncio quando è stato creato, non il codice JavaScript."
|
||||
dfp_mobile_topic_above_post_stream_ad_sizes: "Scegli la dimensione dell'annuncio in cima alla pagina dell'argomento per la visualizzazione su mobile."
|
||||
dfp_target_topic_above_post_stream_key_code: "Inserisci le chiavi personalizzate di targeting - Livello inventario"
|
||||
dfp_target_topic_above_post_stream_value_code: "Inserisci i valori personalizzati di targeting - Livello inventario"
|
||||
dfp_topic_above_suggested_code: "Inserisci il codice univoco dell'annuncio da mostrare dopo l'ultimo messaggio in un argomento, sopra gli argomenti suggeriti. E' il codice breve (max 100 caratteri) dato all'annuncio quando è stato creato, non il codice JavaScript."
|
||||
dfp_topic_above_suggested_ad_sizes: "Scegli la dimensione dell'annuncio dopo l'ultimo messaggio in un argomento."
|
||||
dfp_mobile_topic_above_suggested_code: "Inserisci il codice univoco dell'annuncio da mostrare dopo l'ultimo messaggio in un argomento, sopra gli argomenti suggeriti. E' il codice breve (max 100 caratteri) dato all'annuncio quando è stato creato, non il codice JavaScript."
|
||||
dfp_mobile_topic_above_suggested_ad_sizes: "Scegli la dimensione dell'annuncio dopo l'ultimo messaggio in un argomento per la visualizzazione su mobile."
|
||||
dfp_target_topic_above_suggested_key_code: "Inserisci le chiavi personalizzate di targeting - Livello inventario"
|
||||
dfp_target_topic_above_suggested_value_code: "Inserisci i valori personalizzati di targeting - Livello inventario"
|
||||
dfp_nth_post_code: "Mostra un annuncio dopo ogni N messaggi, dove N è il valore."
|
||||
dfp_post_bottom_code: "Inserisci il codice univoco dell'annuncio da mostrare tra i messaggi, ogni N messaggi. E' il codice breve (max 100 caratteri) dato all'annuncio quando è stato creato, non il codice JavaScript."
|
||||
dfp_post_bottom_ad_sizes: "Scegli la dimensione dell'annuncio da mostrare tra i messaggi."
|
||||
dfp_mobile_post_bottom_code: "Inserisci il codice univoco dell'annuncio da mostrare tra i messaggi, ogni N messaggi, per la visualizzazione su mobile. E' il codice breve (max 100 caratteri) dato all'annuncio quando è stato creato, non il codice JavaScript."
|
||||
dfp_mobile_post_bottom_ad_sizes: "Scegli la dimensione dell'annuncio mostrato tra i messaggi per la visualizzazione su mobile."
|
||||
dfp_target_post_bottom_key_code: "Inserisci le chiavi personalizzate di targeting - Livello inventario"
|
||||
dfp_target_post_bottom_value_code: "Inserisci i valori personalizzati di targeting - Livello inventario"
|
||||
|
@ -17,20 +17,17 @@ ko:
|
||||
dfp_target_topic_list_top_value_code: "커스텀 타게팅 값을 입력하세요 - 인벤토리 레벨"
|
||||
dfp_topic_above_post_stream_code: "토픽 페이지에서 토픽 제목 위에 표시할 광고 유닛의 고유 부호를 입력하세요. 이 코드는 최대 100자의 짧은 코드로 광고 유닛이 생성될 때 만들어집니다. (자바스크립트 코드가 아닙니다.)"
|
||||
dfp_topic_above_post_stream_ad_sizes: "토픽 페이지 최상단에 표시할 광고 유닛의 광고 사이즈를 선택하세요"
|
||||
dfp_mobile_topic_above_post_stream_code: "모바일 토픽 페이지에서 토픽 제목 위에 표시할 광고 유닛의 고유 부호를 입력하세요. 이 코드는 최대 100자의 짧은 코드로 광고 유닛이 생성될 때 만들어집니다. (자바스크립트 코드가 아닙니다.)"
|
||||
dfp_mobile_topic_above_post_stream_ad_sizes: "모바일뷰에서 토픽 페이지 최상단에 표시할 광고 유닛의 광고 사이즈를 선택하세요"
|
||||
dfp_target_topic_above_post_stream_key_code: "커스텀 타게팅 키를 입력하세요 - 인벤토리 레벨"
|
||||
dfp_target_topic_above_post_stream_value_code: "커스텀 타게팅 값을 입력하세요 - 인벤토리 레벨"
|
||||
dfp_topic_above_suggested_code: "토픽의 마지막 포스트에 표시할 광고 유닛의 고유 부호를 입력하세요. 이 코드는 최대 100자의 짧은 코드로 광고 유닛이 생성될 때 만들어집니다. (자바스크립트 코드가 아닙니다.)"
|
||||
dfp_topic_above_suggested_ad_sizes: "토픽의 가장 마지막 포스트 다음에 표시할 광고 유닛의 광고 사이즈를 선택하세요"
|
||||
dfp_mobile_topic_above_suggested_code: "토픽의 마지막 포스트에 표시할 광고 유닛의 고유 부호를 입력하세요. 이 코드는 최대 100자의 짧은 코드로 광고 유닛이 생성될 때 만들어집니다. (자바스크립트 코드가 아닙니다.)"
|
||||
dfp_mobile_topic_above_suggested_ad_sizes: "모바일뷰에서 토픽의 가장 마지막 포스트 다음에 표시할 광고 유닛의 광고 사이즈를 선택하세요"
|
||||
dfp_target_topic_above_suggested_key_code: "커스텀 타게팅 키를 입력하세요 - 인벤토리 레벨"
|
||||
dfp_target_topic_above_suggested_value_code: "커스텀 타게팅 값을 입력하세요 - 인벤토리 레벨"
|
||||
dfp_nth_post_code: "몇 개의 포스트 다음에 광고를 표시할까요?"
|
||||
dfp_post_bottom_code: "포스트 사이에 설정된 갯수 만큼의 포스트 다음에 표시할 광고 유닛의 고유 부호를 입력하세요. 이 코드는 최대 100자의 짧은 코드로 광고 유닛이 생성될 때 만들어집니다. (자바스크립트 코드가 아닙니다.)"
|
||||
dfp_post_bottom_ad_sizes: "포스트 사이에 표시될 광고 유닛의 광고 사이즈를 선택하세요"
|
||||
dfp_mobile_post_bottom_code: "모바일에서 포스트 사이에 설정된 갯수 만큼의 포스트 다음에 표시할 광고 유닛의 고유 부호를 입력하세요. 이 코드는 최대 100자의 짧은 코드로 광고 유닛이 생성될 때 만들어집니다. (자바스크립트 코드가 아닙니다.)"
|
||||
dfp_mobile_post_bottom_ad_sizes: "모바일뷰에서 포스트 사이에 표시될 광고 유닛의 광고 사이즈를 선택하세요"
|
||||
dfp_target_post_bottom_key_code: "커스텀 타게팅 키를 입력하세요 - 인벤토리 레벨"
|
||||
dfp_target_post_bottom_value_code: "커스텀 타게팅 값을 입력하세요 - 인벤토리 레벨"
|
||||
|
@ -26,14 +26,14 @@ nb_NO:
|
||||
amazon_topic_above_post_stream_ad_height_code: "Skriv inn din reklamehøyde"
|
||||
amazon_mobile_topic_above_post_stream_ad_width_code: "Velg din reklamebredde (mobil)"
|
||||
amazon_mobile_topic_above_post_stream_ad_height_code: "Velg din reklamehøyde (mobil)"
|
||||
amazon_topic_above_suggested_src_code: "Skriv inn src-kode å vise i emne over anbefalninger"
|
||||
amazon_topic_above_suggested_src_code: "Skriv inn src-kode å vise ved tråd over anbefalninger"
|
||||
amazon_topic_above_suggested_ad_width_code: "Velg din reklamebredde"
|
||||
amazon_topic_above_suggested_ad_height_code: "Velg din reklamehøyde"
|
||||
amazon_mobile_topic_above_suggested_src_code: "Skriv inn src-kode for å vise mobilreklamer i emne over anbefalninger"
|
||||
amazon_mobile_topic_above_suggested_src_code: "Skriv inn src-kode for å vise mobilreklamer ved tråd over anbefalninger"
|
||||
amazon_mobile_topic_above_suggested_ad_width_code: "Velg din reklamebredde (mobil)"
|
||||
amazon_mobile_topic_above_suggested_ad_height_code: "Velg din reklamehøyde (mobil)"
|
||||
amazon_post_bottom_ad_width_code: "Velg din reklamebredde"
|
||||
amazon_post_bottom_ad_height_code: "Velg din reklamehøyde"
|
||||
amazon_mobile_post_bottom_ad_width_code: "Velg din reklamebredde (mobil)"
|
||||
amazon_mobile_post_bottom_ad_height_code: "Velg din reklamehøyde (mobil)"
|
||||
amazon_nth_post_code: "Vis en reklame etter hver N post, der N er denne verdien."
|
||||
amazon_nth_post_code: "Vis en reklame etter hvert N innlegg, der N er denne verdien."
|
||||
|
@ -5,4 +5,31 @@
|
||||
# To work with us on translations, join this project:
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
pt: {}
|
||||
pt:
|
||||
site_settings:
|
||||
dfp_publisher_id: "Insira o seu código de rede, que pode encontrar nas suas configurações de rede."
|
||||
dfp_through_trust_level: "Mostre os seus anúncios aos utilizadores com base nos níveis de confiança. Os utilizadores com nível de confiança superior a este valor não irão ver anúncios."
|
||||
adsense_topic_list_top_ad_sizes: "Escolha o tamanho do seu anúncio"
|
||||
adsense_mobile_topic_list_top_ad_size: "Escolha o tamanho do seu anúncio"
|
||||
adsense_topic_above_post_stream_ad_sizes: "Escolha o tamanho do seu anúncio"
|
||||
adsense_mobile_topic_above_post_stream_ad_size: "Escolha o tamanho do seu anúncio"
|
||||
adsense_topic_above_suggested_ad_sizes: "Escolha o tamanho do seu anúncio"
|
||||
adsense_mobile_topic_above_suggested_ad_size: "Escolha o tamanho do seu anúncio"
|
||||
adsense_post_bottom_ad_sizes: "Escolha o tamanho do seu anúncio"
|
||||
adsense_mobile_post_bottom_ad_size: "Escolha o tamanho do seu anúncio"
|
||||
amazon_topic_list_top_ad_width_code: "Insira a largura do seu anúncio"
|
||||
amazon_topic_list_top_ad_height_code: "Insira a altura do seu anúncio"
|
||||
amazon_mobile_topic_list_top_ad_width_code: "Insira a largura do seu anúncio (móvel)"
|
||||
amazon_mobile_topic_list_top_ad_height_code: "Insira a altura do seu anúncio (móvel)"
|
||||
amazon_topic_above_post_stream_ad_width_code: "Insira a largura do seu anúncio"
|
||||
amazon_topic_above_post_stream_ad_height_code: "Insira a altura do seu anúncio"
|
||||
amazon_mobile_topic_above_post_stream_ad_width_code: "Insira a largura do seu anúncio (móvel)"
|
||||
amazon_mobile_topic_above_post_stream_ad_height_code: "Insira a altura do seu anúncio (móvel)"
|
||||
amazon_topic_above_suggested_ad_width_code: "Insira a largura do seu anúncio"
|
||||
amazon_topic_above_suggested_ad_height_code: "Insira a altura do seu anúncio"
|
||||
amazon_mobile_topic_above_suggested_ad_width_code: "Insira a largura do seu anúncio (móvel)"
|
||||
amazon_mobile_topic_above_suggested_ad_height_code: "Insira a altura do seu anúncio (móvel)"
|
||||
amazon_post_bottom_ad_width_code: "Insira a largura do seu anúncio"
|
||||
amazon_post_bottom_ad_height_code: "Insira a altura do seu anúncio"
|
||||
amazon_mobile_post_bottom_ad_width_code: "Insira a largura do seu anúncio (móvel)"
|
||||
amazon_mobile_post_bottom_ad_height_code: "Insira a altura do seu anúncio (móvel)"
|
||||
|
8
config/locales/server.sl.yml
Normal file
8
config/locales/server.sl.yml
Normal file
@ -0,0 +1,8 @@
|
||||
# encoding: utf-8
|
||||
#
|
||||
# Never edit this file. It will be overwritten when translations are pulled from Transifex.
|
||||
#
|
||||
# To work with us on translations, join this project:
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
sl: {}
|
8
config/locales/server.sr.yml
Normal file
8
config/locales/server.sr.yml
Normal file
@ -0,0 +1,8 @@
|
||||
# encoding: utf-8
|
||||
#
|
||||
# Never edit this file. It will be overwritten when translations are pulled from Transifex.
|
||||
#
|
||||
# To work with us on translations, join this project:
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
sr: {}
|
@ -5,4 +5,77 @@
|
||||
# To work with us on translations, join this project:
|
||||
# https://www.transifex.com/projects/p/discourse-org/
|
||||
|
||||
ur: {}
|
||||
ur:
|
||||
site_settings:
|
||||
dfp_publisher_id: "اپنے نیٹ ورک کوڈ، جو آپ کے نیٹ ورک سیٹِنگ میں پایا جاتا ہے، کو درج کیجیے۔"
|
||||
dfp_through_trust_level: "اپنے صارفین کوٹرسٹ لَیول کی بنیاد پر اشتہارات دکھائیں۔ اس وَیلِیو سے زیادہ ٹرسٹ لَیول والے صارفین کو اشتہارات نہیں دکھاے جائیں گے۔"
|
||||
dfp_topic_list_top_code: "ٹاپک فہرست کے اوپر اشتھار ظاہر کرنے کیلئے اُس کا منفرد کوڈ درج کریں۔ یہ مختصر کوڈ ہے (زیادہ سے زیادہ 100 حروف) جو اشتھار کی تخلیق کے وقت اسے دیا گیا تھا، یہ جاوااسکرپٹ کوڈ نہیں ہے۔"
|
||||
dfp_topic_list_top_ad_sizes: "ٹاپک فہرست کے اوپر اشتھار کا سائز منتخب کریں۔"
|
||||
dfp_mobile_topic_list_top_code: "موبائل وِیو میں ٹاپک فہرست کے اوپر اشتھار ظاہر کرنے کیلئے اُس کا منفرد کوڈ درج کریں۔ یہ مختصر کوڈ ہے (زیادہ سے زیادہ 100 حروف) جو اشتھار کی تخلیق کے وقت اسے دیا گیا تھا، یہ جاوااسکرپٹ کوڈ نہیں ہے۔"
|
||||
dfp_mobile_topic_list_top_ad_sizes: "موبائل وِیو میں ٹاپک فہرست کے اوپر اشتھار کا سائز منتخب کریں۔"
|
||||
dfp_target_topic_list_top_key_code: "اپنی مرضی کی ٹارگیٹنک کیز درج کریں - انوینٹری لیول"
|
||||
dfp_target_topic_list_top_value_code: "اپنی مرضی کی ٹارگیٹنک وَیلیو درج کریں - انوینٹری لیول"
|
||||
dfp_topic_above_post_stream_code: "ٹاپک صفحے پر ٹاپک عنوان کے اوپر اشتھار ظاہر کرنے کیلئے اُس کا منفرد کوڈ درج کریں۔ یہ مختصر کوڈ ہے (زیادہ سے زیادہ 100 حروف) جو اشتھار کی تخلیق کے وقت اسے دیا گیا تھا، یہ جاوااسکرپٹ کوڈ نہیں ہے۔"
|
||||
dfp_topic_above_post_stream_ad_sizes: "ٹاپک صفحے کے سب سے اوپر اشتھار کا سائز منتخب کریں۔"
|
||||
dfp_mobile_topic_above_post_stream_code: "موبائل وِیو میں ٹاپک صفحے پر ٹاپک عنوان کے اوپر اشتھار ظاہر کرنے کیلئے اُس کا منفرد کوڈ درج کریں۔ یہ مختصر کوڈ ہے (زیادہ سے زیادہ 100 حروف) جو اشتھار کی تخلیق کے وقت اسے دیا گیا تھا، یہ جاوااسکرپٹ کوڈ نہیں ہے۔"
|
||||
dfp_mobile_topic_above_post_stream_ad_sizes: "موبائل وِیو میں ٹاپک صفحے کے سب سے اوپر اشتھار کا سائز منتخب کریں۔"
|
||||
dfp_target_topic_above_post_stream_key_code: "اپنی مرضی کی ٹارگیٹنک کیز درج کریں - انوینٹری لیول"
|
||||
dfp_target_topic_above_post_stream_value_code: "اپنی مرضی کی ٹارگیٹنک وَیلیو درج کریں - انوینٹری لیول"
|
||||
dfp_topic_above_suggested_code: "آخری پوسٹ کے بعد، تجویز کردہ ٹاپکس کے اوپر اشتھار ظاہر کرنے کیلئے اُس کا منفرد کوڈ درج کریں۔ یہ مختصر کوڈ ہے (زیادہ سے زیادہ 100 حروف) جو اشتھار کی تخلیق کے وقت اسے دیا گیا تھا، یہ جاوااسکرپٹ کوڈ نہیں ہے۔"
|
||||
dfp_topic_above_suggested_ad_sizes: "آخری پوسٹ کے بعد اشتھار کا سائز منتخب کریں۔"
|
||||
dfp_mobile_topic_above_suggested_code: "موبائل وِیو میں آخری پوسٹ کے بعد، تجویز کردہ ٹاپکس کے اوپر اشتھار ظاہر کرنے کیلئے اُس کا منفرد کوڈ درج کریں۔ یہ مختصر کوڈ ہے (زیادہ سے زیادہ 100 حروف) جو اشتھار کی تخلیق کے وقت اسے دیا گیا تھا، یہ جاوااسکرپٹ کوڈ نہیں ہے۔"
|
||||
dfp_mobile_topic_above_suggested_ad_sizes: "موبائل وِیو میں آخری پوسٹ کے بعد اشتھار کا سائز منتخب کریں۔"
|
||||
dfp_target_topic_above_suggested_key_code: "اپنی مرضی کی ٹارگیٹنک کیز درج کریں - انوینٹری لیول"
|
||||
dfp_target_topic_above_suggested_value_code: "اپنی مرضی کی ٹارگیٹنک وَیلیو درج کریں - انوینٹری لیول"
|
||||
dfp_nth_post_code: "ہر N پوسٹس کے بعد ایک اشتھار دکھائیں، جہاں N کی یہ قدر ہے۔"
|
||||
dfp_post_bottom_code: "پوسٹس کے درمیان، ہر N پوسٹ کے بعد اشتھار ظاہر کرنے کیلئے اُس کا منفرد کوڈ درج کریں۔ یہ مختصر کوڈ ہے (زیادہ سے زیادہ 100 حروف) جو اشتھار کی تخلیق کے وقت اسے دیا گیا تھا، یہ جاوااسکرپٹ کوڈ نہیں ہے۔"
|
||||
dfp_post_bottom_ad_sizes: "پوسٹس کے درمیان اشتھار کا سائز منتخب کریں۔"
|
||||
dfp_mobile_post_bottom_code: "موبائل وِیو میں پوسٹس کے درمیان، ہر N پوسٹ کے بعد اشتھار ظاہر کرنے کیلئے اُس کا منفرد کوڈ درج کریں۔ یہ مختصر کوڈ ہے (زیادہ سے زیادہ 100 حروف) جو اشتھار کی تخلیق کے وقت اسے دیا گیا تھا، یہ جاوااسکرپٹ کوڈ نہیں ہے۔"
|
||||
dfp_mobile_post_bottom_ad_sizes: "موبائل وِیو میں پوسٹس کے درمیان اشتھار کا سائز منتخب کریں۔"
|
||||
dfp_target_post_bottom_key_code: "اپنی مرضی کی ٹارگیٹنک کیز درج کریں - انوینٹری لیول"
|
||||
dfp_target_post_bottom_value_code: "اپنی مرضی کی ٹارگیٹنک وَیلیو درج کریں - انوینٹری لیول"
|
||||
adsense_publisher_code: "آپ کی پبلیشر آئی ڈی۔ 'pub-' کو چھوڑ کر صرف نمبر درج کریں۔"
|
||||
adsense_through_trust_level: "صارفین کو ٹرسٹ لَیول کے حساب سے اشتہارات دکھائیں۔ اس قدر سے زیادہ ٹرسٹ لَیول والے صارفین کو اشتہارات نہیں دکھائے جائیں گے۔"
|
||||
adsense_topic_list_top_code: "ٹاپک فہرست کی ٹاپ جگہ پر اشتھار ظاہر کرنے کیلئے اُس کا کَوڈ درج کریں۔ یہ اشتھار یونٹ کے لئے مقرر کردہ نمبر ہے، نہ کہ جاوااسکرپٹ کَوڈ۔"
|
||||
adsense_mobile_topic_list_top_code: "ٹاپک فہرست کی ٹاپ جگہ پر موبائل اشتھار ظاہر کرنے کیلئے اُس کا کَوڈ درج کریں۔ یہ اشتھار یونٹ کے لئے مقرر کردہ نمبر ہے، نہ کہ جاوااسکرپٹ کَوڈ۔"
|
||||
adsense_topic_list_top_ad_sizes: "اپنے اشتھارات کا سائز منتخب کریں"
|
||||
adsense_mobile_topic_list_top_ad_size: "اپنے اشتھارات کا سائز منتخب کریں"
|
||||
adsense_topic_above_post_stream_code: "پوسٹ سٹریم مقام کے اوپر ٹاپک پر اشتھار ظاہر کرنے کیلئے اُس کا کَوڈ درج کریں۔ یہ اشتھار یونٹ کے لئے مقرر کردہ نمبر ہے، نہ کہ جاوااسکرپٹ کَوڈ۔"
|
||||
adsense_mobile_topic_above_post_stream_code: "پوسٹ سٹریم مقام کے اوپر ٹاپک پر موبائل اشتھار ظاہر کرنے کیلئے اُس کا کَوڈ درج کریں۔ یہ اشتھار یونٹ کے لئے مقرر کردہ نمبر ہے، نہ کہ جاوااسکرپٹ کَوڈ۔"
|
||||
adsense_topic_above_post_stream_ad_sizes: "اپنے اشتھارات کا سائز منتخب کریں"
|
||||
adsense_mobile_topic_above_post_stream_ad_size: "اپنے اشتھارات کا سائز منتخب کریں"
|
||||
adsense_topic_above_suggested_code: "تجویز کردہ مقام سے اوپر ٹاپک پر اشتھار ظاہر کرنے کیلئے اُس کا کَوڈ درج کریں۔ یہ اشتھار یونٹ کے لئے مقرر کردہ نمبر ہے، نہ کہ جاوااسکرپٹ کَوڈ۔"
|
||||
adsense_mobile_topic_above_suggested_code: "تجویز کردہ مقام سے اوپر ٹاپک پر موبائل اشتھار ظاہر کرنے کیلئے اُس کا کَوڈ درج کریں۔ یہ اشتھار یونٹ کے لئے مقرر کردہ نمبر ہے، نہ کہ جاوااسکرپٹ کَوڈ۔"
|
||||
adsense_topic_above_suggested_ad_sizes: "اپنے اشتھارات کا سائز منتخب کریں"
|
||||
adsense_mobile_topic_above_suggested_ad_size: "اپنے اشتھارات کا سائز منتخب کریں"
|
||||
adsense_post_bottom_code: "پوسٹ کے سم سے نیچے مقام پر اشتھار ظاہر کرنے کیلئے اُس کا کَوڈ درج کریں۔ یہ اشتھار یونٹ کے لئے مقرر کردہ نمبر ہے، نہ کہ جاوااسکرپٹ کَوڈ۔"
|
||||
adsense_mobile_post_bottom_code: "پوسٹ کے سب سے نیچے مقام پر موبائل اشتھار ظاہر کرنے کیلئے اُس کا کَوڈ درج کریں۔ یہ اشتھار یونٹ کے لئے مقرر کردہ نمبر ہے، نہ کہ جاوااسکرپٹ کَوڈ۔"
|
||||
adsense_post_bottom_ad_sizes: "اپنے اشتھارات کا سائز منتخب کریں"
|
||||
adsense_mobile_post_bottom_ad_size: "اپنے اشتھارات کا سائز منتخب کریں"
|
||||
adsense_nth_post_code: "ہر N پوسٹس کے بعد ایک اشتھار دکھائیں، جہاں N کی یہ قدر ہے۔"
|
||||
amazon_through_trust_level: "اپنے صارفین کوٹرسٹ لَیول کی بنیاد پر اشتہارات دکھائیں۔ اس وَیلِیو سے زیادہ ٹرسٹ لَیول والے صارفین کو اشتہارات نہیں دکھاے جائیں گے۔"
|
||||
amazon_topic_list_top_src_code: "ٹاپک فہرست کے سب سے اوپر مقام پر ظاہر کرنے کے لئے ایس آرسی کوڈ درج کریں"
|
||||
amazon_topic_list_top_ad_width_code: "اپنے اشتھار کی چوڑائی درج کریں"
|
||||
amazon_topic_list_top_ad_height_code: "اپنے اشتھار کی اونچائی درج کریں"
|
||||
amazon_mobile_topic_list_top_src_code: "ٹاپک فہرست کے سب سے اوپر مقام پر موبائل اشتھار ظاہر کرنے کے لئے ایس آر سی کوڈ درج کریں"
|
||||
amazon_mobile_topic_list_top_ad_width_code: "اپنے اشتھار کی چوڑائی درج کریں (موبائل)"
|
||||
amazon_mobile_topic_list_top_ad_height_code: "اپنے اشتھار کی اونچائی درج کریں (موبائل)"
|
||||
amazon_topic_above_post_stream_src_code: "پوسٹ سٹریم کے اوپر ٹاپک پر ظاہر کرنے کے لئے ایس آر سی کوڈ درج کریں"
|
||||
amazon_topic_above_post_stream_ad_width_code: "اپنے اشتھار کی چوڑائی درج کریں"
|
||||
amazon_topic_above_post_stream_ad_height_code: "اپنے اشتھار کی اونچائی درج کریں"
|
||||
amazon_mobile_topic_above_post_stream_src_code: "پوسٹ سٹریم کے اوپر ٹاپک پر موبائل اشتھار ظاہر کرنے کے لئے ایس آر سی کوڈ درج کریں"
|
||||
amazon_mobile_topic_above_post_stream_ad_width_code: "اپنے اشتھار کی چوڑائی درج کریں (موبائل)"
|
||||
amazon_mobile_topic_above_post_stream_ad_height_code: "اپنے اشتھار کی اونچائی درج کریں (موبائل)"
|
||||
amazon_topic_above_suggested_src_code: "تجویز کردہ کے اوپر ٹاپک پر ظاہر کرنے کے لئے ایس آر سی کوڈ درج کریں"
|
||||
amazon_topic_above_suggested_ad_width_code: "اپنے اشتھار کی چوڑائی درج کریں"
|
||||
amazon_topic_above_suggested_ad_height_code: "اپنے اشتھار کی اونچائی درج کریں"
|
||||
amazon_mobile_topic_above_suggested_src_code: "تجویز کردہ کے اوپر ٹاپک پر موبائل اشتھار ظاہر کرنے کے لئے ایس آر سی کوڈ درج کریں"
|
||||
amazon_mobile_topic_above_suggested_ad_width_code: "اپنے اشتھار کی چوڑائی درج کریں (موبائل)"
|
||||
amazon_mobile_topic_above_suggested_ad_height_code: "اپنے اشتھار کی اونچائی درج کریں (موبائل)"
|
||||
amazon_post_bottom_src_code: "پوسٹ کے سب سے نیچے مقام پر ظاہر کرنے کے لئے ایس آر سی کوڈ درج کریں"
|
||||
amazon_post_bottom_ad_width_code: "اپنے اشتھار کی چوڑائی درج کریں"
|
||||
amazon_post_bottom_ad_height_code: "اپنے اشتھار کی اونچائی درج کریں"
|
||||
amazon_mobile_post_bottom_src_code: "پوسٹ کے سب سے نیچے مقام پر موبائل اشتھار ظاہر کرنے کے لئے ایس آر سی کوڈ درج کریں"
|
||||
amazon_mobile_post_bottom_ad_width_code: "اپنے اشتھار کی چوڑائی درج کریں (موبائل)"
|
||||
amazon_mobile_post_bottom_ad_height_code: "اپنے اشتھار کی اونچائی درج کریں (موبائل)"
|
||||
amazon_nth_post_code: "ہر N پوسٹس کے بعد ایک اشتھار دکھائیں، جہاں N کی یہ قدر ہے۔"
|
||||
|
@ -17,20 +17,17 @@ zh_CN:
|
||||
dfp_target_topic_list_top_value_code: "主页.輸入(英文)指定目標"
|
||||
dfp_topic_above_post_stream_code: "论坛标题以下.输入DFP广告代码"
|
||||
dfp_topic_above_post_stream_ad_sizes: "论坛标题以下.DFP广告大小选择"
|
||||
dfp_mobile_topic_above_post_stream_code: "论坛标题以下.手机版.输入DFP广告代码"
|
||||
dfp_mobile_topic_above_post_stream_ad_sizes: "移动端视图主题页面顶端.DFP广告大小选择"
|
||||
dfp_target_topic_above_post_stream_key_code: "论坛标题以下.輸入(英文)指定群組"
|
||||
dfp_target_topic_above_post_stream_value_code: "论坛标题以下.輸入(英文)指定目標"
|
||||
dfp_topic_above_suggested_code: "论坛主题建议以上.输入DFP广告代码"
|
||||
dfp_topic_above_suggested_ad_sizes: "论坛主题建议以上.DFP广告大小选择"
|
||||
dfp_mobile_topic_above_suggested_code: "论坛主题建议以上.手机版.输入DFP广告代码"
|
||||
dfp_mobile_topic_above_suggested_ad_sizes: "移动端视图主题页面最后帖子后.DFP广告大小选择"
|
||||
dfp_target_topic_above_suggested_key_code: "论坛主题建议以上.輸入(英文)指定群組"
|
||||
dfp_target_topic_above_suggested_value_code: "论坛主题建议以上.輸入(英文)指定目標"
|
||||
dfp_nth_post_code: "Nth评论"
|
||||
dfp_post_bottom_code: "评论以下.输入DFP广告代码"
|
||||
dfp_post_bottom_ad_sizes: "评论以下.DFP广告大小选择"
|
||||
dfp_mobile_post_bottom_code: "评论以下.手机版.输入DFP广告代码"
|
||||
dfp_mobile_post_bottom_ad_sizes: "移动端视图帖子间.DFP广告大小选择"
|
||||
dfp_target_post_bottom_key_code: "主页.輸入(英文)指定群組"
|
||||
dfp_target_post_bottom_value_code: "主页.輸入(英文)指定目標"
|
||||
|
@ -341,3 +341,38 @@ amazon_plugin:
|
||||
amazon_mobile_post_bottom_ad_height_code:
|
||||
client: true
|
||||
default: ''
|
||||
|
||||
codefund_plugin:
|
||||
codefund_property_id:
|
||||
client: true
|
||||
default: ''
|
||||
regex: '^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$'
|
||||
codefund_advertiser_label:
|
||||
client: true
|
||||
default: 'Advertiser'
|
||||
codefund_advertiser_short_label:
|
||||
client: true
|
||||
default: 'Ad'
|
||||
codefund_through_trust_level:
|
||||
client: true
|
||||
default: 2
|
||||
enum: 'TrustLevelSetting'
|
||||
codefund_nth_post:
|
||||
client: true
|
||||
default: 4
|
||||
min: 1
|
||||
codefund_display_advertiser_labels:
|
||||
default: true
|
||||
client: true
|
||||
codefund_below_post_enabled:
|
||||
default: true
|
||||
client: true
|
||||
codefund_above_post_stream_enabled:
|
||||
default: true
|
||||
client: true
|
||||
codefund_above_suggested_enabled:
|
||||
default: true
|
||||
client: true
|
||||
codefund_top_of_topic_list_enabled:
|
||||
default: true
|
||||
client: true
|
||||
|
77
plugin.rb
77
plugin.rb
@ -6,6 +6,9 @@
|
||||
|
||||
register_css <<CSS
|
||||
|
||||
@import "common/foundation/variables";
|
||||
@import "common/foundation/mixins";
|
||||
|
||||
.google-dfp-ad {
|
||||
padding: 3px 0;
|
||||
margin-bottom: 10px;
|
||||
@ -53,6 +56,19 @@ register_css <<CSS
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.google-adsense.adsense-post-bottom {
|
||||
max-width: 735px;
|
||||
padding: 0 11px;
|
||||
}
|
||||
|
||||
@media all
|
||||
and (max-width : 775px) {
|
||||
.google-adsense.adsense-post-bottom {
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.amazon-product-links {
|
||||
padding: 3px;
|
||||
margin-bottom: 10px;
|
||||
@ -97,4 +113,65 @@ register_css <<CSS
|
||||
}
|
||||
}
|
||||
|
||||
.codefund-wrapper {
|
||||
z-index: 1;
|
||||
font-family: system, "Helvetica Neue", Helvetica, Arial;
|
||||
font-size: 13px;
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
line-height: 1.5;
|
||||
display: block;
|
||||
background-color: $primary-very-low;
|
||||
padding: 12px 11px;
|
||||
text-align: left;
|
||||
margin: 12px 0;
|
||||
}
|
||||
|
||||
.codefund-wrapper .codefund-text {
|
||||
color: dark-light-choose($primary-medium, $secondary-medium);
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.codefund-wrapper .codefund-text:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.codefund-wrapper .codefund-text strong {
|
||||
color: $primary;
|
||||
}
|
||||
|
||||
.codefund-wrapper .codefund-powered-by:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.codefund-wrapper .codefund-label {
|
||||
margin-right: 4px;
|
||||
padding: 2px 6px;
|
||||
border-radius: 3px;
|
||||
background-color: $tertiary;
|
||||
color: $secondary;
|
||||
}
|
||||
|
||||
.codefund-wrapper .codefund-label:hover {
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
.codefund-wrapper .codefund-powered-by {
|
||||
text-decoration: none;
|
||||
color: dark-light-choose($primary-medium, $secondary-medium);
|
||||
float: right;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.codefund-wrapper .codefund-powered-by:hover {
|
||||
text-decoration: underline;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.codefund-wrapper.codefund-post-bottom {
|
||||
width: 757px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
CSS
|
||||
|
Loading…
x
Reference in New Issue
Block a user