-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Ractive is replaced by Vuejs * Partial fix initialization IITC in tab on start browser #11 * Enabling plugins without reloading the page * Rename 'UserScripts' category to 'External' #3 * Added localization support
- Loading branch information
Showing
24 changed files
with
14,494 additions
and
461 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
This project is licensed under the permissive [MIT License](LICENSE). Parts imported from other projects remain under their respective licenses: | ||
|
||
- [highlight.js; BSD License](https://github.com/highlightjs/highlight.js) | ||
- [highlight.js; BSD License](https://github.com/highlightjs/highlight.js) ([v9.15.8](https://github.com/highlightjs/highlight.js/archive/9.15.8.zip), build `node tools/build.js javascript`) | ||
- [MaterialIcons; Apache License 2.0](https://github.com/google/material-design-icons/issues/786#issuecomment-487055009) | ||
- [Vue.js; MIT License](https://vuejs.org/) ([v2.6.10](https://github.com/vuejs/vue/archive/v2.6.10.zip)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,158 @@ | ||
{ | ||
"extName": { | ||
"message": "IITC-Button", | ||
"description": "Main title on the Chrome Web Store" | ||
"description": "Name of the extension" | ||
}, | ||
"extDescription": { | ||
"message": "Launch IITC for Ingress Intel with ease.", | ||
"description": "Short description on the Chrome Web Store" | ||
"description": "Description of the extension" | ||
}, | ||
"lang": { | ||
"message": "en" | ||
}, | ||
"titleDefault": { | ||
"message": "Open Intel", | ||
"description": "Title for the button at the application panel" | ||
}, | ||
"needRebootIntel": { | ||
"message": "Changes will be applied after rebooting Intel" | ||
}, | ||
"updateInProgress": { | ||
"message": "Update in progress…" | ||
}, | ||
"changesApplied": { | ||
"message": "Changes were applied" | ||
}, | ||
"noData": { | ||
"message": "No data" | ||
}, | ||
"addExternalPlugin": { | ||
"message": "Add external plugin" | ||
}, | ||
"iitcHomePage": { | ||
"message": "IITC-CE Home page" | ||
}, | ||
"iitcTelegram": { | ||
"message": "IITC-CE Telegram channel" | ||
}, | ||
"iitcGithub": { | ||
"message": "IITC-CE GitHub repository" | ||
}, | ||
"iitcButtonOptions": { | ||
"message": "IITC-CE Button options" | ||
}, | ||
"updateNow": { | ||
"message": "update now" | ||
}, | ||
"choosingUpdateChannel": { | ||
"message": "Choosing a IITC-CE update channel" | ||
}, | ||
"release": { | ||
"message": "Release" | ||
}, | ||
"testBuilds": { | ||
"message": "Test builds" | ||
}, | ||
"localServer": { | ||
"message": "Local server" | ||
}, | ||
"updateFrequency": { | ||
"message": "IITC-CE checks for updates" | ||
}, | ||
"updateExternalFrequency": { | ||
"message": "External plugins checks for updates" | ||
}, | ||
"every6hours": { | ||
"message": "Every 6 Hours" | ||
}, | ||
"every12hours": { | ||
"message": "Every 12 Hours" | ||
}, | ||
"everyDay": { | ||
"message": "Every Day" | ||
}, | ||
"everyWeek": { | ||
"message": "Every Week" | ||
}, | ||
"anyChannel": { | ||
"message": "Any channel:" | ||
}, | ||
"badgeExternal": { | ||
"message": "external" | ||
}, | ||
"localServerURL": { | ||
"message": "Local server address" | ||
}, | ||
"placeholderLocalServer": { | ||
"message": "127.0.0.1" | ||
}, | ||
"openSupport": { | ||
"message": "Open support page:" | ||
}, | ||
"pluginSave": { | ||
"message": "Save" | ||
}, | ||
"pluginDelete": { | ||
"message": "Delete" | ||
}, | ||
"notValidUserScript": { | ||
"message": "$PLUGIN_NAME$ is not a valid UserScript.", | ||
"placeholders": { | ||
"plugin_name": { | ||
"content": "$1", | ||
"example": "awesome-plugin.user.js" | ||
} | ||
} | ||
}, | ||
"addedUserScript": { | ||
"message": "$PLUGIN_NAME$ has been added to the External category.", | ||
"placeholders": { | ||
"plugin_name": { | ||
"content": "$1", | ||
"example": "awesome-plugin.user.js" | ||
} | ||
} | ||
}, | ||
"addressNotAvailable": { | ||
"message": "Address is not available" | ||
}, | ||
"errorReadingFile": { | ||
"message": "An error occurred while reading $PLUGIN_NAME$ file.", | ||
"placeholders": { | ||
"plugin_name": { | ||
"content": "$1", | ||
"example": "awesome-plugin.user.js" | ||
} | ||
} | ||
}, | ||
"or": { | ||
"message": "or" | ||
}, | ||
"dropJSHereOrClick": { | ||
"message": "Drop <i>.js</i> files here or click to upload." | ||
}, | ||
"willBeOverwrittenByNewPlugin": { | ||
"message": "Plugin with the same ID will be overwritten by the new plugin." | ||
}, | ||
"clickInstallPlugin": { | ||
"message": "This is a IITC plugin. Click install to start using it." | ||
}, | ||
"install": { | ||
"message": "Install" | ||
}, | ||
"loading": { | ||
"message": "Loading…" | ||
}, | ||
"serverNotAvailableRetry": { | ||
"message": "The server is not available. Retry after $NUM$ second", | ||
"placeholders": { | ||
"num": { | ||
"content": "$1", | ||
"example": "5" | ||
} | ||
} | ||
}, | ||
"external": { | ||
"message": "External" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.