Skip to content

Instantly share code, notes, and snippets.

@ConnorMcF
Last active November 10, 2015 18:46
Show Gist options
  • Save ConnorMcF/141eb5a609f67e01776c to your computer and use it in GitHub Desktop.
Save ConnorMcF/141eb5a609f67e01776c to your computer and use it in GitHub Desktop.
<?php
// English language file for gMusic
// By Connor McFarlane
$lang["author"] = "Connor McFarlane";
$lang["lang"] = "English";
$lang["lang_code"] = "en";
// --- Translations
// Sidebar
$lang["name"] = "gMusic";
$lang["notfound"] = "notFound";
$lang["title"] = "gMusic";
$lang["title_caps"] = "gMUSIC";
$lang["title_subheading"] = "Pick your own music!";
$lang["side_home"] = "Home";
$lang["side_what"] = "What is it?";
$lang["side_players"] = "For Players";
$lang["side_owners"] = "For Owners";
$lang["side_devs"] = "For Developers";
$lang["side_testimonials"] = "Testimonials";
$lang["side_songs"] = "Songs";
$lang["side_servers"] = "Servers";
$lang["side_dashboard"] = "Dashboard";
$lang["side_logout"] = "Logout";
// Homepage
$lang["welcome"] = "Welcome!";
$lang["cdn_by"] = "CDN by ";
$lang["maxcdn"] = "MaxCDN";
$lang["contact"] = "Contact";
$lang["signinwithsteam"] = "Sign in with Steam!";
$lang["what_is_gmusic"] = "WHAT IS gMUSIC?";
$lang["what_is_gmusic_text"] =
"Hate having to listen to the loading music forced apon you by server owners?
Now with gMusic, you can pick what you want to listen to!";
$lang["players"] = "PLAYERS";
$lang["players_text"] =
"Are you a Garry's Mod player looking to change the music you hear on all servers or disable it entirely?
Sign in with steam below to continue to the control panel.";
$lang["serverowners"] = "SERVER OWNERS";
$lang["serverowners_text"] =
"Are you a server owner looking to add gMusic to your server's loading screen?
Sign in with steam below to continue to the control panel.";
$lang["devs"] = "SERVER DEVELOPERS";
$lang["devs_text"] =
"Are you a server developer looking to intergrate gMusic with your website?
Take a look at our API reference!";
$lang["devs_button"] = "VISIT API REFERENCE";
$lang["testimonials"] = "TESTIMONIALS";
// Dashboard
$lang["dash_title"] = "gMUSIC DASHBOARD";
$lang["dash_subheading"] = "Pick your own music!";
$lang["dash_songs"] = "Songs";
$lang["dash_servers"] = "Servers";
$lang["dash_addasong"] = "Add a song!";
$lang["dash_addnewsong"] = "Add new song";
$lang["dash_mutesongs"] = "Mute songs";
$lang["dash_unmutesongs"] = "Unmute songs";
$lang["dash_id"] = "ID";
$lang["dash_fail"] = "FAIL!";
$lang["dash_youtube"] = "YouTube";
$lang["dash_soundcloud"] = "Soundcloud";
$lang["dash_add"] = "Add";
$lang["dash_duration"] = "Duration";
$lang["dash_videoid"] = "Video ID";
$lang["dash_enable"] = "Enable";
$lang["dash_disable"] = "Disable";
$lang["dash_delete"] = "Delete";
$lang["dash_cancel"] = "Cancel";
$lang["dash_email_doconfirm"] = "Please check your email for the confirmation email! (Check your junk box if you can't find it)";
$lang["dash_email_confirmed"] = 'Thanks for verifying your email! You may now <a data-toggle="modal" href="#addServerModal">add a server</a>!';
$lang["dash_email_disposable"] = "Please don't use a disposable email, we'll never spam you. It's only incase something goes wrong.";
$lang["dash_email_notverified"] = "You can't add a server since you're email isn't verified yet!";
$lang["dash_addaserver"] = "Add new server";
$lang["dash_addserver"] = "Add a server!";
$lang["dash_name"] = "Name";
$lang["dash_loadingscreenurl"] = "Loading Screen URL";
$lang["dash_optional"] = "Optional";
$lang["dash_email_verifytitle"] = "Verify your email!";
$lang["dash_email"] = "Email";
$lang["dash_email_wontsell"] = "We won't sell it, ever!";
$lang["dash_email_sendconfirmation"] = "Send Confirmation";
$lang["dash_songs_deletemsg"] = // below
'<p>Are you you wish to delete <b><?php echo($songtitle); ?></b>?</p>
<p>You will no longer hear this song while connecting if you do!</p>'; // don't edit the tags, <b> to </b>
$lang["dash_selectoradd"] = // below
'Please <a data-toggle="modal" href="#addSongModal">add a song</a> or select an existing one from the left hand side.<br/>
A random song will be selected to play when you join a server.'; // don't edit the tags, <a> to </a>
$lang["dash_serverselectoradd"] = // below
'Please <a data-toggle="modal" href="#<?php echo($modal); ?>">add a server</a> or select an existing one from the left hand side.'; // don't edit the tags, <a> to </a>
// 404
$lang["404"] = "404";
$lang["404_uhoh"] = "Uh oh! This wasn't what you were looking for...";
$lang["404_contact"] = 'If you came here from a valid link, please <a href="/contact">let me know</a> or you can <a href="/">go back to the homepage</a>.'; // don't edit the tags, <a> and </a> (edit inside)
// Etc
$lang["contact"] = "Contact";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment