mirror of
https://github.com/zxing/zxing.git
synced 2024-11-10 21:14:06 -08:00
c003d96b89
literals. 2. Using a very handy script for this purpose, and checking it into utils/ since it saved me some headache. 3. Turned tabs -> spaces for WifiResultHandler. 4. Better error handling on network types: look for exact matches rather than substrings. git-svn-id: https://zxing.googlecode.com/svn/trunk@1456 59b500cc-1b3d-0410-9834-0bbf25fbcc57
69 lines
2.3 KiB
Python
Executable file
69 lines
2.3 KiB
Python
Executable file
#!/usr/bin/env python
|
|
#
|
|
# Copyright (C) 2010 ZXing authors
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# Translate a string from English to all locales used in the Barcode
|
|
# Scanner Android project
|
|
#
|
|
# Author: Neha Pandey
|
|
|
|
from urllib2 import urlopen
|
|
from urllib import urlencode
|
|
import sys
|
|
|
|
def translate (in_lang, out_lang, input):
|
|
"""Translate the input from in_lang to out_lang using Google Translate"""
|
|
# Create the URL
|
|
langpair = '%s|%s' % (in_lang, out_lang)
|
|
base = 'http://ajax.googleapis.com/ajax/services/language/translate?'
|
|
params = urlencode ((('v',1.0),
|
|
('q',input),
|
|
('langpair',langpair),) )
|
|
url = base + params
|
|
# Call translation
|
|
content = urlopen(url).read()
|
|
|
|
# Snip out unwanted fluff from the translation
|
|
start_index = content.find('"translatedText":"') + 18
|
|
translation = content [start_index:]
|
|
end_index = translation.find('"}, "')
|
|
output = translation[:end_index]
|
|
return output
|
|
|
|
# All the languages to translate to
|
|
language_list = ['en', 'ar', 'cs', 'da', 'de', 'es',
|
|
'fi', 'fr', 'hu', 'it', 'ja', 'nl',
|
|
'pl', 'pt', 'ru', 'sv', 'zh-CN',
|
|
'zh-TW']
|
|
|
|
if (len(sys.argv) < 3):
|
|
print "Usage: %s name String to translate" % sys.argv[0]
|
|
print "Sample: %s ask-banana Give me a banana" % sys.argv[0]
|
|
import sys
|
|
sys.exit (-1);
|
|
|
|
# First argument is the name of the string
|
|
string_name = sys.argv[1]
|
|
# Remaining arguments is the string to be translated in English
|
|
input_string =' '.join(sys.argv[2:])
|
|
|
|
# Translate all languages
|
|
for i in range(len(language_list)) :
|
|
translation = translate ('en', language_list[i], input_string)
|
|
xml_string = '<string name="' + string_name + '">' + \
|
|
translation + '</string>'
|
|
print language_list[i], xml_string
|
|
|