From 8fa3e6cb45493ba44317fc6d455f594cff9aacf5 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 24 Jan 2013 13:09:39 +0530 Subject: [PATCH] integrated language in profile, request --- startup/__init__.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/startup/__init__.py b/startup/__init__.py index c763d9c054..adacd4c047 100644 --- a/startup/__init__.py +++ b/startup/__init__.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + # ERPNext - web based ERP (http://erpnext.com) # Copyright (C) 2012 Web Notes Technologies Pvt Ltd # @@ -17,6 +19,13 @@ # default settings that can be made for a profile. from __future__ import unicode_literals +lang_names = { + "हिंदी": "hi", + "English": "en" +} + +lang_list = ["en", "hi"] + product_name = "ERPNext" profile_defaults = { "Company": "company",