From f1788080da3659c5b71ba9b3f6e09c5774582691 Mon Sep 17 00:00:00 2001 From: MathWhiz Date: Mon, 18 Apr 2016 17:21:07 -0500 Subject: [PATCH] Add list of Featured third-party Apps (#7046) * add list of featured third-party apps * Add comma * add descriptions * add description to other * add table * add description to other Conflicts: common/locales/en/settings.json website/views/options/settings.jade * Update settings.json * Sort extensions by name --- common/locales/en/settings.json | 8 ++++++++ website/views/options/settings.jade | 19 +++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/common/locales/en/settings.json b/common/locales/en/settings.json index a5ea38a2d6..b1262e9d7d 100644 --- a/common/locales/en/settings.json +++ b/common/locales/en/settings.json @@ -66,6 +66,14 @@ "API": "API", "APIText": "Copy these for use in third party applications. However, think of your API Token like a password, and do not share it publicly. You may occasionally be asked for your User ID, but never post your API Token where others can see it, including on Github.", "APIToken": "API Token (this is a password - see warning above!)", + "thirdPartyApps": "Third Party Apps", + "dataToolDesc": "A webpage that shows you certain information from your Habitica account, such as statistics about your tasks, equipment, and skills.", + "beeminder": "Beeminder", + "beeminderDesc": "Let Beeminder automatically monitor your Habitica To-Dos. You can commit to maintaining a target number of To-Dos completed per day or per week, or you can commit to gradually reducing your remaining number of uncompleted To-Dos. (By \"commit\" Beeminder means under threat of paying actual money! But you may also just like Beeminder's fancy graphs.)", + "chromeChatExtension": "Chrome Chat Extension", + "chromeChatExtensionDesc": "The Chrome Chat Extension for Habitica adds an intuitive chat box to all of habitica.com. It allows users to chat in the Tavern, their party, and any guilds they are in.", + "otherExtensions": "Other Extensions", + "otherDesc": "Find other apps, extensions, and tools on the Habitica wiki.", "resetDo": "Do it, reset my account!", "fixValues": "Fix Values", "fixValuesText1": "If you've encountered a bug or made a mistake that unfairly changed your character (damage you shouldn't have taken, Gold you didn't really earn, etc.), you can manually correct your numbers here. Yes, this makes it possible to cheat: use this feature wisely, or you'll sabotage your own habit-building!", diff --git a/website/views/options/settings.jade b/website/views/options/settings.jade index aad9b8b476..c2608126b3 100644 --- a/website/views/options/settings.jade +++ b/website/views/options/settings.jade @@ -232,6 +232,25 @@ script(type='text/ng-template', id='partials/options.settings.api.html') pre.prettyprint {{user.apiToken}} h6=env.t('qrCode') img.img-rendering-auto(src='https://chart.googleapis.com/chart?cht=qr&chs=200x200&chl=%7B%22address%22%3A%22https%3A%2F%2Fhabitrpg.com%22%2C%22user%22%3A%22{{user.id}}%22%2C%22key%22%3A%22{{user.apiToken}}%22%7D&choe=UTF-8&chld=L', alt='qrcode') + br + h3=env.t('thirdPartyApps') + ul + li + a(target='_blank' href='https://www.beeminder.com/habitica')=env.t('beeminder') + br + =env.t('beeminderDesc') + li + a(target='_blank' href='https://chrome.google.com/webstore/detail/habitrpg-chat-client/hidkdfgonpoaiannijofifhjidbnilbb')=env.t('chromeChatExtension') + br + =env.t('chromeChatExtensionDesc') + li + a(target='_blank' ng-href='http://data.habitrpg.com?uuid={{user._id}}')=env.t('dataTool') + br + =env.t('dataToolDesc') + li + !=env.t('otherExtensions') + br + =env.t('otherDesc') hr