28 | {{/if}}
--------------------------------------------------------------------------------
/COPYRIGHT.txt:
--------------------------------------------------------------------------------
1 | All code in this repository is Copyright 2018 by Angus McLeod.
2 |
3 | This program is free software; you can redistribute it and/or modify
4 | it under the terms of the GNU General Public License as published by
5 | the Free Software Foundation; either version 2 of the License, or (at
6 | your option) any later version.
7 |
8 | This program is distributed in the hope that it will be useful, but
9 | WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
10 | or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
11 | for more details.
12 |
13 | You should have received a copy of the GNU General Public License
14 | along with this program as the file LICENSE.txt; if not, please see
15 | http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
16 |
--------------------------------------------------------------------------------
/lib/ratings/cache.rb:
--------------------------------------------------------------------------------
1 | # frozen_string_literal: true
2 | class DiscourseRatings::Cache
3 | def initialize(key)
4 | @key = "#{DiscourseRatings::PLUGIN_NAME}_#{key}"
5 | end
6 |
7 | def read
8 | cache.read(@key)
9 | end
10 |
11 | def write(data)
12 | synchronize { cache.write(@key, data) }
13 | end
14 |
15 | def delete
16 | synchronize { cache.delete(@key) }
17 | end
18 |
19 | def synchronize
20 | DistributedMutex.synchronize(@key) { yield }
21 | end
22 |
23 | def cache
24 | @cache ||= Discourse.cache
25 | end
26 |
27 | def self.wrap(key, &block)
28 | c = new(key)
29 |
30 | if cached = c.read
31 | cached
32 | else
33 | result = block.call()
34 | c.write(result)
35 | result
36 | end
37 | end
38 | end
39 |
--------------------------------------------------------------------------------
/extensions/post_revisor.rb:
--------------------------------------------------------------------------------
1 | # frozen_string_literal: true
2 | module PostRevisorRatingsExtension
3 | def ratings_cache
4 | DiscourseRatings::Cache.new("update_#{@post.id}")
5 | end
6 |
7 | def ratings
8 | @ratings ||= ratings_cache.read
9 | end
10 |
11 | def clear_ratings_cache!
12 | ratings_cache.delete
13 | @ratings = nil
14 | end
15 |
16 | def should_revise?
17 | super || ratings_changed?
18 | end
19 |
20 | def ratings_changed?
21 | return false unless ratings.present?
22 | return true unless @post.ratings.present?
23 | return true if @post.ratings.length != ratings.length
24 |
25 | ratings.any? do |r|
26 | @post.ratings.any? do |pr|
27 | pr.type === r.type && (pr.value != r.value || pr.weight != r.weight)
28 | end
29 | end
30 | end
31 | end
32 |
--------------------------------------------------------------------------------
/app/views/connectors/topic_header/aggregate_rating.html.erb:
--------------------------------------------------------------------------------
1 | <% if @topic_view.topic.ratings.present? %>
2 |
`;
99 | }
100 |
101 | function request(type, path = "", data = {}) {
102 | return ajax(`/ratings/${path}`, {
103 | type,
104 | data,
105 | }).catch(popupAjaxError);
106 | }
107 |
108 | export { ratingListHtml, request };
109 |
--------------------------------------------------------------------------------
/config/locales/client.bo.yml:
--------------------------------------------------------------------------------
1 | bo:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | other: "ratings"
16 | tip:
17 | ratings:
18 | title: "Rating"
19 | details: >
20 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
21 | filters:
22 | ratings:
23 | title: "Ratings"
24 | help: "List latest ratings."
25 | admin_js:
26 | admin:
27 | ratings:
28 | settings_page: "Ratings"
29 | type:
30 | title: "Types"
31 | label: "Type"
32 | none: "No types."
33 | type_placeholder: "Hidden, dasherized and uneditable."
34 | name: "Name"
35 | name_placeholder: "Visible, sentence case and editable."
36 | none_type: "None"
37 | none_type_description: "For ratings without a type"
38 | select: "Select type"
39 | new: "New"
40 | add: "Add"
41 | update: "Save"
42 | destroy: "Delete"
43 | confirm_destroy: >
44 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
45 | enabled: "Enabled"
46 | category:
47 | title: "Categories"
48 | name: "Category"
49 | none: "No rating categories"
50 | tag:
51 | title: "Tags"
52 | name: "Tag"
53 | none: "No rating tags"
54 | migrate:
55 | title: "Migrate"
56 | description: >
57 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
58 | btn: "Migrate"
59 | started: "The migration has started. It may take a few minutes to complete."
60 | destroy:
61 | title: "Destroy"
62 | description: >
63 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
64 | btn: "Destroy"
65 | started: "The destruction has started. It may take a few minutes to complete."
66 | error:
67 | object_already_exists: "Entry for {{objectType}} already exists"
68 | migration_failed_to_start: "Migration failed to start"
69 | site_settings:
70 | rating_enabled: "Enable ratings."
71 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
72 | rating_show_count: "Show rating counts in topic next to average rating."
73 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
74 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
75 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
76 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
77 |
--------------------------------------------------------------------------------
/config/locales/client.id.yml:
--------------------------------------------------------------------------------
1 | id:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | other: "ratings"
16 | tip:
17 | ratings:
18 | title: "Rating"
19 | details: >
20 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
21 | filters:
22 | ratings:
23 | title: "Ratings"
24 | help: "List latest ratings."
25 | admin_js:
26 | admin:
27 | ratings:
28 | settings_page: "Ratings"
29 | type:
30 | title: "Types"
31 | label: "Type"
32 | none: "No types."
33 | type_placeholder: "Hidden, dasherized and uneditable."
34 | name: "Name"
35 | name_placeholder: "Visible, sentence case and editable."
36 | none_type: "None"
37 | none_type_description: "For ratings without a type"
38 | select: "Select type"
39 | new: "New"
40 | add: "Add"
41 | update: "Save"
42 | destroy: "Delete"
43 | confirm_destroy: >
44 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
45 | enabled: "Enabled"
46 | category:
47 | title: "Categories"
48 | name: "Category"
49 | none: "No rating categories"
50 | tag:
51 | title: "Tags"
52 | name: "Tag"
53 | none: "No rating tags"
54 | migrate:
55 | title: "Migrate"
56 | description: >
57 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
58 | btn: "Migrate"
59 | started: "The migration has started. It may take a few minutes to complete."
60 | destroy:
61 | title: "Destroy"
62 | description: >
63 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
64 | btn: "Destroy"
65 | started: "The destruction has started. It may take a few minutes to complete."
66 | error:
67 | object_already_exists: "Entry for {{objectType}} already exists"
68 | migration_failed_to_start: "Migration failed to start"
69 | site_settings:
70 | rating_enabled: "Enable ratings."
71 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
72 | rating_show_count: "Show rating counts in topic next to average rating."
73 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
74 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
75 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
76 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
77 |
--------------------------------------------------------------------------------
/config/locales/client.ja.yml:
--------------------------------------------------------------------------------
1 | ja:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | other: "ratings"
16 | tip:
17 | ratings:
18 | title: "Rating"
19 | details: >
20 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
21 | filters:
22 | ratings:
23 | title: "Ratings"
24 | help: "List latest ratings."
25 | admin_js:
26 | admin:
27 | ratings:
28 | settings_page: "Ratings"
29 | type:
30 | title: "Types"
31 | label: "Type"
32 | none: "No types."
33 | type_placeholder: "Hidden, dasherized and uneditable."
34 | name: "Name"
35 | name_placeholder: "Visible, sentence case and editable."
36 | none_type: "None"
37 | none_type_description: "For ratings without a type"
38 | select: "Select type"
39 | new: "New"
40 | add: "Add"
41 | update: "Save"
42 | destroy: "Delete"
43 | confirm_destroy: >
44 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
45 | enabled: "Enabled"
46 | category:
47 | title: "Categories"
48 | name: "Category"
49 | none: "No rating categories"
50 | tag:
51 | title: "Tags"
52 | name: "Tag"
53 | none: "No rating tags"
54 | migrate:
55 | title: "Migrate"
56 | description: >
57 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
58 | btn: "Migrate"
59 | started: "The migration has started. It may take a few minutes to complete."
60 | destroy:
61 | title: "Destroy"
62 | description: >
63 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
64 | btn: "Destroy"
65 | started: "The destruction has started. It may take a few minutes to complete."
66 | error:
67 | object_already_exists: "Entry for {{objectType}} already exists"
68 | migration_failed_to_start: "Migration failed to start"
69 | site_settings:
70 | rating_enabled: "Enable ratings."
71 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
72 | rating_show_count: "Show rating counts in topic next to average rating."
73 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
74 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
75 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
76 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
77 |
--------------------------------------------------------------------------------
/config/locales/client.km.yml:
--------------------------------------------------------------------------------
1 | km:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | other: "ratings"
16 | tip:
17 | ratings:
18 | title: "Rating"
19 | details: >
20 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
21 | filters:
22 | ratings:
23 | title: "Ratings"
24 | help: "List latest ratings."
25 | admin_js:
26 | admin:
27 | ratings:
28 | settings_page: "Ratings"
29 | type:
30 | title: "Types"
31 | label: "Type"
32 | none: "No types."
33 | type_placeholder: "Hidden, dasherized and uneditable."
34 | name: "Name"
35 | name_placeholder: "Visible, sentence case and editable."
36 | none_type: "None"
37 | none_type_description: "For ratings without a type"
38 | select: "Select type"
39 | new: "New"
40 | add: "Add"
41 | update: "Save"
42 | destroy: "Delete"
43 | confirm_destroy: >
44 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
45 | enabled: "Enabled"
46 | category:
47 | title: "Categories"
48 | name: "Category"
49 | none: "No rating categories"
50 | tag:
51 | title: "Tags"
52 | name: "Tag"
53 | none: "No rating tags"
54 | migrate:
55 | title: "Migrate"
56 | description: >
57 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
58 | btn: "Migrate"
59 | started: "The migration has started. It may take a few minutes to complete."
60 | destroy:
61 | title: "Destroy"
62 | description: >
63 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
64 | btn: "Destroy"
65 | started: "The destruction has started. It may take a few minutes to complete."
66 | error:
67 | object_already_exists: "Entry for {{objectType}} already exists"
68 | migration_failed_to_start: "Migration failed to start"
69 | site_settings:
70 | rating_enabled: "Enable ratings."
71 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
72 | rating_show_count: "Show rating counts in topic next to average rating."
73 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
74 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
75 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
76 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
77 |
--------------------------------------------------------------------------------
/config/locales/client.ko.yml:
--------------------------------------------------------------------------------
1 | ko:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | other: "ratings"
16 | tip:
17 | ratings:
18 | title: "Rating"
19 | details: >
20 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
21 | filters:
22 | ratings:
23 | title: "Ratings"
24 | help: "List latest ratings."
25 | admin_js:
26 | admin:
27 | ratings:
28 | settings_page: "Ratings"
29 | type:
30 | title: "Types"
31 | label: "Type"
32 | none: "No types."
33 | type_placeholder: "Hidden, dasherized and uneditable."
34 | name: "Name"
35 | name_placeholder: "Visible, sentence case and editable."
36 | none_type: "None"
37 | none_type_description: "For ratings without a type"
38 | select: "Select type"
39 | new: "New"
40 | add: "Add"
41 | update: "Save"
42 | destroy: "Delete"
43 | confirm_destroy: >
44 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
45 | enabled: "Enabled"
46 | category:
47 | title: "Categories"
48 | name: "Category"
49 | none: "No rating categories"
50 | tag:
51 | title: "Tags"
52 | name: "Tag"
53 | none: "No rating tags"
54 | migrate:
55 | title: "Migrate"
56 | description: >
57 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
58 | btn: "Migrate"
59 | started: "The migration has started. It may take a few minutes to complete."
60 | destroy:
61 | title: "Destroy"
62 | description: >
63 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
64 | btn: "Destroy"
65 | started: "The destruction has started. It may take a few minutes to complete."
66 | error:
67 | object_already_exists: "Entry for {{objectType}} already exists"
68 | migration_failed_to_start: "Migration failed to start"
69 | site_settings:
70 | rating_enabled: "Enable ratings."
71 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
72 | rating_show_count: "Show rating counts in topic next to average rating."
73 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
74 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
75 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
76 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
77 |
--------------------------------------------------------------------------------
/config/locales/client.lo.yml:
--------------------------------------------------------------------------------
1 | lo:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | other: "ratings"
16 | tip:
17 | ratings:
18 | title: "Rating"
19 | details: >
20 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
21 | filters:
22 | ratings:
23 | title: "Ratings"
24 | help: "List latest ratings."
25 | admin_js:
26 | admin:
27 | ratings:
28 | settings_page: "Ratings"
29 | type:
30 | title: "Types"
31 | label: "Type"
32 | none: "No types."
33 | type_placeholder: "Hidden, dasherized and uneditable."
34 | name: "Name"
35 | name_placeholder: "Visible, sentence case and editable."
36 | none_type: "None"
37 | none_type_description: "For ratings without a type"
38 | select: "Select type"
39 | new: "New"
40 | add: "Add"
41 | update: "Save"
42 | destroy: "Delete"
43 | confirm_destroy: >
44 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
45 | enabled: "Enabled"
46 | category:
47 | title: "Categories"
48 | name: "Category"
49 | none: "No rating categories"
50 | tag:
51 | title: "Tags"
52 | name: "Tag"
53 | none: "No rating tags"
54 | migrate:
55 | title: "Migrate"
56 | description: >
57 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
58 | btn: "Migrate"
59 | started: "The migration has started. It may take a few minutes to complete."
60 | destroy:
61 | title: "Destroy"
62 | description: >
63 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
64 | btn: "Destroy"
65 | started: "The destruction has started. It may take a few minutes to complete."
66 | error:
67 | object_already_exists: "Entry for {{objectType}} already exists"
68 | migration_failed_to_start: "Migration failed to start"
69 | site_settings:
70 | rating_enabled: "Enable ratings."
71 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
72 | rating_show_count: "Show rating counts in topic next to average rating."
73 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
74 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
75 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
76 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
77 |
--------------------------------------------------------------------------------
/config/locales/client.ms.yml:
--------------------------------------------------------------------------------
1 | ms:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | other: "ratings"
16 | tip:
17 | ratings:
18 | title: "Rating"
19 | details: >
20 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
21 | filters:
22 | ratings:
23 | title: "Ratings"
24 | help: "List latest ratings."
25 | admin_js:
26 | admin:
27 | ratings:
28 | settings_page: "Ratings"
29 | type:
30 | title: "Types"
31 | label: "Type"
32 | none: "No types."
33 | type_placeholder: "Hidden, dasherized and uneditable."
34 | name: "Name"
35 | name_placeholder: "Visible, sentence case and editable."
36 | none_type: "None"
37 | none_type_description: "For ratings without a type"
38 | select: "Select type"
39 | new: "New"
40 | add: "Add"
41 | update: "Save"
42 | destroy: "Delete"
43 | confirm_destroy: >
44 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
45 | enabled: "Enabled"
46 | category:
47 | title: "Categories"
48 | name: "Category"
49 | none: "No rating categories"
50 | tag:
51 | title: "Tags"
52 | name: "Tag"
53 | none: "No rating tags"
54 | migrate:
55 | title: "Migrate"
56 | description: >
57 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
58 | btn: "Migrate"
59 | started: "The migration has started. It may take a few minutes to complete."
60 | destroy:
61 | title: "Destroy"
62 | description: >
63 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
64 | btn: "Destroy"
65 | started: "The destruction has started. It may take a few minutes to complete."
66 | error:
67 | object_already_exists: "Entry for {{objectType}} already exists"
68 | migration_failed_to_start: "Migration failed to start"
69 | site_settings:
70 | rating_enabled: "Enable ratings."
71 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
72 | rating_show_count: "Show rating counts in topic next to average rating."
73 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
74 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
75 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
76 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
77 |
--------------------------------------------------------------------------------
/config/locales/client.th.yml:
--------------------------------------------------------------------------------
1 | th:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | other: "ratings"
16 | tip:
17 | ratings:
18 | title: "Rating"
19 | details: >
20 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
21 | filters:
22 | ratings:
23 | title: "Ratings"
24 | help: "List latest ratings."
25 | admin_js:
26 | admin:
27 | ratings:
28 | settings_page: "Ratings"
29 | type:
30 | title: "Types"
31 | label: "Type"
32 | none: "No types."
33 | type_placeholder: "Hidden, dasherized and uneditable."
34 | name: "Name"
35 | name_placeholder: "Visible, sentence case and editable."
36 | none_type: "None"
37 | none_type_description: "For ratings without a type"
38 | select: "Select type"
39 | new: "New"
40 | add: "Add"
41 | update: "Save"
42 | destroy: "Delete"
43 | confirm_destroy: >
44 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
45 | enabled: "Enabled"
46 | category:
47 | title: "Categories"
48 | name: "Category"
49 | none: "No rating categories"
50 | tag:
51 | title: "Tags"
52 | name: "Tag"
53 | none: "No rating tags"
54 | migrate:
55 | title: "Migrate"
56 | description: >
57 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
58 | btn: "Migrate"
59 | started: "The migration has started. It may take a few minutes to complete."
60 | destroy:
61 | title: "Destroy"
62 | description: >
63 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
64 | btn: "Destroy"
65 | started: "The destruction has started. It may take a few minutes to complete."
66 | error:
67 | object_already_exists: "Entry for {{objectType}} already exists"
68 | migration_failed_to_start: "Migration failed to start"
69 | site_settings:
70 | rating_enabled: "Enable ratings."
71 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
72 | rating_show_count: "Show rating counts in topic next to average rating."
73 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
74 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
75 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
76 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
77 |
--------------------------------------------------------------------------------
/config/locales/client.tt.yml:
--------------------------------------------------------------------------------
1 | tt:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | other: "ratings"
16 | tip:
17 | ratings:
18 | title: "Rating"
19 | details: >
20 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
21 | filters:
22 | ratings:
23 | title: "Ratings"
24 | help: "List latest ratings."
25 | admin_js:
26 | admin:
27 | ratings:
28 | settings_page: "Ratings"
29 | type:
30 | title: "Types"
31 | label: "Type"
32 | none: "No types."
33 | type_placeholder: "Hidden, dasherized and uneditable."
34 | name: "Name"
35 | name_placeholder: "Visible, sentence case and editable."
36 | none_type: "None"
37 | none_type_description: "For ratings without a type"
38 | select: "Select type"
39 | new: "New"
40 | add: "Add"
41 | update: "Save"
42 | destroy: "Delete"
43 | confirm_destroy: >
44 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
45 | enabled: "Enabled"
46 | category:
47 | title: "Categories"
48 | name: "Category"
49 | none: "No rating categories"
50 | tag:
51 | title: "Tags"
52 | name: "Tag"
53 | none: "No rating tags"
54 | migrate:
55 | title: "Migrate"
56 | description: >
57 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
58 | btn: "Migrate"
59 | started: "The migration has started. It may take a few minutes to complete."
60 | destroy:
61 | title: "Destroy"
62 | description: >
63 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
64 | btn: "Destroy"
65 | started: "The destruction has started. It may take a few minutes to complete."
66 | error:
67 | object_already_exists: "Entry for {{objectType}} already exists"
68 | migration_failed_to_start: "Migration failed to start"
69 | site_settings:
70 | rating_enabled: "Enable ratings."
71 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
72 | rating_show_count: "Show rating counts in topic next to average rating."
73 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
74 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
75 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
76 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
77 |
--------------------------------------------------------------------------------
/config/locales/client.vi.yml:
--------------------------------------------------------------------------------
1 | vi:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | other: "ratings"
16 | tip:
17 | ratings:
18 | title: "Rating"
19 | details: >
20 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
21 | filters:
22 | ratings:
23 | title: "Ratings"
24 | help: "List latest ratings."
25 | admin_js:
26 | admin:
27 | ratings:
28 | settings_page: "Ratings"
29 | type:
30 | title: "Types"
31 | label: "Type"
32 | none: "No types."
33 | type_placeholder: "Hidden, dasherized and uneditable."
34 | name: "Name"
35 | name_placeholder: "Visible, sentence case and editable."
36 | none_type: "None"
37 | none_type_description: "For ratings without a type"
38 | select: "Select type"
39 | new: "New"
40 | add: "Add"
41 | update: "Save"
42 | destroy: "Delete"
43 | confirm_destroy: >
44 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
45 | enabled: "Enabled"
46 | category:
47 | title: "Categories"
48 | name: "Category"
49 | none: "No rating categories"
50 | tag:
51 | title: "Tags"
52 | name: "Tag"
53 | none: "No rating tags"
54 | migrate:
55 | title: "Migrate"
56 | description: >
57 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
58 | btn: "Migrate"
59 | started: "The migration has started. It may take a few minutes to complete."
60 | destroy:
61 | title: "Destroy"
62 | description: >
63 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
64 | btn: "Destroy"
65 | started: "The destruction has started. It may take a few minutes to complete."
66 | error:
67 | object_already_exists: "Entry for {{objectType}} already exists"
68 | migration_failed_to_start: "Migration failed to start"
69 | site_settings:
70 | rating_enabled: "Enable ratings."
71 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
72 | rating_show_count: "Show rating counts in topic next to average rating."
73 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
74 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
75 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
76 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
77 |
--------------------------------------------------------------------------------
/config/locales/client.zh.yml:
--------------------------------------------------------------------------------
1 | zh-TW:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | other: "ratings"
16 | tip:
17 | ratings:
18 | title: "Rating"
19 | details: >
20 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
21 | filters:
22 | ratings:
23 | title: "Ratings"
24 | help: "List latest ratings."
25 | admin_js:
26 | admin:
27 | ratings:
28 | settings_page: "Ratings"
29 | type:
30 | title: "Types"
31 | label: "Type"
32 | none: "No types."
33 | type_placeholder: "Hidden, dasherized and uneditable."
34 | name: "Name"
35 | name_placeholder: "Visible, sentence case and editable."
36 | none_type: "None"
37 | none_type_description: "For ratings without a type"
38 | select: "Select type"
39 | new: "New"
40 | add: "Add"
41 | update: "Save"
42 | destroy: "Delete"
43 | confirm_destroy: >
44 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
45 | enabled: "Enabled"
46 | category:
47 | title: "Categories"
48 | name: "Category"
49 | none: "No rating categories"
50 | tag:
51 | title: "Tags"
52 | name: "Tag"
53 | none: "No rating tags"
54 | migrate:
55 | title: "Migrate"
56 | description: >
57 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
58 | btn: "Migrate"
59 | started: "The migration has started. It may take a few minutes to complete."
60 | destroy:
61 | title: "Destroy"
62 | description: >
63 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
64 | btn: "Destroy"
65 | started: "The destruction has started. It may take a few minutes to complete."
66 | error:
67 | object_already_exists: "Entry for {{objectType}} already exists"
68 | migration_failed_to_start: "Migration failed to start"
69 | site_settings:
70 | rating_enabled: "Enable ratings."
71 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
72 | rating_show_count: "Show rating counts in topic next to average rating."
73 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
74 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
75 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
76 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
77 |
--------------------------------------------------------------------------------
/config/locales/client.af.yml:
--------------------------------------------------------------------------------
1 | af:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.az.yml:
--------------------------------------------------------------------------------
1 | az:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.bg.yml:
--------------------------------------------------------------------------------
1 | bg:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.bn.yml:
--------------------------------------------------------------------------------
1 | bn:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.ca.yml:
--------------------------------------------------------------------------------
1 | ca:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.da.yml:
--------------------------------------------------------------------------------
1 | da:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.de.yml:
--------------------------------------------------------------------------------
1 | de:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.el.yml:
--------------------------------------------------------------------------------
1 | el:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.eo.yml:
--------------------------------------------------------------------------------
1 | eo:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.et.yml:
--------------------------------------------------------------------------------
1 | et:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.eu.yml:
--------------------------------------------------------------------------------
1 | eu:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.fa.yml:
--------------------------------------------------------------------------------
1 | fa:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.fi.yml:
--------------------------------------------------------------------------------
1 | fi:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.gl.yml:
--------------------------------------------------------------------------------
1 | gl:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.hi.yml:
--------------------------------------------------------------------------------
1 | hi:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.hu.yml:
--------------------------------------------------------------------------------
1 | hu:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.hy.yml:
--------------------------------------------------------------------------------
1 | hy:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.is.yml:
--------------------------------------------------------------------------------
1 | is:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.ka.yml:
--------------------------------------------------------------------------------
1 | ka:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.kk.yml:
--------------------------------------------------------------------------------
1 | kk:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.kn.yml:
--------------------------------------------------------------------------------
1 | kn:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.ku.yml:
--------------------------------------------------------------------------------
1 | ku:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.mk.yml:
--------------------------------------------------------------------------------
1 | mk:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.ml.yml:
--------------------------------------------------------------------------------
1 | ml:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.mn.yml:
--------------------------------------------------------------------------------
1 | mn:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.ne.yml:
--------------------------------------------------------------------------------
1 | ne:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.nl.yml:
--------------------------------------------------------------------------------
1 | nl:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.om.yml:
--------------------------------------------------------------------------------
1 | om:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------
/config/locales/client.pa.yml:
--------------------------------------------------------------------------------
1 | pa:
2 | js:
3 | category:
4 | ratings:
5 | heading: "Ratings"
6 | enabled: "Enable ratings in this category."
7 | types: "Rating types enabled in this category."
8 | composer:
9 | your_rating: "Add a rating"
10 | select_rating: "All checked ratings must have a rating."
11 | topic:
12 | hidden_ratings: "Topic has hidden ratings"
13 | no_ratings: "No ratings yet"
14 | x_rating_count:
15 | one: "rating"
16 | other: "ratings"
17 | tip:
18 | ratings:
19 | title: "Rating"
20 | details: >
21 | You can rate in this topic. Each rating is attached to a post and you can post without rating.
22 | filters:
23 | ratings:
24 | title: "Ratings"
25 | help: "List latest ratings."
26 | admin_js:
27 | admin:
28 | ratings:
29 | settings_page: "Ratings"
30 | type:
31 | title: "Types"
32 | label: "Type"
33 | none: "No types."
34 | type_placeholder: "Hidden, dasherized and uneditable."
35 | name: "Name"
36 | name_placeholder: "Visible, sentence case and editable."
37 | none_type: "None"
38 | none_type_description: "For ratings without a type"
39 | select: "Select type"
40 | new: "New"
41 | add: "Add"
42 | update: "Save"
43 | destroy: "Delete"
44 | confirm_destroy: >
45 | Are you sure you want to delete this type? All ratings with this type will be irreversibly destroyed. If there are ratings with this type you wish to keep, migrate them to a new type before taking this action.
46 | enabled: "Enabled"
47 | category:
48 | title: "Categories"
49 | name: "Category"
50 | none: "No rating categories"
51 | tag:
52 | title: "Tags"
53 | name: "Tag"
54 | none: "No rating tags"
55 | migrate:
56 | title: "Migrate"
57 | description: >
58 | You can migrate ratings to or from type "None" on a per-category basis. Topics that already have the target type are excluded from the migration.
59 | btn: "Migrate"
60 | started: "The migration has started. It may take a few minutes to complete."
61 | destroy:
62 | title: "Destroy"
63 | description: >
64 | You can irreversibly destroy ratings by type on a per-category basis. Topics and posts associated with ratings will be unaffected.
65 | btn: "Destroy"
66 | started: "The destruction has started. It may take a few minutes to complete."
67 | error:
68 | object_already_exists: "Entry for {{objectType}} already exists"
69 | migration_failed_to_start: "Migration failed to start"
70 | site_settings:
71 | rating_enabled: "Enable ratings."
72 | rating_show_numeric_average: "Show the numerical average next to topic rating inputs."
73 | rating_show_count: "Show rating counts in topic next to average rating."
74 | rating_show_topic_tip: "Show a tip about the mechanics of rating topics under the titles of rating topics"
75 | rating_topic_average_enabled: "Show the average of all ratings in a topic under the topic title."
76 | rating_topic_list_average_enabled: "Show the average of all ratings in a topic in the topic list item."
77 | rating_hide_except_own_entry: "Show only user's own rating entries and topic average"
78 |
--------------------------------------------------------------------------------