Differences between revisions 1 and 7 (spanning 6 versions)
Revision 1 as of 2009-10-08 05:04:30
Size: 1294
Editor: svaksha
Comment:
Revision 7 as of 2009-10-26 15:56:23
Size: 2339
Editor: CarlTrachte
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Describe Gujarati ગુજરાતી and include links to Python information in Gujarati Language here. Describe Gujarati ગુજરાતી and include links to Python information in the Gujarati Language here.

ISO 639-1 Code: gu
Line 31: Line 33:
= ગુજરાતી = '''~+ગુજરાતી+~'''
Line 33: Line 35:
Phrases for code snippet from [[http://www.masteranylanguage.com/cgi/f/rView.pl?pc=MALGujarati&tc=CommonPhrases&vm=fc&la=&sw=1|masteranylanguage.com]]

{{{#!python
# -*- coding: utf-8 -*-
# python 3.0 or 3.1

ગુજરાતી = {'Yes':'હા',
           'No':'ના',
           'Thank you':'દુન્યવદ્',
           "You're welcome":'તમરો અભાર્',
           'Excuse me':'મફ કર્જો',
           "I'm sorry":'મન્ને મફ કરો',
           'What is your name?':'તમારું નામ શું છે',
           'My name is . . .':'મારું નામ ... છે',
           'Hello':'નમસ્ટે',
           'Goodbye':'આવ્જો',
           'How are you?':'કેમ્ ચ્હો',
           'Welcome':'પુતેરો'}

for english in ગુજરાતી:
    print(chr(34) + english + chr(34) + ' in English is ' +
          ગુજરાતી[english] + ' in Gujarati.')
}}}
Line 35: Line 60:
NewLanguagePage CategoryLanguage

Describe Gujarati ગુજરાતી and include links to Python information in the Gujarati Language here.

ISO 639-1 Code: gu

There are some groundrules, some laid down by the site admins, some my suggestions:

1) Pages must be named in ASCII and English (PolishLanguage)

2) Pages must have an explanation in English at the top (Links to Python information in <language X>)

3) (my suggestion) We probably want to limit invites to edit the pages to people we know well, or Pythonistas with a track record. Hopefully this is inclusive enough without opening the site up to a spam flood and vandalismfest.

Where these pages really need help:

1) check links, remove broken ones.

2) add new links that are quality Python information and active.

3) some care for languages that have next to nothing, but do have people in the Python community - even a link to the Wikipedia page for Python, in that language, is a start (Some are pretty complete and of high quality - the Russian language Wikipedia page for Python, for instance, packs a lot in).

ગુજરાતી

Phrases for code snippet from masteranylanguage.com

   1 # -*- coding: utf-8 -*-
   2 # python 3.0 or 3.1
   3 
   4 ગુજરાતી = {'Yes':'હા',
   5            'No':'ના',
   6            'Thank you':'દુન્યવદ્',
   7            "You're welcome":'તમરો અભાર્',
   8            'Excuse me':'મફ કર્જો',
   9            "I'm sorry":'મન્ને મફ કરો',
  10            'What is your name?':'તમારું નામ શું છે',
  11            'My name is . . .':'મારું નામ ... છે',
  12            'Hello':'નમસ્ટે',
  13            'Goodbye':'આવ્જો',
  14            'How are you?':'કેમ્ ચ્હો',
  15            'Welcome':'પુતેરો'}
  16 
  17 for english in ગુજરાતી:
  18     print(chr(34) + english + chr(34) + ' in English is ' +
  19           ગુજરાતી[english] + ' in Gujarati.')


CategoryLanguage CategoryUnicode CategoryPythonIndia

GujaratiLanguage (last edited 2009-10-26 15:56:23 by CarlTrachte)

Unable to edit the page? See the FrontPage for instructions.