Merge branch 'master' into stable

This commit is contained in:
Neil Lalonde 2017-12-05 15:19:21 -05:00
commit 8e1041ec75
76 changed files with 734 additions and 42 deletions

113
.rubocop.yml Normal file
View File

@ -0,0 +1,113 @@
AllCops:
TargetRubyVersion: 2.4
DisabledByDefault: true
Exclude:
- 'db/schema.rb'
- 'bundle/**/*'
- 'vendor/**/*'
- 'node_modules/**/*'
- 'public/**/*'
# Prefer &&/|| over and/or.
Style/AndOr:
Enabled: true
# Do not use braces for hash literals when they are the last argument of a
# method call.
Style/BracesAroundHashParameters:
Enabled: true
# Align `when` with `case`.
Layout/CaseIndentation:
Enabled: true
# Align comments with method definitions.
Layout/CommentIndentation:
Enabled: true
# No extra empty lines.
Layout/EmptyLines:
Enabled: true
# Use Ruby >= 1.9 syntax for hashes. Prefer { a: :b } over { :a => :b }.
Style/HashSyntax:
Enabled: true
# Two spaces, no tabs (for indentation).
Layout/IndentationWidth:
Enabled: true
Layout/SpaceAfterColon:
Enabled: true
Layout/SpaceAfterComma:
Enabled: true
Layout/SpaceAroundEqualsInParameterDefault:
Enabled: true
Layout/SpaceAroundKeyword:
Enabled: true
Layout/SpaceAroundOperators:
Enabled: true
Layout/SpaceBeforeFirstArg:
Enabled: true
# Defining a method with parameters needs parentheses.
Style/MethodDefParentheses:
Enabled: true
# Use `foo {}` not `foo{}`.
Layout/SpaceBeforeBlockBraces:
Enabled: true
# Use `foo { bar }` not `foo {bar}`.
Layout/SpaceInsideBlockBraces:
Enabled: true
# Use `{ a: 1 }` not `{a:1}`.
Layout/SpaceInsideHashLiteralBraces:
Enabled: true
Layout/SpaceInsideParens:
Enabled: true
# Detect hard tabs, no hard tabs.
Layout/Tab:
Enabled: true
# Blank lines should not have any spaces.
Layout/TrailingBlankLines:
Enabled: true
# No trailing whitespace.
Layout/TrailingWhitespace:
Enabled: true
Lint/Debugger:
Enabled: true
Lint/BlockAlignment:
Enabled: true
# Align `end` with the matching keyword or starting expression except for
# assignments, where it should be aligned with the LHS.
Lint/EndAlignment:
Enabled: true
EnforcedStyleAlignWith: variable
# Use my_method(my_arg) not my_method( my_arg ) or my_method my_arg.
Lint/RequireParentheses:
Enabled: true
Layout/MultilineMethodCallIndentation:
Enabled: true
EnforcedStyle: indented
Layout/AlignHash:
Enabled: true
Bundler/OrderedGems:
Enabled: false

5
Gemfile Normal file
View File

@ -0,0 +1,5 @@
source 'https://rubygems.org'
group :development do
gem 'translations-manager', git: 'https://github.com/discourse/translations-manager.git'
end

View File

