Lockerz Share Lockerz.com

Customize Buttons

Translation and Localization

By default, Lockerz Share automatically translates the menu based on the locale of each user's browser.

You can set the default locale by choosing a language in the button generator, or you can customize the language yourself by following the example below.

var a2a_config = a2a_config || {};
// de
// German / Deutsch
a2a_config.localize = {
   Share: "Teilen",
   Save: "Sichern",
   Subscribe: "Abonnieren",
   Email: "E-Mail",
   Bookmark: "Lesezeichen",
   ShowAll: "Alle anzeigen",
   ShowLess: "Weniger anzeigen",
   FindServices: "Finde Dienste",
   FindAnyServiceToAddTo: "Finde deinen Bookmarkdienst",
   PoweredBy: "Unterstützt von",
   ShareViaEmail: "Teile via E-Mail",
   SubscribeViaEmail: "Abonniere via E-Mail",
   BookmarkInYourBrowser: "Lesezeichen im Browser setzen",
   BookmarkInstructions: "Benutze die Tasten Ctrl+D oder Cmd+D um die Seite zu speichern",
   AddToYourFavorites: "Als Favorit setzen",
   SendFromWebOrProgram: "Sende die Seite von der Website oder einem Programm aus",
   EmailProgram: "E-Mail-Programm"
};

Force language

If you're providing your own translation, you can turn off Lockerz Share's auto-localization and always force your custom translation.
a2a_config.locale = "custom";
Share
You can force a certain pre-translated locale by specifying a supported language code (such as fr or fr-CA).
var a2a_config = a2a_config || {};
a2a_config.locale = "fr-CA";