Differences between revisions 10 and 11
Revision 10 as of 2009-10-23 15:16:26
Size: 2247
Editor: CarlTrachte
Comment: work in progress
Revision 11 as of 2009-10-23 15:49:09
Size: 2717
Editor: CarlTrachte
Comment: this should do it for now
Deletions are marked like this. Additions are marked like this.
Line 38: Line 38:
work in progress Phrases taken from [[http://laoconnection.com/language2a.htm|laoconnection]]
Line 40: Line 40:
Phrases taken from [[http://laoconnection.com/language2a.htm|laoconnection]] Getting Lao words for identifiers (variables) and text:
Line 68: Line 68:
nothing yet. Using UTF-8 encoded identifiers:

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

ຊ່ືອ = ['ດາວ', 'Bob', 'Mary', 'Monique']

countries = ['ລາວ', 'ຄານາດາ', 'ອາເມຣິກາ', 'ຝຣ້່ງ']

for ຊ່ືອx, countryx in zip(ຊ່ືອ, countries):
    print('\nຊື່ຂອ້ຢແມ່ນ ' + ຊ່ືອx)
    print('ຂ້ອຢມາຈາກ ' + countryx + '\n')
}}}

Links to Python information in Lao

ISO 639-1 Code: lo

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.

4) No anonymous edits.

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 taken from laoconnection

Getting Lao words for identifiers (variables) and text:

   1 >>> # -*- coding: utf-8 -*-
   2 >>> # python 3.0/3.1
   3 >>> # having some problems with combination characters rendering correctly
   4 >>> # Courier 10 or 14 point font in idle seems to work best
   5 >>>
   6 >>> # get 'my name is' phrase from Unicode
   7 >>> '\u0E8A\u0EB7\u0EC8\u0E82\u0EAD\u0EC9\u0EA2\u0EC1\u0EA1\u0EC8\u0E99'
   8 'ຊື່ຂອ້ຢແມ່ນ'
   9 >>> # get 'I am from' phrase from Unicode
  10 >>> '\u0E82\u0EC9\u0EAD\u0EA2\u0EA1\u0EB2\u0E88\u0EB2\u0E81'
  11 'ຂ້ອຢມາຈາກ'
  12 >>> # get 'Laos' from Unicode
  13 >>> '\u0EA5\u0EB2\u0EA7'
  14 'ລາວ'
  15 >>> # get 'Canada' from Unicode
  16 >>> '\u0E84\u0EB2\u0E99\u0EB2\u0E94\u0EB2'
  17 'ຄານາດາ'
  18 >>> # get 'America' from Unicode
  19 >>> '\u0EAD\u0EB2\u0EC0\u0EA1\u0EA3\u0EB4\u0E81\u0EB2'
  20 'ອາເມຣິກາ'
  21 >>> # get 'France' from Unicode
  22 >>> '\u0E9D\u0EA3\u0EC9\u0EC8\u0E87'
  23 'ຝຣ້່ງ'

Using UTF-8 encoded identifiers:

   1 # -*- coding: utf-8 -*-
   2 # python 3.0/3.1
   3 
   4 ຊ່ືອ = ['ດາວ', 'Bob', 'Mary', 'Monique']
   5 
   6 countries = ['ລາວ', 'ຄານາດາ', 'ອາເມຣິກາ', 'ຝຣ້່ງ']
   7 
   8 for ຊ່ືອx, countryx in zip(ຊ່ືອ, countries):
   9     print('\nຊື່ຂອ້ຢແມ່ນ ' + ຊ່ືອx)
  10     print('ຂ້ອຢມາຈາກ ' + countryx + '\n')

CategoryLanguage CategoryUnicode

LaoLanguage (last edited 2009-10-23 15:53:53 by CarlTrachte)

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