summaryrefslogtreecommitdiffstats
path: root/js/app/services/language.coffee
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-15 12:06:14 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-15 12:06:14 +0200
commit360966ab4bdafd15cdef21e34492f5d7d3151b74 (patch)
tree0d196a502d41a5234a2da5903fda09e7d51ddaed /js/app/services/language.coffee
parentfe2bb06a2cc7bf3cd70388d6179728a600eabc9f (diff)
get language from server and save it in a language object, dont use a seperate file for instantiating controllers
Diffstat (limited to 'js/app/services/language.coffee')
-rw-r--r--js/app/services/language.coffee37
1 files changed, 37 insertions, 0 deletions
diff --git a/js/app/services/language.coffee b/js/app/services/language.coffee
new file mode 100644
index 000000000..85a405fc7
--- /dev/null
+++ b/js/app/services/language.coffee
@@ -0,0 +1,37 @@
+###
+
+ownCloud - News
+
+@author Bernhard Posselt
+@copyright 2012 Bernhard Posselt nukeawhale@gmail.com
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+License as published by the Free Software Foundation; either
+version 3 of the License, or any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+
+You should have received a copy of the GNU Affero General Public
+License along with this library. If not, see <http://www.gnu.org/licenses/>.
+
+###
+
+angular.module('News').factory 'Language', ->
+
+ class Language
+
+ constructor: ->
+ @_language = 'en'
+
+ handle: (data) ->
+ @_language = data.language
+
+ getLanguage: ->
+ return @_language
+
+
+ return new Language()