2017-01-08 14:54:25 +00:00
/ * *
* English language
*
* @ author Pierre HUBERT
* /
ComunicWeb . common . langs . en = {
2018-02-04 08:42:38 +00:00
2018-05-10 08:39:10 +00:00
/ * *
* Common
* /
2018-03-11 15:55:44 +00:00
//Really really common messages
_loading : "Loading..." ,
2018-03-11 16:12:08 +00:00
_send : "Send" ,
2018-08-09 09:51:38 +00:00
_choose : "Choose" ,
2018-03-11 15:55:44 +00:00
2017-01-08 15:17:22 +00:00
//Error messages
"__fatal_error" : "Fatal error" ,
"__fatal_error_explanation" : "A fatal error occured : <i>%p</i>. Please try to refresh the page..." ,
2018-02-04 08:42:38 +00:00
2018-08-05 14:40:14 +00:00
//Dates
dates _s : "%p s" ,
dates _min : "%p min" ,
2018-08-07 09:02:25 +00:00
dates _h : "%p h" ,
2018-08-05 14:40:14 +00:00
dates _one _day : "1 day" ,
dates _days : "%p days" ,
dates _one _month : "1 month" ,
dates _months : "%p months" ,
dates _one _year : "1 year" ,
dates _years : "%p years" ,
dates _ago : "%p ago" ,
2018-08-05 14:33:39 +00:00
//Messages
messages _loading _layout _title : "Loading" ,
messages _loading _layout _message : "Please wait while this page is loading..." ,
messages _dialog _cancel : "Cancel" ,
messages _dialog _confirm _title : "Confirm the operation" ,
messages _dialog _confirm _confirm : "Confirm" ,
messages _dialog _confirm _cancel : "Cancel" ,
messages _dialog _input _string _cancel : "Cancel" ,
messages _dialog _input _string _submit : "Submit" ,
2018-05-10 08:39:10 +00:00
/ * *
* Components
* /
2018-02-23 10:46:21 +00:00
//Menu bar - login form
_menu _bar _login _btn : "Login" ,
_menu _bar _login _passwd : "Password" ,
_menu _bar _login _email : "Email address" ,
2018-03-11 15:55:44 +00:00
//Menu bar - authenticated
_menu _bar _search _placeholder : "Search..." ,
2018-08-04 07:53:35 +00:00
menu _bar _action _conversations : "Conversations" ,
menu _bar _action _groups : "Groups" ,
2019-01-11 10:38:55 +00:00
menu _bar _action _dark _theme : "Dark theme" ,
2018-08-04 07:53:35 +00:00
menu _bar _action _settings : "Settings" ,
2018-03-11 15:55:44 +00:00
_menu _bar _action _logout : "Logout" ,
2019-01-11 10:54:22 +00:00
//Bottom bar - links
bottom _bar _action _language : "Language" ,
bottom _bar _action _about : "About" ,
2018-08-05 14:43:23 +00:00
//Posts - Actions
posts _actions _err _get _single : "An error occured while getting information about the post !" ,
//Posts - Editor
posts _edit _cancel : "Cancel" ,
posts _edit _update : "Update" ,
posts _edit _err _invalid _content : "Please check your message content !" ,
2021-01-19 16:56:20 +00:00
posts _edit _err _update _content : "An error occured while trying to update post !" ,
2018-08-05 14:43:23 +00:00
posts _edit _success _update : "The post has been updated !" ,
posts _edit _title : "Update the post" ,
2018-08-05 14:13:48 +00:00
//Posts - UI
posts _ui _error : "Error" ,
posts _ui _err _update _visibility : "Couldn't change post visibility level !" ,
posts _ui _confirm _delete : "Are you sure do you want to delete this post? The operation can not be reverted !" ,
posts _ui _err _delete _post : "An error occured while trying to delete post !" ,
posts _ui _survey _your _response : "Your response: %p " ,
posts _ui _confirm _cancel _survey _response : "Do you really want to cancel your response to the survey ?" ,
posts _ui _err _cancel _response _survey : "Could not cancel response to survey !" ,
posts _ui _send _survey _response : "Send" ,
2018-08-15 05:44:34 +00:00
posts _ui _cancel _response _survey : "Cancel" ,
2018-08-05 14:13:48 +00:00
2018-03-11 15:55:44 +00:00
//Posts form
2018-03-11 16:12:08 +00:00
_post _type _text : "Text" ,
_post _type _youtube : "Youtube" ,
_post _type _image : "Image" ,
_post _type _movie : "Movie" ,
_post _type _link : "Weblink" ,
_post _type _pdf : "PDF" ,
_post _type _countdown : "Timer" ,
_post _type _survey : "Survey" ,
_input _youtube _link _label : "Youtube video link" ,
_no _movie _selected : "No movie selected." ,
_input _page _url _label : "Page URL" ,
_input _countdown _enddate : "End date" ,
2018-08-04 07:09:02 +00:00
_input _countdown _endtime : "End time" ,
2018-03-11 16:12:08 +00:00
_input _survey _question _label : "Question for the survey" ,
_input _survey _question _placeholder : "Question" ,
_input _survey _answers _label : "Answers" ,
_input _survey _answers _hint : "Type your answer and then press return (enter) key to confirm it." ,
_err _drag _image _post : "Please do not drag images directly in the message !" ,
2018-08-04 07:15:02 +00:00
form _post _err _invalid _message : "The specified message is invalid !" ,
form _post _err _no _image _selected : "Please choose an image !" ,
form _post _err _invalid _youtube _link : "The specified Youtube link seems to be invalid !" ,
form _post _err _no _movie _selected : "Please choose a movie !" ,
form _post _err _no _pdf _selected : "Please pick a PDF !" ,
form _post _err _invalid _url : "Please check the given URL !" ,
form _post _err _no _end _date _selected : "Please specify a date for the countdown timer !" ,
form _post _err _selected _end _date _invalid : "Specified date for the countdown timer is invalid !" ,
form _post _err _no _question _for _survey : "Please specify a question for the survey !" ,
form _post _err _not _enough _survey _options : "Please specify at least two options for the survey !" ,
form _post _err _no _post _type _selected : "Please check you have chosen a post type !" ,
form _post _err _send _new _post : "An error occured while trying to send a new post !" ,
form _post _success _create _post : "The post has been successfully created !" ,
2018-03-11 15:55:44 +00:00
2018-08-04 07:37:36 +00:00
//Friends - bar
friends _bar _no _friends _notice : "You have no friends yet! We can't display anything here for you for now... :(" ,
friends _bar _accepted : "Accepted" ,
friends _bar _rejected : "Refused" ,
2018-08-04 07:35:28 +00:00
//Like - Button
like _btn _one _like : "1 like" ,
like _btn _x _likes : "%p likes" ,
like _btn _liking : "Liking" ,
like _btn _like : "Like" ,
2018-08-04 08:02:12 +00:00
//Conversations - unread dropdown
2018-08-04 07:58:40 +00:00
conversations _dropdown _header : "Unread conversations" ,
conversations _dropdown _err _get _list : "Could not retrieve the list of unread conversations !" ,
conversations _dropdown _err _get _user _info : "Could not get informations about some users !" ,
conversations _dropdown _no _unread _notice : "You do not have any unread messages in the conversations you are following..." ,
2018-05-10 08:39:10 +00:00
2018-08-04 08:02:12 +00:00
//Notifications - dropdown
notifications _dropdown _title : "Notifications" ,
notifications _dropdown _delete _all _link : "Delete all" ,
notifications _dropdown _confirm _delete _all : "Are you sure do you want to delete all the notifications ? This operation can not be cancelled !" ,
notifications _dropdown _err _delete _all _notifications : "An error occured while trying to delete all the notifications !" ,
notifications _dropdown _delete _all _success : "The entire list of notification has been cleared." ,
notifications _dropdown _err _get _notifs _list : "An error occured while trying to retrieve notifications list !" ,
notifications _dropdown _err _get _related _users _info : "An error occured while trying to retrieve users informations for the notifications !" ,
notifications _dropdown _err _get _related _groups _info : "Could not get groups information!" ,
notifications _dropdown _no _notif _notice : "You do not have any notification yet." ,
2018-08-05 14:29:49 +00:00
//Comments - Actions
comments _actions _err _get _info _single : "Couldn't get informations about a comment !" ,
//Comments - Editor
comments _editor _err _update : "An error occured while trying to update comment content !" ,
comments _editor _title : "Edit comment content" ,
comments _editor _notice : "Please specify the new content of the comment: " ,
//Comments - UI
comments _ui _err _get _users _info : "Couldn't information about some users to display their comments !" ,
comments _ui _err _get _user _info : "Couldn't get information about a user!" ,
comments _ui _confirm _delete : "Are you sure do you want to delete this comment ? This operation is unrecoverable!" ,
comments _ui _err _delete _comment : "Could not delete comment!" ,
//Comments - Form
comments _form _input _placeholder : "New comment..." ,
comments _form _send : "Send" ,
comments _form _err _invalid _comment : "Please type a valid comment! (at least 5 characters)" ,
comments _form _err _create _comment : "Couldn't create comment! (check its content)" ,
2018-05-10 08:39:10 +00:00
/ * *
* Pages
* /
2018-05-10 08:54:00 +00:00
//Landing page
2018-05-10 08:54:32 +00:00
_landing _main _caption : "Free social network that respects your privacy." ,
2018-05-10 08:54:00 +00:00
_landing _signup _link : "Sign up" ,
_landing _signin _link : "Sign in" ,
2018-08-03 13:13:22 +00:00
landing _page _learn _more : "Learn more" ,
2018-05-10 08:54:00 +00:00
2018-05-10 08:39:10 +00:00
//Login form
_login _page _top _msg : "Login to your Comunic account." ,
_login _page _remember _me : "Remember me" ,
_login _page _email _placeholder : "Email" ,
_login _page _password _placeholder : "Password" ,
_login _page _submit : "Sign In" ,
_login _page _error _head : "Login failed" ,
2018-08-20 11:55:05 +00:00
too _many _login _request _try _again _later : "Too many unsuccessfull login attempts. Please try again later..." ,
2018-05-10 08:39:10 +00:00
_login _page _error _message : "Please check your usermail and password !" ,
_login _page _bad _input : "Please check what you've typed !" ,
_login _page _create _account _lnk : "Create an account" ,
2018-08-03 13:14:53 +00:00
login _page _forgot _password : "Forgot password" ,
2018-08-03 12:51:22 +00:00
//Create account page
form _create _account _title : "Create an account" ,
form _create _account _intro : "Use the following form to create an account and join the network : " ,
form _create _account _first _name _label : "First name" ,
form _create _account _first _name _placeholder : "Your first name" ,
form _create _account _last _name _label : "Last name" ,
form _create _account _last _name _placeholder : "Your last name" ,
form _create _account _email _address _label : "Email address <small><i class='fa fa-warning'></i> Warning! You will not be able to change this later !</small>" ,
form _create _account _email _address _placeholder : "Your email address" ,
2018-08-03 13:07:59 +00:00
form _create _account _password _label : "Password" ,
form _create _account _password _placeholder : "Your password" ,
form _create _account _confirm _password _label : "Confirm your password" ,
form _create _account _confirm _password _placeholder : "Your password" ,
form _create _account _terms _label : "I have read and accepted the <a href='%p' target='_blank'>terms of use of the network</a>" ,
form _create _account _submit : "Create the account" ,
form _create _account _login _with _existing : "Login with an existing account" ,
form _create _account _err _need _accept _terms : "Please read and accept the terms of use of the website!" ,
form _create _account _err _need _first _name : "Please check your first name !" ,
form _create _account _err _check _last _name : "Please check your last name !" ,
form _create _account _err _check _email _address : "Please check your email address !" ,
form _create _account _err _check _password : "Please check your password !" ,
form _create _account _err _passwd _differents : "The two passwords are not the same !" ,
2018-08-20 12:16:46 +00:00
form _create _account _err _create _account _message : "An error occured while trying to create your account. It is most likely to be a server error, but please check your input..." ,
form _create _account _err _existing _email : "This email address is already associated with an account!" ,
2018-08-20 12:51:02 +00:00
form _create _account _err _too _many _requests : "Too many account created for now. Please try again later..." ,
2018-08-03 13:07:59 +00:00
form _create _account _err _create _account _title : "Account creation failed" ,
2018-08-03 13:11:42 +00:00
//Account created page
account _created _message _title : "Congratulations!" ,
account _created _message _body : "Your account has been successfully created! <br /> Login now to use all the features of Comunic!" ,
2018-08-04 07:03:31 +00:00
account _created _message _login : "Login" ,
//Latest posts page
page _latest _posts _err _get _list _title : "Error" ,
page _latest _posts _err _get _list _message : "Could not get the list of the latest posts ! Please try to refresh the page..." ,
page _latest _posts _notice _no _post _title : "No post to display" ,
page _latest _posts _notice _no _posts _message : "Posts from you and your friend will appear here..." ,
2018-08-04 07:21:49 +00:00
//User page - Profile information
user _page _profile _info _friends _link : "Friends" ,
user _page _profile _info _loading : "Loading..." ,
user _page _profile _info _conversation _button : "Conversation" ,
user _page _profile _info _about _box _title : "About %p" ,
user _page _profile _info _website : "Website" ,
user _page _profile _info _note : "Note" ,
user _page _profile _info _membership : "Membership" ,
user _page _profile _info _member _for : "Member for %p" ,
2018-08-04 07:24:46 +00:00
//User page - posts section
user _page _posts _loading : "Loading posts..." ,
user _page _posts _err _get _posts : "Couldn't get user posts!" ,
user _page _posts _notice _no _posts _title : "No post yet" ,
user _page _posts _notice _no _posts _message : "Nobody has posted a message on this page yet." ,
2018-08-04 07:28:28 +00:00
//User page - access forbidden page
user _page _forbidden _err _sign _in _title : "Sign in required" ,
user _page _forbidden _err _sign _in _message : "Please sign in to get access to this page." ,
user _page _forbidden _err _access _denied _title : "Access denied" ,
user _page _forbidden _access _denied _message : "You don't have the right to access this page." ,
user _page _forbidden _private _account _notice : "This account is private." ,
user _page _forbidden _loading : "Loading..." ,
2018-08-04 07:32:40 +00:00
//User page - friendship status section
user _page _friendship _section _err _load _title : "Error" ,
user _page _friendship _section _err _load _message : "Couldn't load friendship informations !" ,
user _page _friendship _section _reject _request : "Reject request" ,
user _page _friendship _section _accept _request : "Accept request" ,
user _page _friendship _section _err _update _request _status : "Couldn't update request status !" ,
user _page _friendship _section _cancel _request : "Cancel request" ,
user _page _friendship _section _err _remove _request : "An error occured while trying to remove the request !" ,
user _page _friendship _section _send _request : "Send request" ,
user _page _friendship _section _err _send _request : "An error occured while trying to send the request !" ,
user _page _friendship _section _following : "Following" ,
user _page _friendship _section _follow : "Follow" ,
user _page _friendship _section _err _update _following _status : "An error occured while trying to update following status !" ,
2017-01-08 14:54:25 +00:00
}