diff --git a/angular-gettext/angular-gettext-tests.ts b/angular-gettext/angular-gettext-tests.ts
new file mode 100644
index 000000000..9a10f1062
--- /dev/null
+++ b/angular-gettext/angular-gettext-tests.ts
@@ -0,0 +1,61 @@
+///
+
+module angular_gettext_tests {
+
+
+ // Configuring angular-gettext
+ // https://angular-gettext.rocketeer.be/dev-guide/configure/
+ //Setting the language
+ angular.module('myApp').run(function (gettextCatalog: angular.gettext.gettextCatalog) {
+ gettextCatalog.setCurrentLanguage('nl');
+ });
+
+ //Highlighting untranslated strings
+ angular.module('myApp').run(function (gettextCatalog: angular.gettext.gettextCatalog) {
+ gettextCatalog.debug = true;
+ });
+
+
+ // Marking strings in JavaScript code as translatable.
+ // https://angular-gettext.rocketeer.be/dev-guide/annotate-js/
+ angular.module("myApp").controller("helloController", function (gettext: angular.gettext.gettextFunction) {
+ var myString = gettext("Hello");
+ });
+
+ //Translating directly in JavaScript.
+ angular.module("myApp").controller("helloController", function (gettextCatalog: angular.gettext.gettextCatalog) {
+ var translated: string = gettextCatalog.getString("Hello");
+ });
+
+ angular.module("myApp").controller("helloController", function (gettextCatalog: angular.gettext.gettextCatalog) {
+ var myString2: string = gettextCatalog.getPlural(3, "Bird", "Birds");
+ });
+
+ angular.module("myApp").controller("helloController", function (gettextCatalog: angular.gettext.gettextCatalog) {
+ var translated: string = gettextCatalog.getString("Hello {{name}}", { name: "Ruben" });
+ });
+
+ // Setting strings manually
+ // https://angular-gettext.rocketeer.be/dev-guide/manual-setstrings/
+
+ angular.module("myApp").run(function (gettextCatalog: angular.gettext.gettextCatalog) {
+ // Load the strings automatically during initialization.
+ gettextCatalog.setStrings("nl", {
+ "Hello": "Hallo",
+ "One boat": ["Een boot", "{{$count}} boats"]
+ });
+ });
+
+
+ interface helloControllerScope extends ng.IScope {
+ switchLanguage: (lang: string) => void;
+ }
+ // Lazy-loading languages
+ // https://angular-gettext.rocketeer.be/dev-guide/lazy-loading/
+ angular.module("myApp").controller("helloController", function ($scope: helloControllerScope, gettextCatalog: angular.gettext.gettextCatalog) {
+ $scope.switchLanguage = function (lang: string) {
+ gettextCatalog.setCurrentLanguage(lang);
+ gettextCatalog.loadRemote("/languages/" + lang + ".json");
+ };
+ });
+}
\ No newline at end of file
diff --git a/angular-gettext/angular-gettext.d.ts b/angular-gettext/angular-gettext.d.ts
new file mode 100644
index 000000000..1a88ef164
--- /dev/null
+++ b/angular-gettext/angular-gettext.d.ts
@@ -0,0 +1,73 @@
+// Type definitions for angular-gettext v2.1.0
+// Project: https://angular-gettext.rocketeer.be/
+// Definitions by: Ákos Lukács
+// Definitions: https://github.com/borisyankov/DefinitelyTyped
+
+///
+
+declare module angular.gettext {
+ interface gettextCatalog {
+
+ //////////////
+ /// Fields ///
+ //////////////
+
+ /** (default: false): Whether or not to prefix untranslated strings with [MISSING]: or a custom prefix. */
+ debug: boolean;
+ /** (default: [MISSING]:): Custom prefix for untranslated strings. */
+ debugPrefix: string;
+ /** (default: false): Whether or not to wrap all processed text with markers.Example output: [Welcome] */
+ showTranslatedMarkers: boolean;
+ /** (default: [): Custom prefix to mark strings that have been run through angular-gettext. */
+ translatedMarkerPrefix: string;
+ /** (default: ]): Custom suffix to mark strings that have been run through angular-gettext. */
+ translatedMarkerSuffix: string;
+ /** An object of loaded translation strings.Shouldn't be used directly. */
+ strings: {};
+ /** The default language, in which you're application is written. This defaults to English and it's generally a bad idea to use anything else: if your language has different pluralization rules you'll end up with incorrect translations. Deprecated
+ * @deprecreated
+ */
+ baseLanguage: string;
+
+
+ ///////////////
+ /// Methods ///
+ ///////////////
+
+ /** Sets the current language and makes sure that all translations get updated correctly. */
+ setCurrentLanguage(lang: string): void;
+
+ /** Returns the current language. */
+ getCurrentLanguage(): string;
+
+ /** Processes an object of string definitions. More details https://angular-gettext.rocketeer.be/dev-guide/manual-setstrings/
+ * @param language A language code.
+ * @param strings A dictionary of strings. The format of this dictionary is:
+ * - Keys: Singular English strings (as defined in the source files)
+ * - Values: Either a single string for signular-only strings or an array of plural forms.
+ */
+ setStrings(language: string, strings: { [key: string]: string|string[] }): void;
+
+ /** Get the correct pluralized (but untranslated) string for the value of n. */
+ getStringForm(string: string, n: number): string;
+
+ /** Translate a string with the given context. Uses Angular.JS interpolation, so something like this will do what you expect:
+ * var hello = gettextCatalog.getString("Hello {{name}}!", { name: "Ruben" });
+ * // var hello will be "Hallo Ruben!" in Dutch.
+ * The context parameter is optional: pass null (or don't pass anything) if you're not using it: this skips interpolation and is a lot faster.
+ */
+ getString(string: string, context?: any): string;
+
+ /** Translate a plural string with the given context. */
+ getPlural(n: number, string: string, stringPlural: string, context?: any): string;
+
+ /** Load a set of translation strings from a given URL.This should be a JSON catalog generated with grunt-angular-gettext. More details https://angular-gettext.rocketeer.be/dev-guide/lazy-loading/ */
+ loadRemote(url: string): ng.IHttpPromise;
+ }
+
+ /** If you have text that should be translated in your JavaScript code, wrap it with a call to a function named gettext. This module provides an injectable function to do so */
+ interface gettextFunction {
+ (dummyString: string): string;
+ }
+}
+