@ -2,12 +2,12 @@
This is the official Discourse advertising plugin. It allows advertisements to be served by supported advertising platforms for users with a Discourse forum.
**Authors**: [Sarah Ni](https://github.com/cyberkoi) & [Vi Nguyen](https://github.com/ladydanger)
**Version**: 1.0.1
**Contributors**: See credits section below
**License**: MIT License
**Supported Discourse Version**: 1.4
**Supported Ad Platforms**:
**Authors**: [Sarah Ni](https://github.com/cyberkoi) & [Vi Nguyen](https://github.com/ladydanger)
**Version**: 1.0.1
**Contributors**: See credits section below
**License**: MIT License
**Supported Discourse Version**: 1.4
**Supported Ad Platforms**:
* [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
@ -17,8 +17,8 @@ This is the official Discourse advertising plugin. It allows advertisements to
This quick start shows you how to install this plugin and use it. Recommended if you have:
* A live discourse forum
* You have deployed your live forum using Docker. If you're using Digital Ocean, it's likely that your forum is deployed on Docker.
* A live discourse forum
* You have deployed your live forum using Docker. If you're using Digital Ocean, it's likely that your forum is deployed on Docker.
For non-docker or local development installation (those with programming experience), see **Other Installation**.
@ -103,10 +103,10 @@ The following are available locations along with a description and an image show
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```.
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```.
![](https://www.dropbox.com/sc/rm5bcn8c85niul1/AAAUVW-hn56XtCl_XTNlE19Ra?dl=1)
@ -117,7 +117,7 @@ This plugin supports the following ad sizes for the following locations.
All locations except post bottom | Post bottom location | Mobile
--- | --- | ---
728 x 90 | 728 x 90 | 320 x 50
728 x 90 | 728 x 90 | 320 x 50
336 x 280 | 336 x 280 |
300 x 250 | 300 x 250 |
970 x 90 | 970 x 90 |
@ -126,7 +126,7 @@ All locations except post bottom | Post bottom location | Mobile
125 x 125 | |
180 x 150 | |
200 x 200 | |
250 x 250 | |
250 x 250 | |
### Trust Levels
@ -184,7 +184,7 @@ For example: ln -s ~/discourse-plugin-test .
## Questions or Want to Contribute?
Open an Issue on this repository to start a chat.
Open an Issue on this repository to start a chat.
## Credits
@ -194,12 +194,4 @@ Open an Issue on this repository to start a chat.
**Our Coaches**: Very special thank you to our coaches and honorary coach - [@georg](https://github.com/georg), [@betaass](https://github.com/betaass), [@adelsmee](https://github.com/adelsmee), [@davich](https://github.com/davich), [@link664](https://github.com/link664), [@tomjadams](https://github.com/tomjadams), [@compactcode](https://github.com/compactcode), [@joffotron](https://github.com/joffotron), [@jocranford](https://github.com/jocranford), [@saramic](https://github.com/saramic), [@madpilot](https://github.com/madpilot), [@catkins](https://github.com/catkins)
**Rails Girls**: Thanks [@sareg0](https://github.com/sareg0) and the Rails Girls Team for the opportunity to participate in Rails Girls Summer of Code 2015.
<p>To create this plugin we referenced the <a href="https://github.com/discourse/discourse-google-dfp">original dfp plugin</a> (created by <a href="https://github.com/search?q=neil+lalonde+lalonde&ref=opensearch&type=Users">nlalonde</a>) and the <a href="https://meta.discourse.org/t/google-adsense-plugin/11763/133">adsense plugin</a>.</p>
<p>To create this plugin we referenced the <a href="https://github.com/discourse/discourse-google-dfp">original dfp plugin</a> (created by <a href="https://github.com/search?q=neil+lalonde&ref=opensearch&type=Users">nlalonde</a>) and the <a href="https://meta.discourse.org/t/google-adsense-plugin/11763/133">adsense plugin</a>.</p>

15
bin/pull_translations.rb Executable file
View File

@ -0,0 +1,15 @@
#!/usr/bin/env ruby
# Usage:
# bundle install
# bundle exec bin/pull_translations.rb
#
# To choose which languages to update, list them as arguments:
# bundle exec bin/pull_translations.rb he uk
require 'translations_manager'
YML_DIRS = ['config/locales'].map { |d| File.expand_path(d) }
YML_FILE_PREFIXES = ['server', 'client']
TranslationsManager::TransifexUpdater.new(YML_DIRS, YML_FILE_PREFIXES, *ARGV).perform

View File

@ -1,3 +1,10 @@
# 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/
ar:
admin_js:
admin:

View File

@ -1 +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/
bs_BA: {}

View File

@ -1,3 +1,10 @@
# 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/
cs:
admin_js:
admin:

View File

@ -1 +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/
da: {}

View File

@ -1,3 +1,10 @@
# 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/
de:
admin_js:
admin:

View File

@ -1,3 +1,10 @@
# 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/
el:
admin_js:
admin:

View File

@ -1 +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/
eo: {}

View File

@ -1,3 +1,10 @@
# 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/
es:
admin_js:
admin:

View File

@ -1,3 +1,10 @@
# 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/
et:
admin_js:
admin:

View File

@ -1,3 +1,10 @@
# 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/
fa_IR:
admin_js:
admin:

View File

@ -1,3 +1,10 @@
# 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/
fi:
admin_js:
admin:

View File

@ -1,3 +1,10 @@
# 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/
fr:
admin_js:
admin:

View File

@ -1 +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/
gl: {}

View File

@ -1,3 +1,10 @@
# 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/
he:
admin_js:
admin:

View File

@ -1 +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/
id: {}

View File

@ -1,3 +1,10 @@
# 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/
it:
admin_js:
admin:

View File

@ -1 +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/
ja: {}

View File

@ -1,8 +1,15 @@
# 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/
ko:
admin_js:
admin:
site_settings:
categories:
dfp_plugin: 'DFP'
adsense_plugin: '에드센스'
amazon_plugin: '아마존'
adsense_plugin: 'Adsense'
amazon_plugin: 'Amazon'

View File

@ -1 +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/
lv: {}

View File

@ -1,3 +1,10 @@
# 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/
nb_NO:
admin_js:
admin:

View File

@ -1,3 +1,10 @@
# 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/
nl:
admin_js:
admin:

View File

@ -1,3 +1,10 @@
# 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/
pl_PL:
admin_js:
admin:

View File

@ -1,3 +1,10 @@
# 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/
pt_BR:
admin_js:
admin:

View File

@ -1 +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/
ro: {}

View File

@ -1,3 +1,10 @@
# 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/
ru:
admin_js:
admin:

View File

@ -1,3 +1,10 @@
# 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/
sk:
admin_js:
admin:

View File

@ -1 +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/
sq: {}

View File

@ -1 +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/
sv: {}

View File

@ -1 +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/
te: {}

View File

@ -1 +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/
th: {}

View File

@ -1,3 +1,10 @@
# 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/
tr_TR:
admin_js:
admin:

View File

@ -1 +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/
uk: {}

View File

@ -1 +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/
ur: {}

View File

@ -1 +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/
vi: {}

View File

@ -1,3 +1,10 @@
# 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/
zh_CN:
admin_js:
admin:

View File

@ -1,3 +1,10 @@
# 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/
zh_TW:
admin_js:
admin:

View File

@ -1,3 +1,10 @@
# 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/
ar:
site_settings:
dfp_publisher_id: "ضع الشفرة الخاصة بشبكتك, التي يمكنك العثور عليها في اعدادات شبكتك."

View File

@ -1 +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/
bs_BA: {}

View File

@ -1 +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/
cs: {}

View File

@ -1 +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/
da: {}

View File

@ -1,3 +1,10 @@
# 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/
de:
site_settings:
dfp_publisher_id: "Gib deinen Netzwerkschlüssel ein, den du in deinen Netzwerkeinstellungen findest."

View File

@ -1,3 +1,10 @@
# 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/
el:
site_settings:
dfp_publisher_id: "Input your network code, which is found in your network settings."

View File

@ -1 +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/
eo: {}

View File

@ -1,29 +1,36 @@
# 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/
es:
site_settings:
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 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_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_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 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 del anuncio para mostrarse arriba del título del tema en la página del tema desde el 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_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_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_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 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 del anuncio a 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_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_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 (máx 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 (max 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 para ver al final de un post en 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_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_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"
@ -32,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 tamaño de anuncio"
adsense_mobile_topic_list_top_ad_size: "Selecciona el tamaño del 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 tamaño de anuncio"
adsense_mobile_topic_above_post_stream_ad_size: "Selecciona el tamaño del 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 tamaño de anuncio"
adsense_mobile_topic_above_suggested_ad_size: "Selecciona el tamaño del 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 tamaño de anuncio"
adsense_mobile_post_bottom_ad_size: "Selecciona el tamaño del 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"

View File

@ -1 +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/
et: {}

View File

@ -1,3 +1,10 @@
# 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/
fa_IR:
site_settings:
dfp_publisher_id: "کد شبکه خود را وارد کنید، در بخش تنظیمات شبکه می توانید آنرا بیابید."

View File

@ -1,3 +1,10 @@
# 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/
fi:
site_settings:
dfp_publisher_id: "Network code, jonka löydät verkkoasetuksistasi (network settings)."

View File

@ -1,3 +1,10 @@
# 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/
fr:
site_settings:
dfp_publisher_id: "Votre code 'Référence éditeur'"

View File

@ -1 +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/
gl: {}

View File

@ -1,3 +1,10 @@
# 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/
he:
site_settings:
dfp_publisher_id: "הכניסו את קוד הרשת שלכם, שנמצא בהגדרות הרשת."

View File

@ -1 +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/
id: {}

View File

@ -1,3 +1,10 @@
# 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/
it:
site_settings:
dfp_publisher_id: "Inserisci il codice della rete che si trova nelle impostazioni di rete."

View File

@ -1 +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/
ja: {}

View File

@ -1 +1,71 @@
ko: {}
# 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/
ko:
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: "몇 개의 포스트 다음에 광고를 표시할까요?"
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: "커스텀 타게팅 값을 입력하세요 - 인벤토리 레벨"
adsense_publisher_code: "퍼블리셔 ID를 입력하세요. 'pub-'를 제외한 숫자만 입력하세요."
adsense_through_trust_level: "사용자 레벨에 맞추어 광고를 표시합니다. 지정된 레벨 이상의 사용자에게는 광고가 보이지 않습니다."
adsense_topic_list_top_ad_sizes: "광고 사이즈를 선택하세요"
adsense_mobile_topic_list_top_ad_size: "광고 사이즈를 선택하세요"
adsense_topic_above_post_stream_ad_sizes: "광고 사이즈를 선택하세요"
adsense_mobile_topic_above_post_stream_ad_size: "광고 사이즈를 선택하세요"
adsense_topic_above_suggested_ad_sizes: "광고 사이즈를 선택하세요"
adsense_mobile_topic_above_suggested_ad_size: "광고 사이즈를 선택하세요"
adsense_post_bottom_ad_sizes: "광고 사이즈를 선택하세요"
adsense_mobile_post_bottom_ad_size: "광고 사이즈를 선택하세요"
adsense_nth_post_code: "몇 개의 포스트 다음에 광고를 표시할까요?"
amazon_through_trust_level: "사용자 레벨에 맞추어 광고를 표시합니다. 지정된 레벨 이상의 사용자에게는 광고가 보이지 않습니다."
amazon_topic_list_top_ad_width_code: "광고 너비를 입력하세요"
amazon_topic_list_top_ad_height_code: "광고 높이를 입력하세요"
amazon_mobile_topic_list_top_ad_width_code: "광고 너비를 입력하세요 (모바일)"
amazon_mobile_topic_list_top_ad_height_code: "광고 높이를 입력하세요 (모바일)"
amazon_topic_above_post_stream_src_code: "포스트 스트림 상단에 표시할 광고의 src 코드를 입력하세요"
amazon_topic_above_post_stream_ad_width_code: "광고 너비를 입력하세요"
amazon_topic_above_post_stream_ad_height_code: "광고 높이를 입력하세요"
amazon_mobile_topic_above_post_stream_src_code: "포스트 스트림 상단에 표시할 모바일 광고의 src 코드를 입력하세요"
amazon_mobile_topic_above_post_stream_ad_width_code: "광고 너비를 입력하세요 (모바일)"
amazon_mobile_topic_above_post_stream_ad_height_code: "광고 높이를 입력하세요 (모바일)"
amazon_topic_above_suggested_src_code: "제안 토픽 위에 표시할 src 코드를 입력하세요"
amazon_topic_above_suggested_ad_width_code: "광고 너비를 입력하세요"
amazon_topic_above_suggested_ad_height_code: "광고 높이를 입력하세요"
amazon_mobile_topic_above_suggested_src_code: "제안 토픽란 위에 표시할 모바일 광고의 src 코드를 입력하세요"
amazon_mobile_topic_above_suggested_ad_width_code: "광고 너비를 입력하세요 (모바일)"
amazon_mobile_topic_above_suggested_ad_height_code: "광고 높이를 입력하세요 (모바일)"
amazon_post_bottom_src_code: "포스트 아래에 표시할 광고의 src 코드를 입력하세요"
amazon_post_bottom_ad_width_code: "광고 너비를 입력하세요"
amazon_post_bottom_ad_height_code: "광고 높이를 입력하세요"
amazon_mobile_post_bottom_src_code: "포스트 아래에 표시할 모바일 광고의 src 코드를 입력하세요"
amazon_mobile_post_bottom_ad_width_code: "광고 너비를 입력하세요 (모바일)"
amazon_mobile_post_bottom_ad_height_code: "광고 높이를 입력하세요 (모바일)"
amazon_nth_post_code: "몇 개의 포스트 다음에 광고를 표시할까요?"

View File

@ -1 +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/
lv: {}

View File

@ -1,3 +1,10 @@
# 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/
nb_NO:
site_settings:
dfp_publisher_id: "Skriv inn din nettverkskode, som er å finne i nettverksinnstillingene."

View File

@ -1 +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/
nl: {}

View File

@ -1,3 +1,10 @@
# 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/
pl_PL:
site_settings:
dfp_through_trust_level: "Pokaż reklamy swoim użytkownikom na podstawie poziomu zaufania. Użytkownicy z poziomem zaufania wyższym niż ta wartość, nie zobaczą reklam."

View File

@ -1,3 +1,10 @@
# 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/
pt_BR:
site_settings:
dfp_publisher_id: "Entre com o seu código de rede, o qual é encontrado nas suas configurações de rede."

View File

@ -1 +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/
ro: {}

View File

@ -1,3 +1,10 @@
# 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/
ru:
site_settings:
dfp_publisher_id: "Введите код вашей сети, который может быть найден в настройках сети."

View File

@ -1 +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/
sk: {}

View File

@ -1 +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/
sq: {}

View File

@ -1 +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/
sv: {}

View File

@ -1 +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/
te: {}

View File

@ -1 +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/
th: {}

View File

@ -1 +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/
tr_TR: {}

View File

@ -1,3 +1,10 @@
# 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/
uk:
site_settings:
adsense_topic_list_top_ad_sizes: "Виберіть розмір вашої реклами"

View File

@ -1 +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/
ur: {}

View File

@ -1 +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/
vi: {}

View File

@ -1,3 +1,10 @@
# 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/
zh_CN:
site_settings:
dfp_publisher_id: "输入DFP出版者ID号码"

View File

@ -1 +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/
zh_TW: {}