2021-03-28 16:44:13 +02:00
export const m = {
help _lbry : 'help_lbry' ,
save _crypto : 'save_crypto' ,
2021-03-29 06:09:13 +02:00
go _home : 'go_home' ,
og _description : 'og_description' ,
landing _subtitle : 'landing_subtitle' ,
landing _action : 'landing_action' ,
summary _title : 'summary_title' ,
summary _subtitle : 'summary_subtitle' ,
2021-03-29 15:48:14 +02:00
p1 _a : 'p1_a' ,
p1 _b : 'p1_b' ,
p2 _a : 'p2_a' ,
p2 _b : 'p2_b' ,
share _story _title : 'share_story_title' ,
share _story _subtitle : 'share_story_subtitle' ,
petition _title : 'petition_title' ,
petition _subtitle : 'petition_subtitle' ,
petition _link : 'petition_link' ,
read _more _title : 'read_more_title' ,
read _more _subtitle : 'read_more_subtitle' ,
read _more _link : 'read_more_link' ,
email _title : 'email_title' ,
email _subtitle : 'email_subtitle' ,
email _input _label : 'email_input_label' ,
email _input _button : 'email_input_button' ,
email _input _button _loading : 'email_input_button_loading' ,
email _success : 'email_success' ,
email _error : 'email_error' ,
2021-03-29 15:59:33 +02:00
try _lbry _title : 'try_lbry_title' ,
try _lbry _subtitle : 'try_lbry_subtitle' ,
try _lbry _desktop _link : 'try_lbry_desktop_link' ,
try _lbry _desktop _help : 'try_lbry_desktop_help' ,
try _odysee _help : 'try_odysee_help' ,
contact _title : 'contact_title' ,
contact _press : 'contact_press' ,
contact _legal : 'contact_legal' ,
contact _other _email : 'contact_other_email' ,
contact _discord : 'contact_discord' ,
donate _title : 'donate_title' ,
donate _subtitle : 'donate_subtitle' ,
2021-03-28 16:44:13 +02:00
} ;
2021-03-28 16:38:52 +02:00
const en = {
2021-03-28 16:44:13 +02:00
faq : 'VIEW FAQ' ,
help _lbry : 'HELP LBRY' ,
save _crypto : 'SAVE CRYPTO' ,
2021-03-29 06:09:13 +02:00
go _home : 'Go Home' ,
og _description :
2021-03-29 14:42:58 +02:00
'The SEC doesn’ t understand blockchain. The claims made in SEC vs. LBRY would destroy the United States cryptocurrency industry.' ,
2021-03-29 15:48:14 +02:00
2021-03-29 06:09:13 +02:00
landing _subtitle :
'The SEC doesn’ t understand blockchain. The claims made in SEC vs. LBRY would destroy the United States cryptocurrency industry.' ,
landing _action : 'Help us educate the SEC' ,
2021-03-29 15:48:14 +02:00
2021-03-29 06:09:13 +02:00
summary _title : 'What’ s the big deal?' ,
summary _subtitle :
2021-03-29 16:04:49 +02:00
'The entire blockchain industry is at risk in the United States. Big tech and Wall St. would have more power and many people could lose their jobs.' ,
2021-03-29 15:48:14 +02:00
p1 _a :
'The SEC is advancing an aggressive and disastrous new standard that would make almost all blockchain tokens securities.' ,
p1 _b :
'Classifying all actively-developed blockchain tokens as securities will be a bureaucratic nightmare for United States residents and businesses operating in the US.' ,
p2 _a :
2021-03-29 16:04:49 +02:00
'Under this new standard, almost any token is a security, including the previously safe Ethereum. The nature of technology is that it is never "finished".' ,
2021-03-29 15:48:14 +02:00
p2 _b :
'This change will make it much harder for startups to form new blockchain companies, cause massive job loss, and stunt the development of a critical new technology. All the while, big tech and Wall St. prosper!' ,
share _story _title : 'Share this story' ,
share _story _subtitle : 'Post to social media to spread awareness.' ,
2021-03-29 15:59:33 +02:00
twitter _title : 'What are people saying?' ,
2021-03-29 15:48:14 +02:00
petition _title : 'Sign the petition' ,
petition _subtitle :
'Tell the SEC that cryptocurrency must remain legal and free.' ,
petition _link : 'Add your signature' ,
read _more _title : 'Read more' ,
read _more _subtitle : 'Read our case guide and FAQ' ,
read _more _link : 'here' ,
email _title : 'Stay Informed' ,
email _subtitle : 'We will keep you up to date with the latest on this case.' ,
email _input _label : 'Email' ,
email _input _button : 'Submit' ,
email _input _button _loading : 'Submitting' ,
2021-03-29 16:04:49 +02:00
email _success : 'Thank you. We will keep you in the loop.' ,
2021-03-29 15:48:14 +02:00
email _error : 'Sorry, there was an error. Please try again.' ,
2021-03-29 15:59:33 +02:00
try _lbry _title : 'Try LBRY' ,
try _lbry _subtitle :
'If the government and big tech want it gone, it must be good.' ,
try _lbry _desktop _link : 'LBRY Desktop' ,
try _lbry _desktop _help : 'decentralized and open-source' ,
try _odysee _help : 'easiest to use' ,
contact _title : 'Contact us' ,
contact _press : 'Press inquiries' ,
contact _legal : 'Legal' ,
contact _other _email : 'Other email' ,
contact _discord : 'Discord (not run by LBRY Inc)' ,
donate _title : 'Donate' ,
donate _subtitle : 'If you want to go far, go together.' ,
2021-03-28 16:38:52 +02:00
} ;
2021-03-29 16:09:11 +02:00
const es = {
// landing_action: '...',
} ;
2021-03-28 16:38:52 +02:00
const languages = {
es ,
} ;
export function t ( string , lang ) {
let val ;
if ( languages [ lang ] ) {
val = languages [ lang ] [ string ] ;
}
if ( val ) {
return val ;
} else {
return en [ string ] ;
}
}