-
{lang.t('configure.custom-css-url')}
-
{lang.t('configure.custom-css-url-desc')}
+
{lang.t('configure.custom_css_url')}
+
{lang.t('configure.custom_css_url_desc')}
(
- {lang.t('configure.banned-words-title')}
- {lang.t('configure.banned-word-text')}
+ {lang.t('configure.banned_words_title')}
+ {lang.t('configure.banned_word_text')}
(
- {lang.t('configure.suspect-words-title')}
- {lang.t('configure.suspect-word-text')}
+ {lang.t('configure.suspect_words_title')}
+ {lang.t('configure.suspect_word_text')}
{
label={lang.t('CREATE.CONFIRM_PASSWORD')}
onChange={handleUserChange}
showErrors={install.showErrors}
- errorMsg={install.errors.confirmPassword}
+ errorMsg={install.errors.confirm_password}
/>
{
diff --git a/client/coral-admin/src/containers/Stories/Stories.js b/client/coral-admin/src/containers/Stories/Stories.js
index 5bfbed9d4..0a9b9f5a6 100644
--- a/client/coral-admin/src/containers/Stories/Stories.js
+++ b/client/coral-admin/src/containers/Stories/Stories.js
@@ -135,7 +135,7 @@ class Stories extends Component {
{lang.t('streams.open')}
{lang.t('streams.closed')}
- {lang.t('streams.sort-by')}
+ {lang.t('streams.sort_by')}
{lang.t('streams.open')}
{lang.t('streams.closed')}
- {lang.t('streams.sort-by')}
+ {lang.t('streams.sort_by')}
(
status === 'open' ? (
- {lang.t('configure.open-stream-configuration')}
+ {lang.t('configure.open_stream_configuration')}
-
+
) : (
- {lang.t('configure.close-stream-configuration')}
+ {lang.t('configure.close_stream_configuration')}
-
+
)
);
diff --git a/client/coral-configure/components/ConfigureCommentStream.js b/client/coral-configure/components/ConfigureCommentStream.js
index fe93f3272..d4c00dca1 100644
--- a/client/coral-configure/components/ConfigureCommentStream.js
+++ b/client/coral-configure/components/ConfigureCommentStream.js
@@ -29,8 +29,8 @@ export default ({handleChange, handleApply, changed, ...props}) => (
onChange={handleChange}
defaultChecked={props.premod}
info={{
- title: lang.t('configure.enablePremod'),
- description: lang.t('configure.enablePremodDescription')
+ title: lang.t('configure.enable_premod'),
+ description: lang.t('configure.enable_premod_description')
}} />
@@ -41,8 +41,8 @@ export default ({handleChange, handleApply, changed, ...props}) => (
onChange={handleChange}
defaultChecked={props.premodLinksEnable}
info={{
- title: lang.t('configure.enablePremodLinks'),
- description: lang.t('configure.enablePremodLinksDescription')
+ title: lang.t('configure.enable_premod_links'),
+ description: lang.t('configure.enable_premod_links_description')
}} />
@@ -53,8 +53,8 @@ export default ({handleChange, handleApply, changed, ...props}) => (
onChange={handleChange}
defaultChecked={props.questionBoxEnable}
info={{
- title: lang.t('configure.enableQuestionBox'),
- description: lang.t('configure.enableQuestionBoxDescription')
+ title: lang.t('configure.enable_questionbox'),
+ description: lang.t('configure.enable_questionbox_description')
}} />
(
onChange={handleChange}
rows={3}
value={props.questionBoxContent}
- label={lang.t('configure.includeQuestionHere')}
+ label={lang.t('configure.include_question_here')}
/>
diff --git a/client/coral-embed-stream/src/components/Embed.js b/client/coral-embed-stream/src/components/Embed.js
index 6ce61bd7d..221828942 100644
--- a/client/coral-embed-stream/src/components/Embed.js
+++ b/client/coral-embed-stream/src/components/Embed.js
@@ -57,7 +57,7 @@ export default class Embed extends React.Component {
style={{float: 'right'}}
onClick={viewAllComments}
>
- {lang.t('showAllComments')}
+ {lang.t('framework.show_all_comments')}
}
diff --git a/client/coral-embed-stream/src/components/IgnoredCommentTombstone.js b/client/coral-embed-stream/src/components/IgnoredCommentTombstone.js
index 1bcba012f..5c2104d12 100644
--- a/client/coral-embed-stream/src/components/IgnoredCommentTombstone.js
+++ b/client/coral-embed-stream/src/components/IgnoredCommentTombstone.js
@@ -13,7 +13,7 @@ const IgnoredCommentTombstone = () => (
padding: '1em',
color: '#3E4F71',
}}>
- {lang.t('commentIsIgnored')}
+ {lang.t('framework.comment_is_ignored')}
);
diff --git a/client/coral-embed-stream/src/components/LoadMore.js b/client/coral-embed-stream/src/components/LoadMore.js
index f21ebc9b9..6ec23d255 100644
--- a/client/coral-embed-stream/src/components/LoadMore.js
+++ b/client/coral-embed-stream/src/components/LoadMore.js
@@ -31,13 +31,13 @@ class LoadMore extends React.Component {
replyCountFormat = (count) => {
if (count === 1) {
- return lang.t('viewReply');
+ return lang.t('framework.view_reply');
}
if (this.initialState) {
- return lang.t('viewAllRepliesInitial', count);
+ return lang.t('framework.view_all_repliesInitial', count);
} else {
- return lang.t('viewAllReplies', count);
+ return lang.t('framework.view_all_replies', count);
}
}
@@ -50,7 +50,7 @@ class LoadMore extends React.Component {
this.initialState = false;
loadMoreComments(assetId, comments, loadMore, parentId, replyCount);
}}>
- {topLevel ? lang.t('viewMoreComments') : this.replyCountFormat(replyCount)}
+ {topLevel ? lang.t('framework.view_more_comments') : this.replyCountFormat(replyCount)}
: null;
diff --git a/client/coral-embed-stream/src/components/NewCount.js b/client/coral-embed-stream/src/components/NewCount.js
index 368f83ae4..b4173b4e2 100644
--- a/client/coral-embed-stream/src/components/NewCount.js
+++ b/client/coral-embed-stream/src/components/NewCount.js
@@ -22,8 +22,8 @@ const NewCount = (props) => {
props.commentCountCache && newComments > 0 ?
: null
}
diff --git a/client/coral-framework/actions/asset.js b/client/coral-framework/actions/asset.js
index e7a2fd949..364fd62c0 100644
--- a/client/coral-framework/actions/asset.js
+++ b/client/coral-framework/actions/asset.js
@@ -18,7 +18,7 @@ export const updateConfiguration = newConfig => (dispatch, getState) => {
dispatch(updateAssetSettingsRequest());
coralApi(`/assets/${assetId}/settings`, {method: 'PUT', body: newConfig})
.then(() => {
- dispatch(addNotification('success', lang.t('successUpdateSettings')));
+ dispatch(addNotification('success', lang.t('framework.success_update_settings')));
dispatch(updateAssetSettingsSuccess(newConfig));
})
.catch(error => dispatch(updateAssetSettingsFailure(error)));
@@ -29,7 +29,7 @@ export const updateOpenStream = closedBody => (dispatch, getState) => {
dispatch(fetchAssetRequest());
coralApi(`/assets/${assetId}/status`, {method: 'PUT', body: closedBody})
.then(() => {
- dispatch(addNotification('success', lang.t('successUpdateSettings')));
+ dispatch(addNotification('success', lang.t('framework.success_update_settings')));
dispatch(fetchAssetSuccess(closedBody));
})
.catch(error => dispatch(fetchAssetFailure(error)));
diff --git a/client/coral-framework/actions/auth.js b/client/coral-framework/actions/auth.js
index 3d64007a5..d26cf3257 100644
--- a/client/coral-framework/actions/auth.js
+++ b/client/coral-framework/actions/auth.js
@@ -119,11 +119,11 @@ export const fetchSignIn = (formData) => (dispatch) => {
if (error.metadata) {
// the user might not have a valid email. prompt the user user re-request the confirmation email
- dispatch(signInFailure(lang.t('error.emailNotVerified', error.metadata)));
+ dispatch(signInFailure(lang.t('error.email_not_verified', error.metadata)));
} else {
// invalid credentials
- dispatch(signInFailure(lang.t('error.emailPasswordError')));
+ dispatch(signInFailure(lang.t('error.email_password')));
}
});
};
diff --git a/client/coral-framework/actions/user.js b/client/coral-framework/actions/user.js
index 4177f4e20..06e321110 100644
--- a/client/coral-framework/actions/user.js
+++ b/client/coral-framework/actions/user.js
@@ -12,7 +12,7 @@ export const editName = (username) => (dispatch) => {
return coralApi('/account/username', {method: 'PUT', body: {username}})
.then(() => {
dispatch(editUsernameSuccess());
- dispatch(addNotification('success', lang.t('successNameUpdate')));
+ dispatch(addNotification('success', lang.t('framework.success_name_update')));
})
.catch(error => {
dispatch(editUsernameFailure(lang.t(`error.${error.translation_key}`)));
diff --git a/client/coral-framework/components/RestrictedContent.js b/client/coral-framework/components/RestrictedContent.js
index 2e2b30f56..66246724f 100644
--- a/client/coral-framework/components/RestrictedContent.js
+++ b/client/coral-framework/components/RestrictedContent.js
@@ -4,7 +4,7 @@ import styles from './RestrictedContent.css';
import I18n from 'coral-i18n/modules/i18n/i18n';
const lang = new I18n();
-export default ({children, restricted, message = lang.t('contentNotAvailable'), restrictedComp}) => {
+export default ({children, restricted, message = lang.t('framework.content_not_available'), restrictedComp}) => {
if (restricted) {
return restrictedComp ? restrictedComp : messageBox(message);
} else {
diff --git a/client/coral-framework/components/SuspendedAccount.js b/client/coral-framework/components/SuspendedAccount.js
index 93e42c701..0cd5aa8b1 100644
--- a/client/coral-framework/components/SuspendedAccount.js
+++ b/client/coral-framework/components/SuspendedAccount.js
@@ -31,7 +31,7 @@ class SuspendedAccount extends Component {
this.setState({alert: lang.t(`error.${error.translation_key}`)});
});
} else {
- this.setState({alert: lang.t('editName.error')});
+ this.setState({alert: lang.t('framework.edit_name.error')});
}
}
@@ -43,8 +43,8 @@ class SuspendedAccount extends Component {
return
{
canEditName ?
- lang.t('editName.msg')
- : lang.t('bannedAccountMsg')
+ lang.t('framework.edit_name.msg')
+ : lang.t('framework.banned_account_msg')
}
{
canEditName ?
@@ -56,20 +56,20 @@ class SuspendedAccount extends Component {
htmlFor='username'
className="screen-reader-text"
aria-hidden={true}>
- {lang.t('editName.label')}
+ {lang.t('framework.edit_name.label')}
this.setState({username: e.target.value})}
rows={3}/>
: null
diff --git a/client/coral-framework/helpers/error.js b/client/coral-framework/helpers/error.js
index 58175caf0..36e8c26ca 100644
--- a/client/coral-framework/helpers/error.js
+++ b/client/coral-framework/helpers/error.js
@@ -5,6 +5,6 @@ export default {
email: lang.t('error.email'),
password: lang.t('error.password'),
username: lang.t('error.username'),
- confirmPassword: lang.t('error.confirmPassword'),
- organizationName: lang.t('error.organizationName'),
+ confirmPassword: lang.t('error.confirm_password'),
+ organizationName: lang.t('error.organization_name'),
};
diff --git a/client/coral-i18n/locales/en.yml b/client/coral-i18n/locales/en.yml
index 325ba71b4..e314354bd 100644
--- a/client/coral-i18n/locales/en.yml
+++ b/client/coral-i18n/locales/en.yml
@@ -1,61 +1,290 @@
-framework:
- profile: Profile
- my_profile: My profile
- successUpdateSettings: The changes you have made have been applied to the comment stream on this article
- successNameUpdate: Your username has been updated
- contentNotAvailable: This content is not available
- bannedAccountMsg: Your account is currently suspended. This means that you cannot Like Report or write comments. Please contact us if you have any questions.
- editName:
- msg: Your account is currently suspended because your username has been deemed inappropriate. To restore your account please enter a new username. Please contact us if you have any questions.
- label: New Username
- button: Submit
- error: Usernames can contain letters numbers and _ only
- viewMoreComments: view more comments
- showAllComments: Show all comments
- viewReply: view reply
- viewAllRepliesInitial: view all 0 replies
- viewAllReplies: view 0 replies
- newCount: View 0 new 1
- comment: comment
- comments: comments
- commentIsIgnored: This comment is hidden because you ignored this user.
- my_comments: My Comments
+bandialog:
+ are_you_sure: Are you sure you would like to ban {0}?
+ ban_user: Ban User?
+ cancel: Cancel
+ note: 'Note: Banning this user will also place this comment in the Rejected queue.'
+ yes_ban_user: Yes Ban User
+bio_offensive: This bio is offensive
+cancel: Cancel
+characters_remaining: characters remaining
+comment:
+ anon: Anonymous
+ ban_user: Ban User
+ banned_user: Banned User
+ comment: Post a comment
+ flagged: flagged
+comment_offensive: This comment is offensive
+comment_plural: Comments
+comment_post_banned_word: Your comment contains one or more words that are not permitted, so it will not be published. If you think this message is incorrect, please contact our moderation team.
+comment_post_notif: Your comment has been posted.
+comment_post_notif_premod: Thank you for posting. Our moderation team will review your comment shortly.
+comment_is_best: This comment is one of the best
+community:
+ account_creation_date: Account Creation Date
+ active: Active
+ admin: Administrator
+ are_you_sure: Are you sure you would like to ban {0}?
+ ban_user: Ban User?
+ banned: Banned
+ banned-user: Banned User
+ cancel: Cancel
+ flaggedaccounts: Flagged Usernames
+ flags: Flags
+ loading: Loading results
+ moderator: Moderator
+ newsroom_role: Newsroom Role
+ no-flagged-accounts: The Account Flags queue is currently empty.
+ no-results: No users found with that user name or email address. They're hiding!
+ note: 'Note: Banning this user will not let them edit comment or remove anything.'
+ other: Other
+ people: People
+ role: Select role...
+ select-status: Select status...
+ status: Status
+ username_and_email: Username and Email
+ yes_ban_user: Yes Ban User
+configure:
+ apply: Apply
+ banned_word_text: Comments which contain these words or phrases (not case-sensitive) will be automatically removed from the comment stream. Type a word and press Enter or Tab to add. Optionally paste a comma-separated list.
+ banned_words_title: Banned words list
+ close_after: Close comments after
+ close_stream: Close Stream
+ close_stream_configuration: This comment stream is currently closed. By opening this comment stream new comments may be submitted and displayed
+ closed_comments_desc: Write a message to be displayed when when your comment stream is closed and no longer accepting comments.
+ closed_comments_label: Write a message...
+ closed_stream_settings: Closed Stream Message
+ comment_count_error: Please enter a valid number.
+ comment_count_header: Limit Comment Length
+ comment_count_text_post: characters
+ comment_count_text_pre: Comments will be limited to
+ comment_settings: Settings
+ community: Community
+ configure: Configure
+ copy_and_paste: Copy and paste code below into your CMS to embed your comment box in your articles
+ custom_css_url: Custom CSS URL
+ custom_css_url_desc: URL of a CSS stylesheet that will override default Embed Stream styles. Can be internal or external.
+ dashboard: Dashboard
+ days: Days
+ description: As an admin you may customize the settings for the comment stream for this asset
+ domain_list_text: Enter the domains you would like to permit for Talk e.g. your local staging and production environments (ex. localhost:3000 staging.domain.com domain.com).
+ domain_list_title: Permitted Domains
+ embed_comment_stream: Embed Stream
+ enable_pre_moderation: Enable pre-moderation
+ enable_pre_moderation_text: Moderators must approve any comment before it is published.
+ enable_premod_links: Pre-Moderate Comments Containing Links
+ enable-premod-links-text: Moderators must approve any comment containing a link
+ before its published.
+ enable_premod: Enable Premoderation
+ enable_premod_description: Moderators must approve any comment before its published.
+ enable_premod_links: Pre-Moderate Comments Containing Links
+ enable_premod_links_description: Moderators must approve any comment containing a link before its published.
+ enable_questionbox: Ask readers a question
+ enable_questionbox_description: This question will appear at the top of this comment stream. Ask readers about a certain issue in the article or pose discussion questions etc.
+ hours: Hours
+ include_comment_stream: Include Comment Stream Description for Readers
+ include_comment_stream-desc: Write a message to be added to the top of your comment stream. Pose a topic include community guidelines etc.
+ include_text: Include your text here.
+ include_question_here: Write your question here.
+ moderate: Moderate
+ moderation_settings: Moderation Settings
+ open_stream: Open Stream
+ open_stream_configuration: This comment stream is currently open. By closing this comment stream no new comments may be submitted and all previous comments will still be displayed.
+ require_email_verification: Require Email Verification
+ require_email_verification_text: New Users must verify their email before commenting
+ save_changes: Save Changes
+ shortcuts: Shortcuts
+ sign_out: Sign Out
+ stories: Stories
+ stream_settings: Stream Settings
+ suspect_words_title: Comments which contain these words or phrases (not case-sensitive) will be highlighted in the comment stream. Type a word and press Enter or Tab to add. Optionally paste a comma-separated list.
+ suspect-words-title: Suspect words list
+ tech_settings: Tech Settings
+ title: Configure Comment Stream
+ weeks: Weeks
+ wordlist: Banned Words
+continue: Continue
+createdisplay:
+ check_the_form: Invalid Form. Please check the fields
+ continue: Continue with the same Facebook username
+ error_create: Error when changing username
+ fake_comment_body: This is an example comment. Readers can share their thoughts and opinions with newsrooms in the comments section.
+ fake_comment_date: 1 minute ago
+ if_you_dont_change_your_name: If you don't change your username at this step your Facebook display name will appear alongside of all your comments.
+ required_field: Required field
+ save: Save
+ special_characters: Usernames can contain letters numbers and _ only
+ username: Username
+ write_your_username: Edit your username
+ your_username: Your username appears on every comment you post.
+dashboard:
+ auto_update: Data automatically updates every five minutes or when you Reload.
+ comment_count: comments
+ flags: Flags
+ most_flags: Articles with the most flags
+ next_update: '{0} minutes until next update.'
+ no_activity: There haven't been any comments anywhere in the last five minutes.
+ no_flags: There have been no flags in the last 5 minutes! Hooray!
+ no_likes: There have been no likes in the last 5 minutes. All quiet.
+done: Done
+embedlink:
+ copy: Copy to Clipboard
error:
- emailNotVerified: Email address {0} not verified.
- email: Not a valid E-Mail
- password: Password must be at least 8 characters
- username: Usernames can contain letters numbers and _ only
- confirmPassword: Passwords don't match. Please check again
- organizationName: Organization name must only contain letters or numbers.
- emailPasswordError: Email and/or password combination incorrect.
- EMAIL_REQUIRED: An email address is required
- PASSWORD_REQUIRED: Must input a password
+ edit_username_not_authorized: You do not have permission to update your username.
+ email_in_use: Email address already in use
+ email_required: An email address is required
+ email_username_in_use: Email address or username already in use
+ login_maximum_exceeded: You have made too many unsuccessful password attempts. Please
+ wait.
+ NOT_AUTHORIZED: Your username or password is not recognized by our system.
+ NO_SPECIAL_CHARACTERS: Usernames can contain letters numbers and _ only
PASSWORD_LENGTH: Password is too short
- EMAIL_IN_USE: Email address already in use
- EMAIL_USERNAME_IN_USE: Email address or username already in use
+ PROFANITY_ERROR: Usernames must not contain profanity. Please contact the administrator if you believe this to be in error.
USERNAME_IN_USE: Username already in use
USERNAME_REQUIRED: Must input a username
- NO_SPECIAL_CHARACTERS: Usernames can contain letters numbers and _ only
- PROFANITY_ERROR: Usernames must not contain profanity. Please contact the administrator if you believe this to be in error.
- NOT_AUTHORIZED: Not authorized.
- EDIT_USERNAME_NOT_AUTHORIZED: You do not have permission to update your username.
-configure:
- apply: Apply
- title: Configure Comment Stream
- description: As an admin you may customize the settings for the comment stream for this asset
- enablePremod: Enable Premoderation
- enablePremodDescription: Moderators must approve any comment before its published.
- enablePremodLinks: Pre-Moderate Comments Containing Links
- enablePremodLinksDescription: Moderators must approve any comment containing a link before its published.
- enableQuestionBox: Ask readers a question
- enableQuestionBoxDescription: This question will appear at the top of this comment stream. Ask readers about a certain issue in the article or pose discussion questions etc.
- includeQuestionHere: Write your question here.
+ confirm_password: Passwords don't match. Please check again
+ email: Not a valid E-Mail
+ email_not_verified: Email address {0} not verified.
+ email_password: Email and/or password combination incorrect.
+ organization_name: Organization name must only contain letters or numbers.
+ password: Password must be at least 8 characters
+ password_required: Must input a password
+ username: Usernames can contain letters numbers and _ only
+flag_comment: Report comment
+flag_reason: Reason for reporting (Optional)
+flag_username: Report username
+framework:
+ banned_account_msg: Your account is currently suspended. This means that you cannot Like Report or write comments. Please contact us if you have any questions.
+ comment: comment
+ comment_is_ignored: This comment is hidden because you ignored this user.
+ comments: comments
+ content_not_available: This content is not available
+ edit_name:
+ button: Submit
+ error: Usernames can contain letters numbers and _ only
+ label: New Username
+ msg: Your account is currently suspended because your username has been deemed inappropriate. To restore your account please enter a new username. Please contact us if you have any questions.
+ my_comments: My Comments
+ my_profile: My profile
+ new_count: View 0 new 1
+ profile: Profile
+ show_all_comments: Show all comments
+ success_bio_update: Your biography has been updated
+ success_name_update: Your username has been updated
+ success_update_settings: The changes you have made have been applied to the comment stream on this article
+ view_all_replies: view 0 replies
+ view_all_replies_initial: view all 0 replies
+ view_more_comments: view more comments
+ view_reply: view reply
+fromSettingsPage: From the Profile Page you can see your comment history.
+like: Like
+marketing: This looks like an ad/marketing
+moderate_this_stream: Moderate this stream
+modqueue:
+ account: account flags
+ actions: Actions
+ all: all
+ approve: Approve comment
+ approved: approved
+ billion: B
+ close: Close
+ dont-like-username: Don't like username
+ emptyqueue: No more comments to moderate! You're all caught up. Go have some ☕️
+ flagged: flagged
+ impersonating: Impersonating
+ less-detail: Less detail
+ likes: likes
+ million: M
+ mod-faster: Moderate faster with keyboard shortcuts
+ more-detail: More detail
+ navigation: Navigation
+ nextcomment: Go to the next comment
+ offensive: Offensive
+ other: Other
+ premod: pre-mod
+ prevcomment: Go to the previous comment
+ reject: Reject comment
+ rejected: rejected
+ shift-key: ⇧
+ shortcuts: Shortcuts
+ showshortcuts: Show Shortcuts
+ singleview: Toggle single comment edit view
+ spam/ads: Spam/Ads
+ thismenu: Open this menu
+ thousand: k
+ try-these: Try these
+ view-more-shortcuts: View more shortcuts
+myCommentHistory: My comment History
+name: Name
+no-agree-comment: I don't agree with this comment
+no-like-bio: I don't like this bio
+no-like-username: I don't like this username
+other: Other
+permalink:
+ permalink: Link
+personal-info: This comment reveals personally identifiable information
+post: Post
+profile: Profile
+profileSettings: Profile Settings
+reply: Reply
+report: Report
+report-notif: Thank you for reporting this comment. Our moderation team has been notified
+ and will review it shortly.
+report-notif-remove: Your report has been removed.
+reported: Reported
+setBest: Tag as Best
settings:
- profile: Profile
- userNoComment: You've never left a comment. Join the conversation!
- allComments: All Comments
- profileSettings: Profile Settings
- myCommentHistory: My comment History
- signIn: Sign in
- toAccess: to access Profile
- fromSettingsPage: From the Profile Page you can see your comment history.
+ allComments: All Comments
+ fromSettingsPage: From the Profile Page you can see your comment history.
+ myCommentHistory: My comment History
+ profile: Profile
+ profileSettings: Profile Settings
+ signIn: Sign in
+ toAccess: to access Profile
+ userNoComment: You've never left a comment. Join the conversation!
+signIn: Sign in
+step-1-header: Report an issue
+step-2-header: Help us understand
+step-3-header: Thank you for your input
+streams:
+ all: All
+ article: Story
+ closed: Closed
+ empty_result: No assets match this search. Maybe try widening your search?
+ filter-streams: Filter Streams
+ newest: Newest
+ oldest: Oldest
+ open: Open
+ pubdate: Publication Date
+ search: Search
+ sort_by: Sort By
+ status: Stream Status
+ stream-status: Stream Status
+suspenduser:
+ bio: bio
+ description_0: Would you like to temporarily ban this user because of their {0}?
+ Doing so will temporarily hide their comments until they rewrite their {0}.
+ description_1: Suspending this user will temporarily disable their account and hide
+ all of their comments on the site.
+ email: Another member of the community recently flagged your username for review.
+ Because of its content your user was rejected. This means you can no longer comment
+ like or flag content until you rewrite your username. Please e-mail us if you
+ have any questions or concerns.
+ email_subject: Your account has been suspended
+ no_cancel: No cancel
+ send: Send
+ title: Suspend a user
+ title_0: We noticed you rejected a username
+ title_1: Notify the user of their temporary suspension
+ username: username
+ write_message: Write a message
+ yes_suspend: Yes suspend
+thank-you: We value your safety and feedback. A moderator will review your report.
+toAccess: ' to access Profile'
+unsetBest: Untag as Best
+user:
+ bio_flags: flags for this bio
+ user_bio: User Bio
+ username_flags: flags for this username
+user-impersonating: This user is impersonating
+userNoComment: You've never left a comment. Join the conversation!
+username-offensive: This username is offensive
diff --git a/client/coral-i18n/locales/es.yml b/client/coral-i18n/locales/es.yml
index 03551a710..0a91429b4 100644
--- a/client/coral-i18n/locales/es.yml
+++ b/client/coral-i18n/locales/es.yml
@@ -1,61 +1,292 @@
-framework:
- profile: Pérfil
- my_profile: Mi pérfil
- successUpdateSettings: La configuración de este articulo fue actualizada
- successBioUpdate: Tu biografia fue actualizada
- contentNotAvailable: El contenido no se encuentra disponible
- bannedAccountMsg: Tu cuenta se encuentra suspendida. Esto significa que no puedes gustar marcar o escribir commentarios.
- editName:
- msg: Your account is currently suspended because your username has been deemed inappropriate. To restore your account please enter a new username. Please contact us if you have any questions.
- label: New Username
- button: Submit
- error: Usernames can contain letters numbers and _ only
- viewMoreComments: Ver commentarios más
- viewReply: ver respuesta
- viewAllRepliesInitial: ver todas las 0 respuestas
- viewAllReplies: ver 0 respuestas
- newCount: Ver 0 1 más
- comment: commentario
- comments: commentarios
- commentIsIgnored: Este comentario está escondido porque has ignorado al usuario.
- showAllComments: Mostrar todos los comentarios
- my_comments: Mis Comentarios
-error:
- emailNotVerified: E-mail {0} no verificado.
- email: No es un e-mail válido
- password: La contraseña debe tener por lo menos 8 caracteres
- username: Los nombres pueden contener letras números y _
- organizationName: El nombre de la organización debe contener letras y/o números.
- confirmPassword: Las contraseñas no coinciden
- emailPasswordError: E-mail y/o contraseña incorrecta.
- EMAIL_REQUIRED: Se requiere un e-mail
- PASSWORD_REQUIRED: Debe ingresar una contraseña
- PASSWORD_LENGTH: La contraseña es muy corta
- EMAIL_IN_USE: El e-mail se encuentra en uso
- EMAIL_USERNAME_IN_USE: E-mail o Nombre en uso.
- USERNAME_IN_USE: Nombre en uso.
- USERNAME_REQUIRED: Debe ingresar un nombre
- NO_SPECIAL_CHARACTERS: Los nombres pueden contener letras números y _
- PROFANITY_ERROR: Los nombres no pueden contener blasfemias. Por favor contacte al o la administradora si cree que esto es un error
- NOT_AUTHORIZED: Acción no autorizada.
- EDIT_USERNAME_NOT_AUTHORIZED: No tiene permiso para editar el nombre de usuario.
+bandialog:
+ are_you_sure: '¿Estás segura que quieres suspender a {0}?'
+ ban_user: ¿Quieres suspender el Usuario?
+ cancel: Cancelar
+ note: 'Nota: Suspender a este usuario también va a colocar este comentario en la cola de Rechazados.'
+ yes_ban_user: Si, Suspender el usuario
+bio_offensive: Esta biografia es ofensiva
+cancel: Cancelar
+characters_remaining: 'carácteres restantes'
+comment:
+ anon: Anónimo
+ ban_user: Suspender Usuario
+ ban_user: Usuario Suspendido
+ comment: Publicar un comentario
+ flagged: reportado
+comment_offensive: Este comentario es ofensivo
+comment_plural: Comentarios
+comment_post_banned_word: Tu comentario contiene una o más palabras que no estan permitidas en nuestro espacio, por lo que no será publicado. Si crees que es un error, por favor contacta a nuestro equipo de moderación.
+comment_post_notif: Tu comentario ha sido publicado.
+comment_post_notif_premod: Gracias por el comentario. Nuestro equipo de moderación va a revisarlo muy pronto.
+comment_is_best: Este comentario es uno de los mejores
+community:
+ account_creation_date: Fecha de creación de la cuenta
+ active: Activa
+ admin: Administratora
+ are_you_sure: '¿Estas segura que quieres suspender a {0}?'
+ ban_user: ¿Quieres suspender al Usuario?
+ banned: Suspendido
+ banned-user: Usuarix Suspendido
+ cancel: Cancelar
+ flaggedaccounts: Nombres de Usuarix Reportados
+ flags: Reportes
+ loading: Cargando resultados
+ moderator: Moderatora
+ newsroom_role: Rol en la redacción
+ no-flagged-accounts: No hay ninguna cuenta reportada en este momento.
+ no-results: No se encontraron usuarixs con ese nombre o correo.
+ note: 'Nota: Suspender a este usuario no le va a permitir (al usuario) borrar ni editar ni comentar.'
+ other: Otro
+ people: Gente
+ role: Seleccionar rol...
+ select-status: Seleccionar estado...
+ status: Estado
+ username_and_email: Usuario y E-mail
+ yes_ban_user: Si, Suspendan el usuario
configure:
apply: Aplicar
+ banned_word_text: Comentarios que contengan estas palabras o frases, no separadas por comas y en mayusculas o minusuculas, serán automaticamente marcadas para separar los comentarios publicados.
+ banned_words_title: Lista de palabras prohibidas
+ close_after: Cerrar comentarios luego de
+ close_stream: Cerrar comentarios
+ close_stream_configuration: Este hilo de comentario está en este momento cerrado. Al abrirlo, nuevos comentarios serán publicados y mostrados.
+ closed_comments_desc: Escribe un mensaje que será mostrado cuando los comentarios estén cerrados y no se acepten más comentarios.
+ closed_comments_label: Escribe un mensaje...
+ closed_stream_settings: Mensaje que se meustra cuando los comentarios están cerrados en el articulo
+ comment_count_error: Por favor escribir un número válido
+ comment_count_header: Limitar el largo del comentario
+ comment_count_text_post: cáracteres
+ comment_count_text_pre: Los comentarios serán limitados a
+ comment_settings: Configuración
+ community: Comunidad
+ configure: Configurar
+ copy_and_paste: Copiar y pegar el código de más abajo en tu CMS para colocar la caja de comentarios en tus articulos
+ custom_css_url: URL CSS a medida
+ custom_css_url_desc: URL de una hoja de estilo que va a sobrescribir los estilos por defecto del hilo de comentarios. Puede ser interna o externa.
+ dashboard: Panel
+ days: Días
+ description: Como Administrador/a puedes modificar la configuración de los comentarios en este artículo
+ domain_list_text: Agrega dominios permitidos a Talk, por ejemplo tu localhost, staging y ambientes de producción (ej. localhost:3000, staging.domain.com, domain.com).
+ domain_list_title: Dominios Permitidos
+ embed_comment_stream: Colocar Hilo de Comentarios
+ enable_pre_moderation: Enable pre-moderation
+ enable_pre_moderation_text: Moderators must approve any comment before it is published.
+ enable-premod-links: Pre-Moderar Comentarios que contienen Enlaces
+ enable-premod-links-text: Moderators must approve any comment containing a link
+ before its published.
+ enable_premod: Activar Pre Moderación
+ enable_premod_description: Los y las Moderadoras deben aprobar cualquier comentario
+ antes de su publicación
+ enable_premod_links_description: Los y las moderadoras deben aprobar cualquier comentario que contengan enlaces antes de su publicación.
+ enable_questionbox: Hacer una pregunta a los y las lectoras.
+ enable_questionbox_description: Esta pregunta aparecera en la parte de arriba del hilo de comentarios.
+ hours: Horas
+ include_comment_stream: Incluir Descripción de Hilo de Comentarios para Lectorxs
+ include_comment_stream_desc: Escribir un mensaje para ser incluido al principio del hilo de comentarios. Un tema podria ser incluir la guia de comunidad, etc.
+ include_text: Agregar tu texto aquí.
+ include_question_here: Escribir la pregunta aquí.
+ moderate: Moderate
+ moderation_settings: Configuración de la Moderación
+ open_stream: Abrir Hilo de Comentarios
+ open_stream_configuration: Este hilo de comentarios está abierto. Al cerrarlo no se podran publicar nuevos comentarios pero todos los comentarios anteriores aún serán mostrados.
+ require_email_verification: Necesita confirmación de e-mail
+ require_email_verification_text: Nuevos usuarios deben verificar sus e-mails antes de comentar
+ save_changes: Guardar Cambios
+ shortcuts: Atajos
+ sign_out: Desconectar
+ stories: Artículos
+ stream_settings: Configuración de Comentarios
+ suspect_word_text: Comentarios que contengan estas palabras o frases, considerando mayusculas y minusculas, serán automaticamente destacadas en los comentarios publicados. Escribir una palabra y apretar Enter o Tabulador para agergarla. Opcionalmente pegar una lista separada por coma.
+ suspect_words_title: Lista de palabras sospechosas
+ tech_settings: Configuración Técnica
title: Configurar los comentarios
- description: Como Administrador/a puedes modificar las opciones de los comentarios en este artículo
- enablePremod: Activar Pre Moderación
- enablePremodDescription: Los y las Moderadoras deben aprobar cualquier comentario antes de su publicación
- enablePremodLinks: Pre-Moderar Comentarios que contienen Enlaces
- enablePremodLinksDescription: Los y las moderadoras deben aprobar cualquier comentario que contengan enlaces antes de su publicación.
- enableQuestionBox: Hacer una pregunta a los y las lectoras.
- enableQuestionBoxDescription: Esta pregunta aparecera en la parte de arriba del hilo de comentarios.
- includeQuestionHere: Escribir la pregunta aquí.
+ weeks: Semanas
+ wordlist: Palabras Suspendidas
+continue: Continuar
+createdisplay:
+ check_the_form: Formulario Inválido. Por favor verifica los campos
+ continue: Continuar con nombre de Facebook
+ error_create: Hubo un error al cambiar el nombre de usuario
+ fake_comment_body: Este es un comentario de ejemplo. Las lectoras pueden compartir sus ideas y opiniones con los periodistas en la sección de comentarios.
+ fake_comment_date: hace un minuto
+ if_you_dont_change_your_name: Si no modificas tu nombre de usuario en este paso tu nombre de Facebook aparecera al lado de cada comentario que publiques.
+ required_field: Campo necesario
+ save: Guardar
+ special_characters: Sólo pueden contener letras números y _
+ username: Nombre
+ write_your_username: Edita tu nombre
+ your_username: Tu nombre aparece en cada comentario que publiques.
+dashboard:
+ auto_update: Data automatically updates every five minutes or when you Reload.
+ comment_count: comments
+ flags: Flags
+ most_flags: Articles with the most flags
+ nex_update: '{0} minutes until next update.'
+ no_activity: There haven't been any comments anywhere in the last five minutes.
+ no_flags: There have been no flags in the last 5 minutes! Hooray!
+ no_likes: There have been no likes in the last 5 minutes. All quiet.
+done: hecho
+embedlink:
+ copy: Copy to Clipboard
+error:
+ edit_username_not_authorized: No tiene permiso para editar el nombre de usuario.
+ email_in_use: El e-mail se encuentra en uso
+ email_required: Se requiere un e-mail
+ email_username_in_use: E-mail o Nombre en uso.
+ login_maximum_exceeded: Ha realizado demasiados intentos fallidos de colocar la contraseña. Por favor espere.
+ NOT_AUTHORIZED: Acción no autorizada.
+ NO_SPECIAL_CHARACTERS: Los nombres pueden contener letras números y _
+ PASSWORD_LENGTH: La contraseña es muy corta
+ PASSWORD_REQUIRED: Debe ingresar una contraseña
+ PROFANITY_ERROR: Los nombres no pueden contener blasfemias. Por favor contacte al o la administradora si cree que esto es un error
+ USERNAME_IN_USE: Nombre en uso.
+ USERNAME_REQUIRED: Debe ingresar un nombre
+ confirm_password: Las contraseñas no coinciden
+ email: No es un e-mail válido
+ email_not_verified: E-mail {0} no verificado.
+ email_password: E-mail y/o contraseña incorrecta.
+ organization_name: El nombre de la organización debe contener letras y/o números.
+ password: La contraseña debe tener por lo menos 8 caracteres
+ password_required: Debe ingresas la contraseña
+ username: Los nombres pueden contener letras números y _
+flag_comment: Reportar el comentario
+flag_reason: Razón por la que hacer este reporte (Opcional)
+flag_username: Reportar el nombre de usuario
+framework:
+ banned_account_msg: Tu cuenta se encuentra suspendida. Esto significa que no puedes
+ gustar marcar o escribir commentarios.
+ comment: commentario
+ comment_is_ignored: Este comentario está escondido porque has ignorado al usuario.
+ comments: commentarios
+ content_not_available: El contenido no se encuentra disponible
+ edit_name:
+ button: Enviar
+ error: Nombres de usuarios pueden sólamente incluir letras, números y _
+ label: Nuevo Nombre
+ msg: Tu cuenta está suspendida porque tu nombre de usuario ha sido considerado no apropiado para el espacio. Para recuperar la cuenta, por favor ingresar un nuevo nombre de usuario. Contactactanos si tienes alguna pregunta.
+ my_comments: Mis Comentarios
+ my_profile: Mi pérfil
+ new_count: Ver 0 1 más
+ profile: Pérfil
+ show_all_comments: Mostrar todos los comentarios
+ success_bio_update: Tu biografia fue actualizada
+ success_name_update: Tu nombre de usuario ha sido actualizado
+ success_update_settings: La configuración de este articulo fue actualizada
+ view_all_replies: ver 0 respuestas
+ view_all_replies_initial: ver todas las 0 respuestas
+ view_more_comments: Ver commentarios más
+ view_reply: ver respuesta
+fromSettingsPage: Desde la página de configuración puedes ver tu historia de comentarios.
+like: Me gusta
+marketing: Esto parece una propaganda
+moderate_this_stream: Modera este hilo de comentarios
+modqueue:
+ account: account flags
+ actions: Actions
+ all: all
+ approve: Approve comment
+ approved: approved
+ billion: B
+ close: Close
+ dont-like-username: Don't like username
+ emptyqueue: No more comments to moderate! You're all caught up. Go have some ☕️
+ flagged: flagged
+ impersonating: Impersonating
+ less-detail: Less detail
+ likes: likes
+ million: M
+ mod-faster: Moderate faster with keyboard shortcuts
+ more-detail: More detail
+ navigation: Navigation
+ nextcomment: Go to the next comment
+ offensive: Offensive
+ other: Other
+ premod: pre-mod
+ prevcomment: Go to the previous comment
+ reject: Reject comment
+ rejected: rejected
+ shift-key: ⇧
+ shortcuts: Shortcuts
+ showshortcuts: Show Shortcuts
+ singleview: Toggle single comment edit view
+ spam/ads: Spam/Ads
+ thismenu: Open this menu
+ thousand: k
+ try-these: Try these
+ view-more-shortcuts: View more shortcuts
+myCommentHistory: Mi historial de comentarios
+name: Nombre
+no-agree-comment: No estoy de acuerdo con este comentario
+no-like-bio: No me gusta esta biografia
+no-like-username: No me gusta este nombre de usuario
+other: Otro
+permalink:
+ permalink: Enlace
+personal-info: Este comentario muestra información personal
+post: Publicar
+profile: Perfil
+profileSettings: Configuración del perfil
+reply: Responder
+report: Reportar
+report-notif: Gracias por reportar este comentario. Nuestro equipo de moderación ha
+ sido notificado y muy pronto lo va a revisar.
+report-notif-remove: Tu reporte ha sido eliminada.
+reported: Reportado
+setBest: Etiquetar como el mejor
settings:
- profile: Perfil
- userNoComment: No has dejado aún ningún comentario. ¡Únete a la conversación!
allComments: Todos los comentarios
- profileSettings: Configuración del perfil
+ fromSettingsPage: Desde la página de configuración puedes ver tu historia de comentarios.
myCommentHistory: Mi historial de comentarios
+ profile: Perfil
+ profileSettings: Configuración del perfil
signIn: Entrar
toAccess: para acceder a al perfil
- fromSettingsPage: Desde la página de configuración puedes ver tu historia de comentarios.
+ userNoComment: No has dejado aún ningún comentario. ¡Únete a la conversación!
+signIn: Entrar
+step-1-header: Reportar un problema
+step-2-header: Ayudanos a comprender
+step-3-header: Gracias por tu participación
+streams:
+ all: All
+ article: Story
+ closed: Closed
+ empty_result: No assets match this search. Maybe try widening your search?
+ filter-streams: Filter Streams
+ newest: Newest
+ oldest: Oldest
+ open: Open
+ pubdate: Publication Date
+ search: Search
+ sort_by: Sort By
+ status: Stream Status
+ stream-status: Stream Status
+suspenduser:
+ bio: bio
+ description_0: Would you like to temporarily ban this user because of their {0}?
+ Doing so will temporarily hide their comments until they rewrite their {0}.
+ description_1: Suspending this user will temporarily disable their account and hide
+ all of their comments on the site.
+ email: Another member of the community recently flagged your username for review.
+ Because of its content your user was rejected. This means you can no longer comment
+ like or flag content until you rewrite your username. Please e-mail us if you
+ have any questions or concerns.
+ email_subject: Your account has been suspended
+ no_cancel: No cancel
+ send: Send
+ title: Suspend a user
+ title_0: We noticed you rejected a username
+ title_1: Notify the user of their temporary suspension
+ username: username
+ write_message: Write a message
+ yes_suspend: Yes suspend
+thank-you: Valoramos tanto tu seguridad en este espacio como tus comentarios. Un o
+ una moderadora van a leer tu reporte.
+toAccess: para acceder a al perfil
+unsetBest: Desetiquetar como el mejor
+user:
+ bio_flags: flags for this bio
+ user_bio: User Bio
+ username_flags: flags for this username
+user-impersonating: Este usuario suplanta a alguien
+userNoComment: No has dejado aún ningún comentario. ¡Únete a la conversación!
+username-offensive: Este nombre de usuario es ofensivo
diff --git a/client/coral-plugin-best/BestButton.js b/client/coral-plugin-best/BestButton.js
index 1efb33459..685d30721 100644
--- a/client/coral-plugin-best/BestButton.js
+++ b/client/coral-plugin-best/BestButton.js
@@ -20,7 +20,7 @@ const canModifyBestTag = ({roles = []} = {}) => roles && ['ADMIN', 'MODERATOR'].
// Put this on a comment to show that it is best
export const BestIndicator = ({children =
}) => (
-
+
{ children }
);
diff --git a/client/coral-plugin-comment-count/CommentCount.js b/client/coral-plugin-comment-count/CommentCount.js
index d9afc2544..e03b101d2 100644
--- a/client/coral-plugin-comment-count/CommentCount.js
+++ b/client/coral-plugin-comment-count/CommentCount.js
@@ -5,7 +5,7 @@ const name = 'coral-plugin-comment-count';
const CommentCount = ({count}) => {
return
- {`${count} ${count === 1 ? lang.t('comment') : lang.t('comment-plural')}`}
+ {`${count} ${count === 1 ? lang.t('comment.comment') : lang.t('comment_plural')}`}
;
};
diff --git a/client/coral-plugin-commentbox/CommentBox.js b/client/coral-plugin-commentbox/CommentBox.js
index 308e1cd98..d834e131d 100644
--- a/client/coral-plugin-commentbox/CommentBox.js
+++ b/client/coral-plugin-commentbox/CommentBox.js
@@ -54,10 +54,10 @@ class CommentBox extends React.Component {
this.state.hooks.postSubmit.forEach(hook => hook(data));
if (postedComment.status === 'REJECTED') {
- addNotification('error', lang.t('comment-post-banned-word'));
+ addNotification('error', lang.t('comment_post_banned_word'));
!isReply && setCommentCountCache(commentCountCache);
} else if (postedComment.status === 'PREMOD') {
- addNotification('success', lang.t('comment-post-notif-premod'));
+ addNotification('success', lang.t('comment_post_notif_premod'));
!isReply && setCommentCountCache(commentCountCache);
}
@@ -141,20 +141,20 @@ class CommentBox extends React.Component {
htmlFor={ isReply ? 'replyText' : 'commentText'}
className="screen-reader-text"
aria-hidden={true}>
- {isReply ? lang.t('reply') : lang.t('comment')}
+ {isReply ? lang.t('reply') : lang.t('comment.comment')}
maxCharCount ? `${name}-char-max` : ''}`}>
- {maxCharCount && `${maxCharCount - length} ${lang.t('characters-remaining')}`}
+ {maxCharCount && `${maxCharCount - length} ${lang.t('characters_remaining')}`}