├── genxword
├── __init__.py
├── data
│ ├── gumby.lang
│ └── help_page
├── cli.py
├── complexstring.py
├── control.py
├── calculate.py
└── gui.py
├── .gitignore
├── extra
├── genxword-gtk.png
├── genxword-gtk.desktop
├── genxword-gtk.1
└── genxword.1
├── MANIFEST.in
├── examples
├── output
│ ├── Pdf_key_example.png
│ ├── Common_words_grid.png
│ ├── Common_words_key.png
│ ├── Monty Python_grid.png
│ ├── Monty Python_key.png
│ ├── Pdf_grid_example.png
│ ├── Monty Python_clues.txt
│ └── Common_words_clues.txt
└── word_lists
│ ├── tamil.txt
│ ├── burmese.txt
│ ├── python_xword.txt
│ ├── 2000_comwords_ENG.txt
│ └── GSL_EN_words.txt
├── test.py
├── README.rst
├── setup.py
├── po
├── genxword.pot
├── de.po
├── nl.po
├── ca.po
├── gl.po
├── es.po
├── fr.po
└── th.po
└── LICENSE
/genxword/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | dist/
2 | genxword.egg-info/
3 | mo/
4 | .DS_Store
5 | *.pdf
6 | build/
7 |
--------------------------------------------------------------------------------
/extra/genxword-gtk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/riverrun/genxword/HEAD/extra/genxword-gtk.png
--------------------------------------------------------------------------------
/MANIFEST.in:
--------------------------------------------------------------------------------
1 | recursive-include genxword/data *
2 | recursive-include po *.po
3 | recursive-include extra *
4 |
--------------------------------------------------------------------------------
/examples/output/Pdf_key_example.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/riverrun/genxword/HEAD/examples/output/Pdf_key_example.png
--------------------------------------------------------------------------------
/examples/output/Common_words_grid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/riverrun/genxword/HEAD/examples/output/Common_words_grid.png
--------------------------------------------------------------------------------
/examples/output/Common_words_key.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/riverrun/genxword/HEAD/examples/output/Common_words_key.png
--------------------------------------------------------------------------------
/examples/output/Monty Python_grid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/riverrun/genxword/HEAD/examples/output/Monty Python_grid.png
--------------------------------------------------------------------------------
/examples/output/Monty Python_key.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/riverrun/genxword/HEAD/examples/output/Monty Python_key.png
--------------------------------------------------------------------------------
/examples/output/Pdf_grid_example.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/riverrun/genxword/HEAD/examples/output/Pdf_grid_example.png
--------------------------------------------------------------------------------
/examples/word_lists/tamil.txt:
--------------------------------------------------------------------------------
1 | வாருங்கள் welcome
2 | வணக்கம் hello
3 | நன்றி thank you
4 | நில் stop
5 | நெருப்பு fire
6 | காப்பாற்றுங்கள் help
7 |
--------------------------------------------------------------------------------
/examples/word_lists/burmese.txt:
--------------------------------------------------------------------------------
1 | ပြည်သူ့လွှတ်တော် lower house of congress
2 | အမျိုးသားလွှတ်တော် upper house of congress
3 | နေပြည်တော် capital of Myanmar
4 | မင်္ဂလာပါ saying hello
5 | ထမင်း white rice
6 | ရွှေရင်အေး dessert
7 | ရွှေတိဂုံစေတီတော် famous pagoda
8 | တောင်ကြီးမြို့ capital of Shan State
9 |
--------------------------------------------------------------------------------
/extra/genxword-gtk.desktop:
--------------------------------------------------------------------------------
1 | [Desktop Entry]
2 | Encoding=UTF-8
3 | Version=1.0
4 | Type=Application
5 | Terminal=false
6 | Exec=genxword-gtk
7 | Name=genxword-gtk
8 | Comment=Create crosswords in pdf, png and svg formats
9 | Icon=genxword-gtk
10 | Categories=GTK;Education;Graphics;
11 | StartupNotify=True
12 |
--------------------------------------------------------------------------------
/genxword/data/gumby.lang:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/test.py:
--------------------------------------------------------------------------------
1 | import ipuz
2 | from genxword.control import Genxword
3 | import tempfile
4 | import os
5 |
6 |
7 | def test_ipuz_export():
8 | with tempfile.TemporaryDirectory() as temp:
9 | # Move to a temporary directory so we don't clog up anything important
10 | os.chdir(temp)
11 |
12 | # Generate a simple crossword as .puz
13 | gen = Genxword(auto=True, mixmode=False)
14 | gen.wlist([
15 | 'land', 'successful', 'climb', 'yet', 'picture', 'traffic', 'skin', 'leadership', 'threaten', 'win'
16 | ], 10)
17 | gen.grid_size()
18 | gen.gengrid('test', 'z')
19 |
20 | with open('test.ipuz') as fp:
21 | # This does automatic validation
22 | ipuz.read(''.join(fp.read()))
23 |
--------------------------------------------------------------------------------
/examples/output/Monty Python_clues.txt:
--------------------------------------------------------------------------------
1 | Word bank
2 | BLESSED
3 | DEIRDRE
4 | SPAM
5 | BOB
6 | STIFFS
7 | WOBBLER
8 | KNIGGETS
9 | EXCALIBUR
10 | FINLAND
11 | HOVERCRAFT
12 | DENNIS
13 | CASTANETS
14 | BAPTISTS
15 | CAMELOT
16 | FORK
17 | NORMAN
18 | BRIDGE
19 | COCONUT
20 | THIRD
21 | HILTER
22 |
23 | Clues
24 | Across
25 | 2. A foodstuff popular with Vikings.
26 | 5. A place where people push the pram a lot.
27 | 7. The name of a lupin-loving highwayman, '_________ Moore'.
28 | 8. What needs to be built between the two peaks of Kilimanjaro.
29 | 10. A country that is so near to Russia, but lots of miles from Vietnam.
30 | 11. A fruit that possibly migrates.
31 | 14. The French for knights.
32 | 16. The sword that a moistened bint lobbed at Arthur.
33 | 18. How to ask for matches in Hungarian. 'My _________ is full of eels'.
34 | Down
35 | 1. The destiny of the cheesemakers.
36 | 2. What undertakers deal with.
37 | 3. 'The ________ Test Match', a film by Pasolini.
38 | 4. The new MP for North Minehead.
39 | 6. Dinsdale Piranha's nemesis, 'Spiny ________'.
40 | 9. One of the only Churches to do respray jobs.
41 | 10. The cause of a restaurant's downfall, 'a dirty _______'.
42 | 12. A musical instrument that can be made from testicles.
43 | 13. Mrs Pewtey's beautiful first name.
44 | 15. How to pronounce the name Raymond Luxury Yacht. 'Throat _________ mangrove'.
45 | 17. Milton's most famous poem. 'Can you lend us two _____ till Tuesday?'
46 |
--------------------------------------------------------------------------------
/extra/genxword-gtk.1:
--------------------------------------------------------------------------------
1 | .TH GENXWORD-GTK 1 "11/5/2020" "Version 2.2.0" "User Commands"
2 | .SH NAME
3 | genxword-gtk \- a crossword generator
4 | .SH SYNOPSIS
5 | genxword-gtk
6 | .SH DESCRIPTION
7 | Genxword-gtk is a crossword generator, which produces pdf (A4 or letter size)
8 | versions of the grid and clues, or png / svg versions of the crossword grid,
9 | together with a text file containing the words and clues.
10 | The word list that is used to create the crossword is also saved as a text file.
11 | .PP
12 | The word list can be created when using genxword-gtk, or it can be a text file
13 | that has already been written. It can contain words and clues, or just words.
14 | Each word, or word and clue, should be on a separate line, and there should
15 | be a space between the word and clue. In the following example, the word is 'excalibur'
16 | and the clue is 'The sword that a moistened bint lobbed at Arthur':
17 | .TP
18 | .PP
19 | excalibur The sword that a moistened bint lobbed at Arthur.
20 | .PP
21 | Example word lists can be found in the /usr/share/genxword/word_lists/ directory.
22 | .PP
23 | There is also an option to sort the word list by word length, which might be useful
24 | when editing a long word list. This option also removes words with non-alphabetic characters.
25 | .SH SEE ALSO
26 | https://github.com/riverrun/genxword
27 | .SH BUGS
28 | No known bugs.
29 | .SH AUTHOR
30 | This program has been developed by David Whitlock (alovedalongthe@gmail.com), and it is based on a program originally written by Bryan Helmig.
31 |
--------------------------------------------------------------------------------
/examples/word_lists/python_xword.txt:
--------------------------------------------------------------------------------
1 | kniggets The French for knights.
2 | castanets A musical instrument that can be made from testicles.
3 | duck An animal that weighs the same as a witch.
4 | camelot A place where people push the pram a lot.
5 | blessed The destiny of the cheesemakers.
6 | wobbler How to pronounce the name Raymond Luxury Yacht. 'Throat _________ mangrove'.
7 | coconut A fruit that possibly migrates.
8 | dennis The name of a lupin-loving highwayman, '_________ Moore'.
9 | finland A country that is so near to Russia, but lots of miles from Vietnam.
10 | norman Dinsdale Piranha's nemesis, 'Spiny ________'.
11 | hovercraft How to ask for matches in Hungarian. 'My _________ is full of eels'.
12 | excalibur The sword that a moistened bint lobbed at Arthur.
13 | spam A foodstuff popular with Vikings.
14 | llama An animal that is larger than a frog.
15 | bob Milton's most famous poem. 'Can you lend us two _____ till Tuesday?'
16 | spanking The punishment for setting alight the grail-shaped beacon.
17 | capricorn Brian's star sign.
18 | reg The leader of the People's Front of Judea.
19 | crucifixion Common punishment for a first offence.
20 | socrates The scorer of the only goal in the philosophers' football match.
21 | third 'The ________ Test Match', a film by Pasolini.
22 | stiffs What undertakers deal with.
23 | baptists One of the only Churches to do respray jobs.
24 | deirdre Mrs Pewtey's beautiful first name.
25 | fork The cause of a restaurant's downfall, 'a dirty _______'.
26 | bridge What needs to be built between the two peaks of Kilimanjaro.
27 | hilter The new MP for North Minehead.
28 | sperm A most sacred cell.
29 | creosote 'Mr _________', the best customer in any restaurant.
30 | boxer Ken Clean-Air Systems' profession.
31 |
--------------------------------------------------------------------------------
/examples/output/Common_words_clues.txt:
--------------------------------------------------------------------------------
1 | Word bank
2 | THROW
3 | VALUE
4 | LOOK
5 | ABOUT
6 | COPY
7 | INSTANCE
8 | RETAIN
9 | FREE
10 | FINISH
11 | OURSELVES
12 | ORIGIN
13 | GENERATION
14 | TEACHER
15 | HUSBAND
16 | REALLY
17 | SEND
18 | ACID
19 | CHAIR
20 | PROMISE
21 | KNOW
22 | INCREASE
23 | DEAL
24 | THREATEN
25 | SOMETHING
26 | THROUGH
27 | DOCUMENT
28 | THANK
29 | GENTLEMAN
30 | CONTRACT
31 | FACT
32 | GREAT
33 | SKY
34 | WESTERN
35 | CELL
36 | PARTNER
37 | LIST
38 | FURTHER
39 | ROW
40 | INDUSTRY
41 | INTEREST
42 | COMMIT
43 | REFUSE
44 | THING
45 | PLAYER
46 | ORGANIZATION
47 | SECURITY
48 | PART
49 | CONCLUSION
50 |
51 | Clues
52 | Across
53 | 1. Write clue for origin
54 | 6. Write clue for throw
55 | 8. Write clue for great
56 | 9. Write clue for really
57 | 11. Write clue for part
58 | 13. Write clue for husband
59 | 17. Write clue for teacher
60 | 19. Write clue for conclusion
61 | 21. Write clue for further
62 | 22. Write clue for about
63 | 23. Write clue for interest
64 | 24. Write clue for player
65 | 25. Write clue for contract
66 | 26. Write clue for something
67 | 28. Write clue for list
68 | 29. Write clue for partner
69 | 31. Write clue for chair
70 | 32. Write clue for ourselves
71 | 34. Write clue for generation
72 | 35. Write clue for row
73 | 37. Write clue for security
74 | 40. Write clue for instance
75 | 42. Write clue for refuse
76 | 43. Write clue for know
77 | Down
78 | 2. Write clue for retain
79 | 3. Write clue for promise
80 | 4. Write clue for value
81 | 5. Write clue for sky
82 | 6. Write clue for thing
83 | 7. Write clue for western
84 | 10. Write clue for fact
85 | 12. Write clue for through
86 | 14. Write clue for deal
87 | 15. Write clue for threaten
88 | 16. Write clue for document
89 | 18. Write clue for increase
90 | 20. Write clue for organization
91 | 22. Write clue for acid
92 | 25. Write clue for commit
93 | 27. Write clue for industry
94 | 28. Write clue for look
95 | 30. Write clue for gentleman
96 | 31. Write clue for copy
97 | 33. Write clue for send
98 | 36. Write clue for finish
99 | 38. Write clue for thank
100 | 39. Write clue for free
101 | 41. Write clue for cell
102 |
--------------------------------------------------------------------------------
/genxword/cli.py:
--------------------------------------------------------------------------------
1 | # Authors: David Whitlock , Bryan Helmig
2 | # Crossword generator that outputs the grid and clues as a pdf file and/or
3 | # the grid in png/svg format with a text file containing the words and clues.
4 | # Copyright (C) 2010-2011 Bryan Helmig
5 | # Copyright (C) 2011-2020 David Whitlock
6 | #
7 | # Genxword is free software: you can redistribute it and/or modify
8 | # it under the terms of the GNU General Public License as published by
9 | # the Free Software Foundation, either version 3 of the License, or
10 | # (at your option) any later version.
11 | #
12 | # Genxword is distributed in the hope that it will be useful,
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 | # GNU General Public License for more details.
16 | #
17 | # You should have received a copy of the GNU General Public License
18 | # along with genxword. If not, see .
19 |
20 | import argparse
21 | from .control import _, Genxword
22 |
23 | usage_info = _("""The word list file contains the words and clues, or just words, that you want in your crossword.
24 | For further information on how to format the word list file and about the other options, please consult the man page.
25 | """)
26 |
27 | def main():
28 | parser = argparse.ArgumentParser(description=_('Crossword generator.'), prog='genxword', epilog=usage_info)
29 | parser.add_argument('infile', help=_('Name of word list file.'))
30 | parser.add_argument('saveformat', help=_('Save files as A4 pdf (p), letter size pdf (l), png (n), svg(s) and/or '
31 | 'ipuz(z).'))
32 | parser.add_argument('-a', '--auto', dest='auto', action='store_true', help=_('Automated (non-interactive) option.'))
33 | parser.add_argument('-m', '--mix', dest='mixmode', action='store_true', help=_('Create anagrams for the clues'))
34 | parser.add_argument('-n', '--number', dest='nwords', type=int, default=50, help=_('Number of words to be used.'))
35 | parser.add_argument('-o', '--output', dest='output', default='Gumby', help=_('Name of crossword.'))
36 | args = parser.parse_args()
37 | gen = Genxword(args.auto, args.mixmode)
38 | with open(args.infile) as infile:
39 | gen.wlist(infile, args.nwords)
40 | gen.grid_size()
41 | gen.gengrid(args.output, args.saveformat)
42 |
--------------------------------------------------------------------------------
/README.rst:
--------------------------------------------------------------------------------
1 | genxword
2 | ========
3 |
4 | A crossword generator
5 | ---------------------
6 |
7 | Description
8 | -----------
9 |
10 | Genxword is a crossword generator written in Python.
11 |
12 | When you install genxword, you will have two programs,
13 | `genxword-gtk `_,
14 | which has a graphical user interface, and genxword, which runs from the
15 | command line.
16 |
17 | Both programs create a crossword from a list of words and
18 | clues. You can save the crossword, with clues, as a pdf file, or you can
19 | save the empty grid and key in png and/or svg format, together with the
20 | word bank and clues in a text file.
21 |
22 | Features
23 | --------
24 |
25 | - The crossword can be saved, with clues, as a pdf file, or the empty
26 | grid and key can be saved in png and/or svg format, together with the
27 | word bank and clues in a text file.
28 | - The crossword can be recalculated multiple times - with the option to
29 | increase the grid size at each stage.
30 | - A dictionary file can be used as the word list. A certain amount of
31 | words (default 50) will be randomly selected from the file and used
32 | to make the crossword.
33 | - When editing the word list, there is an option to sort it, from the
34 | shortest to the longest word, and remove non-alphabetic characters.
35 | - Multiple languages, including right-to-left languages, such as Hebrew
36 | and Arabic, are now supported.
37 |
38 | Use
39 | ---
40 |
41 | Please read the `wiki `_ for
42 | information about how to use genxword.
43 |
44 | Installation
45 | ------------
46 |
47 | To install genxword (add *sudo* to the command, or run as root,
48 | if you are using Linux): ::
49 |
50 | pip3 install genxword
51 |
52 | Dependencies
53 | ------------
54 |
55 | Genxword depends on pycairo (python-cairo), pygobject (python-gobject or python-gi),
56 | python-gi-cairo (if you are using a Debian-based system), pango (gir1.2-pango-1.0),
57 | gtksourceview3 (gir1.2-gtksource-3.0) and gettext.
58 |
59 | These dependencies can easily be installed on Linux by using your package manager,
60 | and with most distributions, they will already be installed.
61 |
62 | Windows users can download these dependencies from
63 | `here `_
64 | When installing python-gobject, you also need to install (check the boxes for)
65 | gtk3, pango, gdk-pixbuf and gtksourceview3.
66 |
67 | Authors
68 | -------
69 |
70 | This program has been developed by David Whitlock, and it is based on a
71 | program originally written by Bryan Helmig.
72 |
73 | Translators
74 | -----------
75 |
76 | Many thanks to the following people, who have kindly provided translations for genxword:
77 |
78 | Miguel Anxo Bouzada (Catalan, Spanish and Galician), Koen Wybo (Dutch), Pinkvana Thaworn (Thai)
79 | and me (French).
80 |
--------------------------------------------------------------------------------
/extra/genxword.1:
--------------------------------------------------------------------------------
1 | .TH GENXWORD 1 "11/5/2020" "Version 2.2.0" "User Commands"
2 | .SH NAME
3 | genxword \- a crossword generator
4 | .SH SYNOPSIS
5 | genxword [\-a] [\-m] [\-n] [\-o] infile saveformat
6 | .SH DESCRIPTION
7 | genxword is a crossword generator which runs from the command line. There is
8 | also a version with a graphical user interface, which is called genxword-gtk.
9 | It reads words and clues, or just words, from a text file and produces
10 | crosswords as pdf files, with the clues, and/or png/svg files, together
11 | with a text file containing the word bank and clues.
12 | .PP
13 | The infile is a text file containing words and clues, or just words.
14 | Each word, or word and clue, should be on a separate line, and there should
15 | be a space between the word and clue. In the following example, the word is 'excalibur'
16 | and the clue is 'The sword that a moistened bint lobbed at Arthur':
17 | .TP
18 | .PP
19 | excalibur The sword that a moistened bint lobbed at Arthur.
20 | .PP
21 | Example word lists can be found in the /usr/share/genxword/word_lists/ directory.
22 | .PP
23 | Saveformat refers to the file format that you want the crossword saved as.
24 | You can save it in ipuz format, as an A4 size pdf (p), letter size pdf (l), or you can save
25 | the image files as png (n) and/or svg (s) files. If you choose to save the files in
26 | png/svg format, the word bank and clues will be saved in a text file.
27 | .SH OPTIONS
28 | .TP
29 | \-a, \-\-auto
30 | Run genxword non-interactively. Use this option if you want to run the program via a script.
31 | If you use this option, the grid will be made larger and the crossword recalculated
32 | until the crossword uses 90% or more of the words supplied.
33 | .TP
34 | \-n, \-\-number
35 | The number of words to be used from the word list file, which can contain thousands
36 | of words. The default number is 50.
37 | .TP
38 | \-o, \-\-output
39 | The name of the crossword. If you save the crossword as a pdf file, this name will be used as the title of the crossword.
40 | .TP
41 | \-m, \-\-mix
42 | In this mode each clue will be an anagram of the word.
43 | .TP
44 | \-h, \-\-help
45 | Print basic information about how to use the program.
46 | .SH EXAMPLES
47 | .TP
48 | Create a crossword using the word_list.txt file and save it as an A4 size pdf.
49 | .B genxword word_list.txt p
50 | .TP
51 | Create a crossword using 40 words from the word_list.txt file and save the grid and key in \
52 | png and svg format, together with a text file containing the word bank and clues.
53 | .B genxword \-n 40 word_list.txt ns
54 | .TP
55 | Create a crossword called "Norwegian_Blue" using non-interactive mode with words from the word_list.txt file \
56 | and save it as a letter size pdf file.
57 | .B genxword \-a \-o "Norwegian_Blue" word_list.txt l
58 | .SH SEE ALSO
59 | https://github.com/riverrun/genxword
60 | .SH BUGS
61 | No known bugs.
62 | .SH AUTHOR
63 | This program has been developed by David Whitlock (alovedalongthe@gmail.com), and it is based on a program originally written by Bryan Helmig.
64 |
--------------------------------------------------------------------------------
/setup.py:
--------------------------------------------------------------------------------
1 | # Authors: David Whitlock , Bryan Helmig
2 | # Crossword generator that outputs the grid and clues as a pdf file and/or
3 | # the grid in png/svg format with a text file containing the words and clues.
4 | # Copyright (C) 2010-2011 Bryan Helmig
5 | # Copyright (C) 2011-2016 David Whitlock
6 | #
7 | # Genxword is free software: you can redistribute it and/or modify
8 | # it under the terms of the GNU General Public License as published by
9 | # the Free Software Foundation, either version 3 of the License, or
10 | # (at your option) any later version.
11 | #
12 | # Genxword is distributed in the hope that it will be useful,
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 | # GNU General Public License for more details.
16 | #
17 | # You should have received a copy of the GNU General Public License
18 | # along with genxword. If not, see .
19 |
20 | import os
21 | import subprocess
22 | from setuptools import setup
23 |
24 | with open('README.rst') as f:
25 | long_description = f.read()
26 |
27 | def add_data():
28 | try:
29 | data_files = [('share/applications', ['extra/genxword-gtk.desktop']),
30 | ('share/pixmaps', ['extra/genxword-gtk.png'])]
31 | if not os.path.isdir('mo'):
32 | os.mkdir('mo')
33 | for pofile in os.listdir('po'):
34 | if pofile.endswith('po'):
35 | lang = pofile.strip('.po')
36 | modir = os.path.join('mo', lang)
37 | if not os.path.isdir(modir):
38 | os.mkdir(modir)
39 | mofile = os.path.join(modir, 'genxword.mo')
40 | subprocess.call('msgfmt {} -o {}'.format(os.path.join('po', pofile), mofile), shell=True)
41 | data_files.append(['share/locale/{}/LC_MESSAGES/'.format(lang), [mofile]])
42 | return data_files
43 | except:
44 | return
45 |
46 | if os.name == 'posix':
47 | data_files = add_data()
48 | else:
49 | data_files = None
50 |
51 | setup(
52 | name='genxword',
53 | version='2.2.0',
54 | author='David Whitlock',
55 | author_email='alovedalongthe@gmail.com',
56 | url='https://github.com/riverrun/genxword',
57 | description='A crossword generator',
58 | long_description=long_description,
59 | license='GPLv3',
60 | packages=['genxword'],
61 | include_package_data=True,
62 | data_files=data_files,
63 | zip_safe=False,
64 | platforms='any',
65 | classifiers=[
66 | 'Development Status :: 5 - Production/Stable',
67 | 'Environment :: Console',
68 | 'Environment :: X11 Applications :: GTK',
69 | 'Intended Audience :: End Users/Desktop',
70 | 'Intended Audience :: Developers',
71 | 'Intended Audience :: Education',
72 | 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
73 | 'Operating System :: OS Independent',
74 | 'Programming Language :: Python',
75 | 'Programming Language :: Python :: 3',
76 | 'Topic :: Education',
77 | 'Topic :: Office/Business',
78 | ],
79 | install_requires=[
80 | 'pycairo',
81 | 'PyGObject',
82 | ],
83 | extras_require={
84 | 'dev': [
85 | 'pytest',
86 | 'ipuz'
87 | ]
88 | },
89 | entry_points={
90 | 'console_scripts': [
91 | 'genxword = genxword.cli:main',
92 | ],
93 | 'gui_scripts': [
94 | 'genxword-gtk = genxword.gui:main',
95 | ]
96 | },
97 | )
98 |
--------------------------------------------------------------------------------
/genxword/complexstring.py:
--------------------------------------------------------------------------------
1 | # Authors: David Whitlock , Bryan Helmig
2 | # Crossword generator that outputs the grid and clues as a pdf file and/or
3 | # the grid in png/svg format with a text file containing the words and clues.
4 | # Copyright (C) 2010-2011 Bryan Helmig
5 | # Copyright (C) 2011-2020 David Whitlock
6 | #
7 | # Genxword is free software: you can redistribute it and/or modify
8 | # it under the terms of the GNU General Public License as published by
9 | # the Free Software Foundation, either version 3 of the License, or
10 | # (at your option) any later version.
11 | #
12 | # Genxword is distributed in the hope that it will be useful,
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 | # GNU General Public License for more details.
16 | #
17 | # You should have received a copy of the GNU General Public License
18 | # along with genxword. If not, see .
19 |
20 | class ComplexString(str):
21 | """Handle accents and superscript / subscript characters."""
22 | accents = [768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781,
23 | 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795,
24 | 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809,
25 | 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823,
26 | 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837,
27 | 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851,
28 | 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865,
29 | 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879,
30 | 2306, 2366, 2367, 2368, 2369, 2370, 2371, 2372, 2375, 2376, 2379,
31 | 2380, 2402, 2403, 2433, 2492, 2494, 2495, 2496, 2497, 2498, 2499,
32 | 2500, 2503, 2504, 2507, 2508, 2519, 2530, 2531, 3006, 3007, 3008,
33 | 3009, 3010, 3014, 3015, 3016, 3018, 3019, 3020, 3021, 3031, 3633,
34 | 3636, 3637, 3638, 3639, 3640, 3641, 3655, 3656, 3657, 3658, 3659,
35 | 3660, 3661, 3662, 4139, 4140, 4141, 4142, 4143, 4144, 4145, 4146,
36 | 4150, 4151, 4152, 4154, 4155, 4156, 4157, 4158, 4182, 4185]
37 |
38 | special_chars = [2381, 2509, 4153]
39 |
40 | @staticmethod
41 | def _check_special(word, special):
42 | special_char = False
43 | formatted = []
44 | for letter in word:
45 | if letter in special or special_char:
46 | special_char = not special_char
47 | formatted[-1] += letter
48 | continue
49 | formatted.append(letter)
50 | return formatted
51 |
52 | @staticmethod
53 | def format_word(word):
54 | """Join the accent to the character it modifies.
55 | This guarantees that the character is correctly displayed when
56 | iterating through the string, and that the length is correct.
57 | """
58 | chars = {chr(n) for n in ComplexString.accents}
59 | special = {chr(n) for n in ComplexString.special_chars}
60 | formatted = []
61 | for letter in word:
62 | if letter in chars:
63 | formatted[-1] += letter
64 | continue
65 | formatted.append(letter)
66 | if special.intersection(word):
67 | return ComplexString._check_special(formatted, special)
68 | return formatted
69 |
70 | def __new__(cls, content):
71 | cs = super().__new__(cls, content)
72 | cs.blocks = cls.format_word(content)
73 | return cs
74 |
75 | def __iter__(self):
76 | for block in self.blocks:
77 | yield block
78 |
79 | def __len__(self):
80 | return len(self.blocks)
81 |
--------------------------------------------------------------------------------
/genxword/control.py:
--------------------------------------------------------------------------------
1 | # Authors: David Whitlock , Bryan Helmig
2 | # Crossword generator that outputs the grid and clues as a pdf file and/or
3 | # the grid in png/svg format with a text file containing the words and clues.
4 | # Copyright (C) 2010-2011 Bryan Helmig
5 | # Copyright (C) 2011-2020 David Whitlock
6 | #
7 | # Genxword is free software: you can redistribute it and/or modify
8 | # it under the terms of the GNU General Public License as published by
9 | # the Free Software Foundation, either version 3 of the License, or
10 | # (at your option) any later version.
11 | #
12 | # Genxword is distributed in the hope that it will be useful,
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 | # GNU General Public License for more details.
16 | #
17 | # You should have received a copy of the GNU General Public License
18 | # along with genxword. If not, see .
19 |
20 | import os
21 | import sys
22 | import gettext
23 | import random
24 | from .calculate import Crossword, Exportfiles
25 | from .complexstring import ComplexString
26 |
27 | base_dir = os.path.abspath(os.path.dirname(__file__))
28 | d = '/usr/local/share' if 'local' in base_dir.split('/') else '/usr/share'
29 | gettext.bindtextdomain('genxword', os.path.join(d, 'locale'))
30 | gettext.textdomain('genxword')
31 | _ = gettext.gettext
32 |
33 | class Genxword(object):
34 | def __init__(self, auto=False, mixmode=False):
35 | self.auto = auto
36 | self.mixmode = mixmode
37 |
38 | def wlist(self, words, nwords=50):
39 | """Create a list of words and clues."""
40 | wordlist = [line.strip().split(' ', 1) for line in words if line.strip()]
41 | if len(wordlist) > nwords:
42 | wordlist = random.sample(wordlist, nwords)
43 | self.wordlist = [[ComplexString(line[0].upper()), line[-1]] for line in wordlist]
44 | self.wordlist.sort(key=lambda i: len(i[0]), reverse=True)
45 | if self.mixmode:
46 | for line in self.wordlist:
47 | line[1] = self.word_mixer(line[0].lower())
48 |
49 | def word_mixer(self, word):
50 | """Create anagrams for the clues."""
51 | word = orig_word = list(word)
52 | for i in range(3):
53 | random.shuffle(word)
54 | if word != orig_word:
55 | break
56 | return ''.join(word)
57 |
58 | def grid_size(self, gtkmode=False):
59 | """Calculate the default grid size."""
60 | if len(self.wordlist) <= 20:
61 | self.nrow = self.ncol = 17
62 | elif len(self.wordlist) <= 100:
63 | self.nrow = self.ncol = int((round((len(self.wordlist) - 20) / 8.0) * 2) + 19)
64 | else:
65 | self.nrow = self.ncol = 41
66 | if min(self.nrow, self.ncol) <= len(self.wordlist[0][0]):
67 | self.nrow = self.ncol = len(self.wordlist[0][0]) + 2
68 | if not gtkmode and not self.auto:
69 | gsize = str(self.nrow) + ', ' + str(self.ncol)
70 | grid_size = input(_('Enter grid size (') + gsize + _(' is the default): '))
71 | if grid_size:
72 | self.check_grid_size(grid_size)
73 |
74 | def check_grid_size(self, grid_size):
75 | try:
76 | nrow, ncol = int(grid_size.split(',')[0]), int(grid_size.split(',')[1])
77 | except:
78 | pass
79 | else:
80 | if len(self.wordlist[0][0]) < min(nrow, ncol):
81 | self.nrow, self.ncol = nrow, ncol
82 |
83 | def gengrid(self, name, saveformat):
84 | i = 0
85 | while 1:
86 | print(_('Calculating your crossword...'))
87 | calc = Crossword(self.nrow, self.ncol, '-', self.wordlist)
88 | print(calc.compute_crossword())
89 | if self.auto:
90 | if float(len(calc.best_wordlist))/len(self.wordlist) < 0.9 and i < 5:
91 | self.nrow += 2; self.ncol += 2
92 | i += 1
93 | else:
94 | break
95 | else:
96 | h = input(_('Are you happy with this solution? [Y/n] '))
97 | if h.strip() != _('n'):
98 | break
99 | inc_gsize = input(_('And increase the grid size? [Y/n] '))
100 | if inc_gsize.strip() != _('n'):
101 | self.nrow += 2;self.ncol += 2
102 | lang = _('Across/Down').split('/')
103 | message = _('The following files have been saved to your current working directory:\n')
104 | exp = Exportfiles(self.nrow, self.ncol, calc.best_grid, calc.best_wordlist, '-')
105 | exp.create_files(name, saveformat, lang, message)
106 |
--------------------------------------------------------------------------------
/genxword/data/help_page:
--------------------------------------------------------------------------------
1 | genxword-gtk
2 | Genxword-gtk is a crossword generator, which produces pdf (A4 or letter size) versions of the grid and clues, or png / svg versions of the crossword grid, together with a text file containing the words and clues. The word list that is used to create the crossword is also saved as a text file.
3 | Many different foreign languages, including right-to-left languages, such as Hebrew and Arabic, are also supported.
4 |
5 | Creating a word list
6 | You can create a new word list by clicking on the 'New word list' button, or by pressing Control + N.
7 | The word list can be just a list of words, like this:
8 |
9 | parrot
10 | spam
11 | vikings
12 |
13 | or it can be a list or words and clues, like this:
14 |
15 | excalibur A sword that a moistened bint lobbed at Arthur.
16 | duck An animal that weighs the same as a witch.
17 | coconut A fruit that possibly migrates.
18 |
19 | As you can see, each word needs to be on a separate line, and there should be a space between each word and its clue. The clue is everything after the first space, and when you write the words and clues, the words are automatically highlighted. You can find some example word lists here.
20 | Clicking the 'Open word list' button, or pressing Control + O, lets you open, and edit, a word list, which needs to be formatted as written above. The word list can be thousands of words long, and the crossword will be created with a set amount of words randomly selected from it. You can select the number of words in the box below.
21 | If you want to edit the word list more after you have calculated the crossword, you can return to this word list by clicking on the 'new' button again. The word list will be kept in memory until the crossword is saved.
22 | You can also sort the word list, from shortest to longest, by clicking on
23 | 'Sort word list' in the 'Word list' dropdown menu. As well as sorting the word list, this also removes any words that contain non-alphabetic characters.
24 | There is also an option to generate an anagram of each word for the clues. Enable this by clicking on 'Anagram clues' in the 'Crossword' dropdown menu.
25 |
26 | Calculating the crossword
27 | Click on the 'Create crossword' button, or press Control + G, to create the
28 | crossword. If you click on it a second time, the crossword will be recalculated with the same grid size.
29 | If you want to increase the grid size before recalculating the crossword, you need to click on the 'Recalculate' button or press Control + R.
30 |
31 | Saving the crossword
32 | This button, or Control + S, lets you choose where you save the crossword files.
33 | You can save the crossword in pdf, png and / or svg format. Just click on the appropriate entries on the 'Save the crossword as' bar.
34 |
35 | Further options
36 | On the bottom row of the main window, there are boxes in which you can write the name of the crossword, choose the number of words used, and choose the grid size. To change the grid size, you will need to enable this option in the 'Crossword' menu first (normally, the grid size will be automatically calculated based on the
37 | number of words used). The numbers in the grid size box refer to the number of rows and columns, and they need to be separated by a comma.
38 | For more detailed information, visit the genxword-gtk wiki.
39 |
40 | Keyboard shortcuts
41 | General
42 | Ctrl + N Create a new word list
43 | Ctrl + O Open an existing word list
44 | Ctrl + G Calculate the crossword or recalculate the crossword with the existing grid size
45 | Ctrl + R Increase the grid size and recalculate the crossword
46 | Ctrl + S Save the crossword
47 | Ctrl + Q Quit the program
48 | F1 Open the help page
49 | Text editing
50 | Ctrl + A Select all text
51 | Ctrl + C Copy selected text
52 | Ctrl + V Paste text
53 | Ctrl + X Cut selected text
54 | Ctrl + Z Undo
55 | Ctrl + Shift + Z Redo
56 |
57 | Authors
58 | This program has been developed by David Whitlock, and it is based on a program originally written by Bryan Helmig.
59 |
60 | License
61 | Genxword-gtk is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
62 |
--------------------------------------------------------------------------------
/po/genxword.pot:
--------------------------------------------------------------------------------
1 | # SOME DESCRIPTIVE TITLE.
2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3 | # This file is distributed under the same license as the PACKAGE package.
4 | # FIRST AUTHOR , YEAR.
5 | #
6 | #, fuzzy
7 | msgid ""
8 | msgstr ""
9 | "Project-Id-Version: PACKAGE VERSION\n"
10 | "Report-Msgid-Bugs-To: \n"
11 | "POT-Creation-Date: 2013-12-29 10:38+0700\n"
12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 | "Last-Translator: FULL NAME \n"
14 | "Language-Team: LANGUAGE \n"
15 | "Language: \n"
16 | "MIME-Version: 1.0\n"
17 | "Content-Type: text/plain; charset=CHARSET\n"
18 | "Content-Transfer-Encoding: 8bit\n"
19 |
20 | #: control.py:30
21 | msgid ""
22 | "The word list file contains the words and clues, or just words, that you "
23 | "want in your crossword. \n"
24 | "For further information on how to format the word list file and about the "
25 | "other options, please consult the man page.\n"
26 | msgstr ""
27 |
28 | #: control.py:68
29 | msgid "Enter grid size ("
30 | msgstr ""
31 |
32 | #: control.py:68
33 | msgid " is the default): "
34 | msgstr ""
35 |
36 | #: control.py:83
37 | msgid "Calculating your crossword..."
38 | msgstr ""
39 |
40 | #: control.py:92
41 | msgid "Are you happy with this solution? [Y/n] "
42 | msgstr ""
43 |
44 | #: control.py:93 control.py:96
45 | msgid "n"
46 | msgstr ""
47 |
48 | #: control.py:95
49 | msgid "And increase the grid size? [Y/n] "
50 | msgstr ""
51 |
52 | #: control.py:98 gui.py:78
53 | msgid "Across/Down"
54 | msgstr ""
55 |
56 | #: control.py:99
57 | msgid ""
58 | "The following files have been saved to your current working directory:\n"
59 | msgstr ""
60 |
61 | #: control.py:105
62 | msgid "Crossword generator."
63 | msgstr ""
64 |
65 | #: control.py:106
66 | msgid "Name of word list file."
67 | msgstr ""
68 |
69 | #: control.py:107
70 | msgid "Save files as A4 pdf (p), letter size pdf (l), png (n) and/or svg (s)."
71 | msgstr ""
72 |
73 | #: control.py:108
74 | msgid "Automated (non-interactive) option."
75 | msgstr ""
76 |
77 | #: control.py:109
78 | msgid "Create anagrams for the clues"
79 | msgstr ""
80 |
81 | #: control.py:110
82 | msgid "Number of words to be used."
83 | msgstr ""
84 |
85 | #: control.py:111
86 | msgid "Name of crossword."
87 | msgstr ""
88 |
89 | #: gui.py:104
90 | msgid "_Word list"
91 | msgstr ""
92 |
93 | #: gui.py:105
94 | msgid "_New word list"
95 | msgstr ""
96 |
97 | #: gui.py:106
98 | msgid "Create a new word list or go back to the already open word list"
99 | msgstr ""
100 |
101 | #: gui.py:107
102 | msgid "_Open word list"
103 | msgstr ""
104 |
105 | #: gui.py:107
106 | msgid "Open a word list"
107 | msgstr ""
108 |
109 | #: gui.py:108
110 | msgid "_Sort word list"
111 | msgstr ""
112 |
113 | #: gui.py:109
114 | msgid "Sort the word list and remove words with non-alphabetic characters"
115 | msgstr ""
116 |
117 | #: gui.py:110
118 | msgid "Quit"
119 | msgstr ""
120 |
121 | #: gui.py:111
122 | msgid "_Crossword"
123 | msgstr ""
124 |
125 | #: gui.py:112
126 | msgid "_Calculate crossword"
127 | msgstr ""
128 |
129 | #: gui.py:113
130 | msgid "Calculate the crossword"
131 | msgstr ""
132 |
133 | #: gui.py:114
134 | msgid "_Recalculate"
135 | msgstr ""
136 |
137 | #: gui.py:115
138 | msgid "Increase the grid size and recalculate the crossword"
139 | msgstr ""
140 |
141 | #: gui.py:116
142 | msgid "_Save"
143 | msgstr ""
144 |
145 | #: gui.py:116
146 | msgid "Save crossword"
147 | msgstr ""
148 |
149 | #: gui.py:117 gui.py:118
150 | msgid "_Help"
151 | msgstr ""
152 |
153 | #: gui.py:118
154 | msgid "Open the help page"
155 | msgstr ""
156 |
157 | #: gui.py:119
158 | msgid "_About"
159 | msgstr ""
160 |
161 | #: gui.py:119
162 | msgid "About"
163 | msgstr ""
164 |
165 | #: gui.py:123
166 | msgid "Anagram clues"
167 | msgstr ""
168 |
169 | #: gui.py:124
170 | msgid "Choose the grid size"
171 | msgstr ""
172 |
173 | #: gui.py:173
174 | msgid "Save the crossword as"
175 | msgstr ""
176 |
177 | #: gui.py:176
178 | msgid "A4 pdf"
179 | msgstr ""
180 |
181 | #: gui.py:180
182 | msgid "letter pdf"
183 | msgstr ""
184 |
185 | #: gui.py:194
186 | msgid "Name of crossword"
187 | msgstr ""
188 |
189 | #: gui.py:196
190 | msgid "Choose the name of your crossword"
191 | msgstr ""
192 |
193 | #: gui.py:201
194 | msgid "Number of words"
195 | msgstr ""
196 |
197 | #: gui.py:208
198 | msgid "Choose the number of words you want to use"
199 | msgstr ""
200 |
201 | #: gui.py:211
202 | msgid "Grid size"
203 | msgstr ""
204 |
205 | #: gui.py:217
206 | msgid ""
207 | "Choose the crossword grid size\n"
208 | "Go to the Crossword menu to enable this option"
209 | msgstr ""
210 |
211 | #: gui.py:251
212 | msgid "Please choose a file"
213 | msgstr ""
214 |
215 | #: gui.py:321
216 | msgid "Please choose a folder"
217 | msgstr ""
218 |
219 | #: gui.py:336
220 | msgid "Your crossword files have been saved in "
221 | msgstr ""
222 |
223 | #: gui.py:340
224 | msgid ""
225 | "Please fill in the name of the crossword and the format you want it saved in "
226 | "(A4 size pdf, letter size pdf, png or svg).\n"
227 | "Then click on the Save button again."
228 | msgstr ""
229 |
230 | #: gui.py:367
231 | msgid "A crossword generator"
232 | msgstr ""
233 |
--------------------------------------------------------------------------------
/po/de.po:
--------------------------------------------------------------------------------
1 | # SOME DESCRIPTIVE TITLE translation for genxword.
2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3 | # This file is distributed under the same license as the genxword package.
4 | # Felix Fritz , 2021.
5 | msgid ""
6 | msgstr ""
7 | "Project-Id-Version: \n"
8 | "Report-Msgid-Bugs-To: \n"
9 | "POT-Creation-Date: 2013-12-29 10:38+0700\n"
10 | "PO-Revision-Date: \n"
11 | "Last-Translator: Felix Fritz \n"
12 | "Language-Team: \n"
13 | "Language: de\n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Generator: Poedit 1.5.4\n"
18 |
19 | #: control.py:30
20 | msgid ""
21 | "The word list file contains the words and clues, or just words, that you "
22 | "want in your crossword. \n"
23 | "For further information on how to format the word list file and about the "
24 | "other options, please consult the man page.\n"
25 | msgstr ""
26 | "Die Wortliste ist eine Datei mit Wörtern und optionalen Hinweisen, die du "
27 | "in deinem Kreuzworträtsel willst. \n"
28 | "Wie die Wortliste zu formatieren ist und welche weiteren Optionen zur "
29 | "Verfügung stehen, wird auf der man page beschrieben.\n"
30 |
31 | #: control.py:68
32 | msgid "Enter grid size ("
33 | msgstr "Rastergröße (Standardwert "
34 |
35 | #: control.py:68
36 | msgid " is the default): "
37 | msgstr "):"
38 |
39 | #: control.py:83
40 | msgid "Calculating your crossword..."
41 | msgstr "Kreuzworträtsel wird berechnet..."
42 |
43 | #: control.py:92
44 | msgid "Are you happy with this solution? [Y/n] "
45 | msgstr "Bist du zufrieden mit der Lösung? [J/n]"
46 |
47 | #: control.py:93 control.py:96
48 | msgid "n"
49 | msgstr "n"
50 |
51 | #: control.py:95
52 | msgid "And increase the grid size? [Y/n] "
53 | msgstr "Soll das Raster vergrößert werden? [J/n]"
54 |
55 | #: control.py:98 gui.py:78
56 | msgid "Across/Down"
57 | msgstr "Horizontal/Vertikal"
58 |
59 | #: control.py:99
60 | msgid ""
61 | "The following files have been saved to your current working directory:\n"
62 | msgstr "Die folgenden Dateien wurden im aktuellen Verzeichnis erstellt:\n"
63 |
64 | #: control.py:105
65 | msgid "Crossword generator."
66 | msgstr "Kreuzworträtselgenerator."
67 |
68 | #: control.py:106
69 | msgid "Name of word list file."
70 | msgstr "Name der Datei mit der Wortliste."
71 |
72 | #: control.py:107
73 | msgid "Save files as A4 pdf (p), letter size pdf (l), png (n) and/or svg (s)."
74 | msgstr ""
75 | "Speichern als A4 PDF (p), Letter US PDF (l), png (n) und/oder svg (s)."
76 |
77 | #: control.py:108
78 | msgid "Automated (non-interactive) option."
79 | msgstr "Automatische (nicht-interaktive) Ausführung."
80 |
81 | #: control.py:109
82 | msgid "Create anagrams for the clues"
83 | msgstr "Anagramme als Hinweis erstellen"
84 |
85 | #: control.py:110
86 | msgid "Number of words to be used."
87 | msgstr "Anzahl der Wörter im Kreuzworträtsel."
88 |
89 | #: control.py:111
90 | msgid "Name of crossword."
91 | msgstr "Name des Kreuzworträtsels."
92 |
93 | #: gui.py:104
94 | msgid "_Word list"
95 | msgstr "_Wortliste"
96 |
97 | #: gui.py:105
98 | msgid "_New word list"
99 | msgstr "_Neue Wortliste"
100 |
101 | #: gui.py:106
102 | msgid "Create a new word list or go back to the already open word list"
103 | msgstr "Neue Wortliste erstellen oder zurück zur bereits geöffneten Wortliste gehen"
104 |
105 | #: gui.py:107
106 | msgid "_Open word list"
107 | msgstr "_Wortliste öffnen"
108 |
109 | #: gui.py:107
110 | msgid "Open a word list"
111 | msgstr "Wortliste öffnen"
112 |
113 | #: gui.py:108
114 | msgid "_Sort word list"
115 | msgstr "_Wörter sortieren"
116 |
117 | #: gui.py:109
118 | msgid "Sort the word list and remove words with non-alphabetic characters"
119 | msgstr "Wörter sortieren und Wörter mit nicht-alphabetischen Buchstaben entfernen"
120 |
121 | #: gui.py:110
122 | msgid "Quit"
123 | msgstr "Beenden"
124 |
125 | #: gui.py:111
126 | msgid "_Crossword"
127 | msgstr "_Kreuzworträtsel"
128 |
129 | #: gui.py:112
130 | msgid "_Calculate crossword"
131 | msgstr "_Kreuzworträtsel berechnen"
132 |
133 | #: gui.py:113
134 | msgid "Calculate the crossword"
135 | msgstr "Kreuzworträtsel generieren"
136 |
137 | #: gui.py:114
138 | msgid "_Recalculate"
139 | msgstr "_Nochmal generieren"
140 |
141 | #: gui.py:115
142 | msgid "Increase the grid size and recalculate the crossword"
143 | msgstr "Raster vergrößern und neues Kreuzworträtsel generieren"
144 |
145 | #: gui.py:116
146 | msgid "_Save"
147 | msgstr "_Speichern"
148 |
149 | #: gui.py:116
150 | msgid "Save crossword"
151 | msgstr "Kreuzworträtsel speichern"
152 |
153 | #: gui.py:117 gui.py:118
154 | msgid "_Help"
155 | msgstr "_Hilfe"
156 |
157 | #: gui.py:118
158 | msgid "Open the help page"
159 | msgstr "Hilfe öffnen"
160 |
161 | #: gui.py:119
162 | msgid "_About"
163 | msgstr "_Über"
164 |
165 | #: gui.py:119
166 | msgid "About"
167 | msgstr "Über..."
168 |
169 | #: gui.py:123
170 | msgid "Anagram clues"
171 | msgstr "Anagramm Hinweise"
172 |
173 | #: gui.py:124
174 | msgid "Choose the grid size"
175 | msgstr "Rastergröße auswählen"
176 |
177 | #: gui.py:173
178 | msgid "Save the crossword as"
179 | msgstr "Kreuzworträtsel speichern als"
180 |
181 | #: gui.py:176
182 | msgid "A4 pdf"
183 | msgstr "A4 PDF"
184 |
185 | #: gui.py:180
186 | msgid "letter pdf"
187 | msgstr "Letter (US) PDF"
188 |
189 | #: gui.py:194
190 | msgid "Name of crossword"
191 | msgstr "Name des Kreuzworträtsels"
192 |
193 | #: gui.py:196
194 | msgid "Choose the name of your crossword"
195 | msgstr "Name für dein Kreuzworträtsel"
196 |
197 | #: gui.py:201
198 | msgid "Number of words"
199 | msgstr "Anzahl der Wörter"
200 |
201 | #: gui.py:208
202 | msgid "Choose the number of words you want to use"
203 | msgstr "Wie viele Wörter sollen eingesetzt werden?"
204 |
205 | #: gui.py:211
206 | msgid "Grid size"
207 | msgstr "Rastergröße"
208 |
209 | #: gui.py:217
210 | msgid ""
211 | "Choose the crossword grid size\n"
212 | "Go to the Crossword menu to enable this option"
213 | msgstr ""
214 | "Rastergröße bestimmen\n"
215 | "Diese Option kann im Kreuzworträtsel Menu aktiviert werden"
216 |
217 | #: gui.py:251
218 | msgid "Please choose a file"
219 | msgstr "Datei auswählen"
220 |
221 | #: gui.py:321
222 | msgid "Please choose a folder"
223 | msgstr "Ordner auswählen"
224 |
225 | #: gui.py:336
226 | msgid "Your crossword files have been saved in "
227 | msgstr "Dein Kreuzworträtsel wurde gespeichert in "
228 |
229 | #: gui.py:340
230 | msgid ""
231 | "Please fill in the name of the crossword and the format you want it saved in "
232 | "(A4 size pdf, letter size pdf, png or svg).\n"
233 | "Then click on the Save button again."
234 | msgstr ""
235 | "Name des Kreuzworträtsels und das Dateiformat (A4 PDF, Letter (US) PDF, png of svg) "
236 | "müssen angegeben werden. \n"
237 | "Danach kann gespeichert werden."
238 |
239 | #: gui.py:367
240 | msgid "A crossword generator"
241 | msgstr "Ein Kreuzworträtselgenerator"
242 |
--------------------------------------------------------------------------------
/po/nl.po:
--------------------------------------------------------------------------------
1 | # SOME DESCRIPTIVE TITLE translation for genxword.
2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3 | # This file is distributed under the same license as the genxword package.
4 | # Koen Wybo , 2014.
5 | msgid ""
6 | msgstr ""
7 | "Project-Id-Version: \n"
8 | "Report-Msgid-Bugs-To: \n"
9 | "POT-Creation-Date: 2013-12-29 10:38+0700\n"
10 | "PO-Revision-Date: \n"
11 | "Last-Translator: Koen Wybo \n"
12 | "Language-Team: \n"
13 | "Language: nl\n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Generator: Poedit 1.5.4\n"
18 |
19 | #: control.py:30
20 | msgid ""
21 | "The word list file contains the words and clues, or just words, that you "
22 | "want in your crossword. \n"
23 | "For further information on how to format the word list file and about the "
24 | "other options, please consult the man page.\n"
25 | msgstr ""
26 | "De lijst met woorden bevat ofwel de woorden en de sleutels of enkel de "
27 | "woorden, die je in je kruiswoordraadsel wenst \n"
28 | "Aanvullende informatie over de indeling van de woordenlijst en andere opties "
29 | "vind je terug in de hulp(man)-pagina. \n"
30 |
31 | #: control.py:68
32 | msgid "Enter grid size ("
33 | msgstr "Voer rastergrootte in ("
34 |
35 | #: control.py:68
36 | msgid " is the default): "
37 | msgstr "is de standaardwaarde):"
38 |
39 | #: control.py:83
40 | msgid "Calculating your crossword..."
41 | msgstr "Berekenen van het kruiswoordraadsel..."
42 |
43 | #: control.py:92
44 | msgid "Are you happy with this solution? [Y/n] "
45 | msgstr "Ben je tevreden met deze oplossing? [Y/n]"
46 |
47 | #: control.py:93 control.py:96
48 | msgid "n"
49 | msgstr "n"
50 |
51 | #: control.py:95
52 | msgid "And increase the grid size? [Y/n] "
53 | msgstr "Rasterafmetingen groter maken?[Y/n]"
54 |
55 | #: control.py:98 gui.py:78
56 | msgid "Across/Down"
57 | msgstr "Horizontaal/Verticaal"
58 |
59 | #: control.py:99
60 | msgid ""
61 | "The following files have been saved to your current working directory:\n"
62 | msgstr "Deze bestanden werden opgeslagen in je huidige werkmap:\n"
63 |
64 | #: control.py:105
65 | msgid "Crossword generator."
66 | msgstr "Kruiswoordraadsel generator."
67 |
68 | #: control.py:106
69 | msgid "Name of word list file."
70 | msgstr "Naam van het woordenlijstbestand."
71 |
72 | #: control.py:107
73 | msgid "Save files as A4 pdf (p), letter size pdf (l), png (n) and/or svg (s)."
74 | msgstr ""
75 | "Bestand opslaan als A4 pdf (p), letter us pdf (l), png (n) en/of svg (s)."
76 |
77 | #: control.py:108
78 | msgid "Automated (non-interactive) option."
79 | msgstr "Automatische (niet-interactieve) optie. "
80 |
81 | #: control.py:109
82 | msgid "Create anagrams for the clues"
83 | msgstr "Aanmaken van anagrammen voor de oplossingen. "
84 |
85 | #: control.py:110
86 | msgid "Number of words to be used."
87 | msgstr "Aantal te gebruiken woorden."
88 |
89 | #: control.py:111
90 | msgid "Name of crossword."
91 | msgstr "Naam van het kruiswoordraadsel."
92 |
93 | #: gui.py:104
94 | msgid "_Word list"
95 | msgstr "_Woordenlijst"
96 |
97 | #: gui.py:105
98 | msgid "_New word list"
99 | msgstr "_Nieuwe woordenlijst"
100 |
101 | #: gui.py:106
102 | msgid "Create a new word list or go back to the already open word list"
103 | msgstr "Maak nieuwe woordenlijst aan of terug naar openstaande woordenlijst"
104 |
105 | #: gui.py:107
106 | msgid "_Open word list"
107 | msgstr "_Open woordenlijst"
108 |
109 | #: gui.py:107
110 | msgid "Open a word list"
111 | msgstr "Open een nieuwe woordenlijst"
112 |
113 | #: gui.py:108
114 | msgid "_Sort word list"
115 | msgstr "_Sorteer woordenlijst"
116 |
117 | #: gui.py:109
118 | msgid "Sort the word list and remove words with non-alphabetic characters"
119 | msgstr ""
120 | "Sorteer de woordenlijst en verwijder woorden met niet-alfabetische "
121 | "karakters. "
122 |
123 | #: gui.py:110
124 | msgid "Quit"
125 | msgstr "Afsluiten"
126 |
127 | #: gui.py:111
128 | msgid "_Crossword"
129 | msgstr "_Kruiswoordraadsel"
130 |
131 | #: gui.py:112
132 | msgid "_Calculate crossword"
133 | msgstr "_Bereken kruiswoordraadsel"
134 |
135 | #: gui.py:113
136 | msgid "Calculate the crossword"
137 | msgstr "Bereken kruiswoordraadsel"
138 |
139 | #: gui.py:114
140 | msgid "_Recalculate"
141 | msgstr "_Herbereken"
142 |
143 | #: gui.py:115
144 | msgid "Increase the grid size and recalculate the crossword"
145 | msgstr "Vergroot de rastergrootte en herbereken het kruiswoordraadsel"
146 |
147 | #: gui.py:116
148 | msgid "_Save"
149 | msgstr "_Opslaan"
150 |
151 | #: gui.py:116
152 | msgid "Save crossword"
153 | msgstr "Sla kruiswoordraadsel op"
154 |
155 | #: gui.py:117 gui.py:118
156 | msgid "_Help"
157 | msgstr "_Help"
158 |
159 | #: gui.py:118
160 | msgid "Open the help page"
161 | msgstr "Open de helppagina"
162 |
163 | #: gui.py:119
164 | msgid "_About"
165 | msgstr "_Over"
166 |
167 | #: gui.py:119
168 | msgid "About"
169 | msgstr "Over..."
170 |
171 | #: gui.py:123
172 | msgid "Anagram clues"
173 | msgstr "Anagram sleutels"
174 |
175 | #: gui.py:124
176 | msgid "Choose the grid size"
177 | msgstr "Kies de rastergrootte"
178 |
179 | #: gui.py:173
180 | msgid "Save the crossword as"
181 | msgstr "Sla kruiswoordraadsel op als"
182 |
183 | #: gui.py:176
184 | msgid "A4 pdf"
185 | msgstr "A4 pdf"
186 |
187 | #: gui.py:180
188 | msgid "letter pdf"
189 | msgstr "Letter (us) pdf"
190 |
191 | #: gui.py:194
192 | msgid "Name of crossword"
193 | msgstr "Naam kruiswoordraadsel"
194 |
195 | #: gui.py:196
196 | msgid "Choose the name of your crossword"
197 | msgstr "Kies de naam van het kruiswoordraadsel"
198 |
199 | #: gui.py:201
200 | msgid "Number of words"
201 | msgstr "Aantal woorden"
202 |
203 | #: gui.py:208
204 | msgid "Choose the number of words you want to use"
205 | msgstr "Kies het aantal woorden die je wenst te gebruiken"
206 |
207 | #: gui.py:211
208 | msgid "Grid size"
209 | msgstr "Rastergrootte"
210 |
211 | #: gui.py:217
212 | msgid ""
213 | "Choose the crossword grid size\n"
214 | "Go to the Crossword menu to enable this option"
215 | msgstr ""
216 | "Kies de rastergrootte \n"
217 | "Ga naar het kruiswoordraadselmenu om deze optie te activeren. "
218 |
219 | #: gui.py:251
220 | msgid "Please choose a file"
221 | msgstr "Selecteer bestand"
222 |
223 | #: gui.py:321
224 | msgid "Please choose a folder"
225 | msgstr "Selecteer een map"
226 |
227 | #: gui.py:336
228 | msgid "Your crossword files have been saved in "
229 | msgstr "De kruiswoordraadselbestanden zijn opgeslagen in"
230 |
231 | #: gui.py:340
232 | msgid ""
233 | "Please fill in the name of the crossword and the format you want it saved in "
234 | "(A4 size pdf, letter size pdf, png or svg).\n"
235 | "Then click on the Save button again."
236 | msgstr ""
237 | "Vul de naam van het kruiswoordraadsel in en het bestandstype om in op te "
238 | "slaan (A4 pdf, letter (us) pdf, png of svg). \n"
239 | "Klik opnieuw op de opslaan-knop."
240 |
241 | #: gui.py:367
242 | msgid "A crossword generator"
243 | msgstr "Een kruiswoordraadsel generator"
244 |
--------------------------------------------------------------------------------
/po/ca.po:
--------------------------------------------------------------------------------
1 | # SOME DESCRIPTIVE TITLE translation for genxword.
2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3 | # This file is distributed under the same license as the genxword package.
4 | # Miguel Anxo Bouzada , 2013.
5 | msgid ""
6 | msgstr ""
7 | "Project-Id-Version: genxword\n"
8 | "Report-Msgid-Bugs-To: \n"
9 | "POT-Creation-Date: 2013-12-29 10:38+0700\n"
10 | "PO-Revision-Date: 2014-05-27 17:57+0700\n"
11 | "Last-Translator: Miguel Anxo Bouzada \n"
12 | "Language-Team: Galician \n"
13 | "Language: ca\n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18 | "X-Generator: Poedit 1.5.4\n"
19 |
20 | #: control.py:30
21 | msgid ""
22 | "The word list file contains the words and clues, or just words, that you "
23 | "want in your crossword. \n"
24 | "For further information on how to format the word list file and about the "
25 | "other options, please consult the man page.\n"
26 | msgstr ""
27 | "L'arxiu conté les definicions, per els seus encreuats. \n"
28 | "Per a més informació sobre com formatar l'arxiu i sobre altres opcions, si "
29 | "us plau, consulti el manual.\n"
30 |
31 | #: control.py:68
32 | msgid "Enter grid size ("
33 | msgstr "Introdueix la mida de la quadrícula ("
34 |
35 | #: control.py:68
36 | msgid " is the default): "
37 | msgstr " és el predeterminat): "
38 |
39 | #: control.py:83
40 | msgid "Calculating your crossword..."
41 | msgstr "Calculant els seus encreuats..."
42 |
43 | #: control.py:92
44 | msgid "Are you happy with this solution? [Y/n] "
45 | msgstr "T'agrada aquesta solució? [S/n] "
46 |
47 | #: control.py:93 control.py:96
48 | msgid "n"
49 | msgstr "n"
50 |
51 | #: control.py:95
52 | msgid "And increase the grid size? [Y/n] "
53 | msgstr "I augmentar la mida de la quadrícula? [S/n] "
54 |
55 | #: control.py:98 gui.py:78
56 | msgid "Across/Down"
57 | msgstr "Horitzontal/Vertical"
58 |
59 | #: control.py:99
60 | msgid ""
61 | "The following files have been saved to your current working directory:\n"
62 | msgstr ""
63 | "Els següents arxius s'han guardat en el seu directori de treball actual:\n"
64 |
65 | #: control.py:105
66 | msgid "Crossword generator."
67 | msgstr "Generador de encreuats."
68 |
69 | #: control.py:106
70 | msgid "Name of word list file."
71 | msgstr "Nom de l'arxiu amb la lista de paraules."
72 |
73 | #: control.py:107
74 | msgid "Save files as A4 pdf (p), letter size pdf (l), png (n) and/or svg (s)."
75 | msgstr "Guardar els arxius com pdf en mida A4 (p), carta, png (n) i/o svg (s)."
76 |
77 | #: control.py:108
78 | msgid "Automated (non-interactive) option."
79 | msgstr "Opció automàtica (no interactiva)."
80 |
81 | #: control.py:109
82 | msgid "Create anagrams for the clues"
83 | msgstr "Crear anagrames per a les definicions"
84 |
85 | #: control.py:110
86 | msgid "Number of words to be used."
87 | msgstr "Nombre de paraules a utilitzar."
88 |
89 | #: control.py:111
90 | msgid "Name of crossword."
91 | msgstr "Nom dels encreuats."
92 |
93 | #: gui.py:104
94 | msgid "_Word list"
95 | msgstr "_Llista de paraules"
96 |
97 | #: gui.py:105
98 | msgid "_New word list"
99 | msgstr "_Nova llista"
100 |
101 | #: gui.py:106
102 | msgid "Create a new word list or go back to the already open word list"
103 | msgstr "Crea una nova llista de paraules o torna a la llista ja creada"
104 |
105 | #: gui.py:107
106 | msgid "_Open word list"
107 | msgstr "_Crear llista de paraules"
108 |
109 | #: gui.py:107
110 | msgid "Open a word list"
111 | msgstr "Crear una llista de paraules"
112 |
113 | #: gui.py:108
114 | msgid "_Sort word list"
115 | msgstr "_Ordenar una llista"
116 |
117 | #: gui.py:109
118 | msgid "Sort the word list and remove words with non-alphabetic characters"
119 | msgstr ""
120 | "Ordenar la llista de paraules i treure paraules amb caràcters no alfabètics"
121 |
122 | #: gui.py:110
123 | msgid "Quit"
124 | msgstr "Sortir"
125 |
126 | #: gui.py:111
127 | msgid "_Crossword"
128 | msgstr "_Encreuats"
129 |
130 | #: gui.py:112
131 | msgid "_Calculate crossword"
132 | msgstr "_Calcular encreuats"
133 |
134 | #: gui.py:113
135 | msgid "Calculate the crossword"
136 | msgstr "Calcula els encreuats"
137 |
138 | #: gui.py:114
139 | msgid "_Recalculate"
140 | msgstr "_Recalcular"
141 |
142 | #: gui.py:115
143 | msgid "Increase the grid size and recalculate the crossword"
144 | msgstr "Incrementar la mida de la quadrícula i recalcular els encreuats"
145 |
146 | #: gui.py:116
147 | msgid "_Save"
148 | msgstr "_Guardar"
149 |
150 | #: gui.py:116
151 | msgid "Save crossword"
152 | msgstr "Guardar els encreuats"
153 |
154 | #: gui.py:117 gui.py:118
155 | msgid "_Help"
156 | msgstr "_Ajuda"
157 |
158 | #: gui.py:118
159 | msgid "Open the help page"
160 | msgstr "Obrir la pàgina d'ajuda"
161 |
162 | #: gui.py:119
163 | msgid "_About"
164 | msgstr "_Sobre"
165 |
166 | #: gui.py:119
167 | msgid "About"
168 | msgstr "Sobre"
169 |
170 | #: gui.py:123
171 | msgid "Anagram clues"
172 | msgstr "Definicions d'anagrames"
173 |
174 | #: gui.py:124
175 | msgid "Choose the grid size"
176 | msgstr "Escollir la mida de la quadrícula"
177 |
178 | #: gui.py:173
179 | msgid "Save the crossword as"
180 | msgstr "Guardar els encreuats com"
181 |
182 | #: gui.py:176
183 | msgid "A4 pdf"
184 | msgstr "A4 pdf"
185 |
186 | #: gui.py:180
187 | msgid "letter pdf"
188 | msgstr "carta pdf"
189 |
190 | #: gui.py:194
191 | msgid "Name of crossword"
192 | msgstr "Nom dels encreuats"
193 |
194 | #: gui.py:196
195 | msgid "Choose the name of your crossword"
196 | msgstr "Escull el nom dels seus encreuats"
197 |
198 | #: gui.py:201
199 | msgid "Number of words"
200 | msgstr "Nombre de paraules"
201 |
202 | #: gui.py:208
203 | msgid "Choose the number of words you want to use"
204 | msgstr "Escull el nombre de paraules"
205 |
206 | #: gui.py:211
207 | msgid "Grid size"
208 | msgstr "Mida de la quadrícula"
209 |
210 | #: gui.py:217
211 | msgid ""
212 | "Choose the crossword grid size\n"
213 | "Go to the Crossword menu to enable this option"
214 | msgstr ""
215 | "Escull la mida de la quadrícula dels encreuats\n"
216 | "Anar al menú «Encreuats» per permetre aquesta opció"
217 |
218 | #: gui.py:251
219 | msgid "Please choose a file"
220 | msgstr "Escull un arxiu"
221 |
222 | #: gui.py:321
223 | msgid "Please choose a folder"
224 | msgstr "Escull una carpeta"
225 |
226 | #: gui.py:336
227 | msgid "Your crossword files have been saved in "
228 | msgstr "Els arxius dels teus encreuats s'han guardat a "
229 |
230 | #: gui.py:340
231 | msgid ""
232 | "Please fill in the name of the crossword and the format you want it saved in "
233 | "(A4 size pdf, letter size pdf, png or svg).\n"
234 | "Then click on the Save button again."
235 | msgstr ""
236 | "Si us plau, escull un nom i un format de sortida (pdf mida A4 o carta, png o "
237 | "svg) pels teus encreuats.\n"
238 | "Després torna a clicar guardar."
239 |
240 | #: gui.py:367
241 | msgid "A crossword generator"
242 | msgstr "Un generador de mots encreuats"
243 |
244 | #~ msgid "En Across/Down"
245 | #~ msgstr "Ca Horitzontal/Vertical"
246 |
247 | #~ msgid "Choose the output language"
248 | #~ msgstr "Escull l'idioma"
249 |
--------------------------------------------------------------------------------
/po/gl.po:
--------------------------------------------------------------------------------
1 | # SOME DESCRIPTIVE TITLE translation for genxword.
2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3 | # This file is distributed under the same license as the genxword package.
4 | # Miguel Anxo Bouzada , 2013.
5 | msgid ""
6 | msgstr ""
7 | "Project-Id-Version: genxword\n"
8 | "Report-Msgid-Bugs-To: \n"
9 | "POT-Creation-Date: 2013-12-29 10:38+0700\n"
10 | "PO-Revision-Date: 2014-01-01 12:28+0700\n"
11 | "Last-Translator: Miguel Anxo Bouzada \n"
12 | "Language-Team: Galician \n"
13 | "Language: gl\n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18 | "X-Generator: Poedit 1.5.4\n"
19 |
20 | #: control.py:30
21 | msgid ""
22 | "The word list file contains the words and clues, or just words, that you "
23 | "want in your crossword. \n"
24 | "For further information on how to format the word list file and about the "
25 | "other options, please consult the man page.\n"
26 | msgstr ""
27 | "A lista de palabras conten as palabras e as definicións, ou só as palabras, "
28 | "que queira no seu encrucillado. \n"
29 | "Para obter máis información de como formatar o ficheiro de listas de "
30 | "palabras e sobre outras opcións, consulte o manual.\n"
31 |
32 | #: control.py:68
33 | msgid "Enter grid size ("
34 | msgstr "Escriba o tamaño da gradicela ("
35 |
36 | #: control.py:68
37 | msgid " is the default): "
38 | msgstr " é o predeterminado): "
39 |
40 | #: control.py:83
41 | msgid "Calculating your crossword..."
42 | msgstr "Calculando o seu encrucillado..."
43 |
44 | #: control.py:92
45 | msgid "Are you happy with this solution? [Y/n] "
46 | msgstr "Gústache esta solución? [S/n] "
47 |
48 | #: control.py:93 control.py:96
49 | msgid "n"
50 | msgstr "n"
51 |
52 | #: control.py:95
53 | msgid "And increase the grid size? [Y/n] "
54 | msgstr "E aumentar o tamaño da gradicela? [S,n] "
55 |
56 | #: control.py:98 gui.py:78
57 | msgid "Across/Down"
58 | msgstr "Horizontal/Vertical"
59 |
60 | #: control.py:99
61 | msgid ""
62 | "The following files have been saved to your current working directory:\n"
63 | msgstr ""
64 | "Os seguintes ficheiro foron gardados no seu directorio de traballo actual:\n"
65 |
66 | #: control.py:105
67 | msgid "Crossword generator."
68 | msgstr "Xerador de encrucillados."
69 |
70 | #: control.py:106
71 | msgid "Name of word list file."
72 | msgstr "Nome do ficheiro da lista de palabras."
73 |
74 | #: control.py:107
75 | msgid "Save files as A4 pdf (p), letter size pdf (l), png (n) and/or svg (s)."
76 | msgstr ""
77 | "Gardar os ficheiros como pdf en A4 (p), pdf en tamaño carta (l), png (n) e/"
78 | "ou svg (s)."
79 |
80 | #: control.py:108
81 | msgid "Automated (non-interactive) option."
82 | msgstr "Opción automática (non interactiva)."
83 |
84 | #: control.py:109
85 | msgid "Create anagrams for the clues"
86 | msgstr "Crear anagramas para as definicións"
87 |
88 | #: control.py:110
89 | msgid "Number of words to be used."
90 | msgstr "Número de palabras a usar."
91 |
92 | #: control.py:111
93 | msgid "Name of crossword."
94 | msgstr "Nome do encrucillado."
95 |
96 | #: gui.py:104
97 | msgid "_Word list"
98 | msgstr "_Lista de palabras"
99 |
100 | #: gui.py:105
101 | msgid "_New word list"
102 | msgstr "_Nova lista"
103 |
104 | #: gui.py:106
105 | msgid "Create a new word list or go back to the already open word list"
106 | msgstr "Cree unha nova lista de palabras ou volva á lista xa aberta"
107 |
108 | #: gui.py:107
109 | msgid "_Open word list"
110 | msgstr "_Abrir lista"
111 |
112 | #: gui.py:107
113 | msgid "Open a word list"
114 | msgstr "Abrir unha lista de palabras"
115 |
116 | #: gui.py:108
117 | msgid "_Sort word list"
118 | msgstr "_Ordenar unha lista"
119 |
120 | #: gui.py:109
121 | msgid "Sort the word list and remove words with non-alphabetic characters"
122 | msgstr ""
123 | "Ordenar a lista de palabras e retirar as palabras con caracteres non "
124 | "alfanuméricos"
125 |
126 | #: gui.py:110
127 | msgid "Quit"
128 | msgstr "Saír"
129 |
130 | #: gui.py:111
131 | msgid "_Crossword"
132 | msgstr "_Encrucillado"
133 |
134 | #: gui.py:112
135 | msgid "_Calculate crossword"
136 | msgstr "_Calcular o encrucillado"
137 |
138 | #: gui.py:113
139 | msgid "Calculate the crossword"
140 | msgstr "Calcula o encrucillado"
141 |
142 | #: gui.py:114
143 | msgid "_Recalculate"
144 | msgstr "_Volver calcular"
145 |
146 | #: gui.py:115
147 | msgid "Increase the grid size and recalculate the crossword"
148 | msgstr "Incrementar o tamaño da gradicela e volver calcular o encrucillado"
149 |
150 | #: gui.py:116
151 | msgid "_Save"
152 | msgstr "_Gardar"
153 |
154 | #: gui.py:116
155 | msgid "Save crossword"
156 | msgstr "Gardar o encrucillado"
157 |
158 | #: gui.py:117 gui.py:118
159 | msgid "_Help"
160 | msgstr "_Axuda"
161 |
162 | #: gui.py:118
163 | msgid "Open the help page"
164 | msgstr "Abrir a páxina de axuda"
165 |
166 | #: gui.py:119
167 | msgid "_About"
168 | msgstr "_Sobre"
169 |
170 | #: gui.py:119
171 | msgid "About"
172 | msgstr "Sobre"
173 |
174 | #: gui.py:123
175 | msgid "Anagram clues"
176 | msgstr "Definicións do anagrama"
177 |
178 | #: gui.py:124
179 | msgid "Choose the grid size"
180 | msgstr "Escolla o tamaño da gradicela"
181 |
182 | #: gui.py:173
183 | msgid "Save the crossword as"
184 | msgstr "Gardar o encrucillado como"
185 |
186 | #: gui.py:176
187 | msgid "A4 pdf"
188 | msgstr "A4 pdf"
189 |
190 | #: gui.py:180
191 | msgid "letter pdf"
192 | msgstr "carta pdf"
193 |
194 | #: gui.py:194
195 | msgid "Name of crossword"
196 | msgstr "Nome do encrucillado"
197 |
198 | #: gui.py:196
199 | msgid "Choose the name of your crossword"
200 | msgstr "Escolla o nome do seu encrucillado"
201 |
202 | #: gui.py:201
203 | msgid "Number of words"
204 | msgstr "Número de palabras"
205 |
206 | #: gui.py:208
207 | msgid "Choose the number of words you want to use"
208 | msgstr "Escolla o número de palabras que quere usar"
209 |
210 | #: gui.py:211
211 | msgid "Grid size"
212 | msgstr "Tamaño da gradicela"
213 |
214 | #: gui.py:217
215 | msgid ""
216 | "Choose the crossword grid size\n"
217 | "Go to the Crossword menu to enable this option"
218 | msgstr ""
219 | "Escolla o tamaño de gradicela do encrucillado\n"
220 | "Vaia ao menú «Encrucillado» para activar esta opción"
221 |
222 | #: gui.py:251
223 | msgid "Please choose a file"
224 | msgstr "Escolla un ficheiro"
225 |
226 | #: gui.py:321
227 | msgid "Please choose a folder"
228 | msgstr "Escolla un cartafol"
229 |
230 | #: gui.py:336
231 | msgid "Your crossword files have been saved in "
232 | msgstr "Os ficheiros do seu encrucillado foron gardados en "
233 |
234 | #: gui.py:340
235 | msgid ""
236 | "Please fill in the name of the crossword and the format you want it saved in "
237 | "(A4 size pdf, letter size pdf, png or svg).\n"
238 | "Then click on the Save button again."
239 | msgstr ""
240 | "Encha o nome do encrucillado e o formato no que quere gardalo (pdf tamaño "
241 | "A4, pdf tamaño carta, png ou svg).\n"
242 | "A seguir prema no botón Gardar de novo."
243 |
244 | #: gui.py:367
245 | msgid "A crossword generator"
246 | msgstr "Un xerador de encrucillados"
247 |
248 | #~ msgid "En Across/Down"
249 | #~ msgstr "Gl Horizontal/Vertical"
250 |
251 | #~ msgid "Choose the output language"
252 | #~ msgstr "Escolla o idioma"
253 |
--------------------------------------------------------------------------------
/po/es.po:
--------------------------------------------------------------------------------
1 | # SOME DESCRIPTIVE TITLE translation for genxword.
2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3 | # This file is distributed under the same license as the genxword package.
4 | # Miguel Anxo Bouzada , 2013.
5 | msgid ""
6 | msgstr ""
7 | "Project-Id-Version: genxword\n"
8 | "Report-Msgid-Bugs-To: \n"
9 | "POT-Creation-Date: 2013-12-29 10:38+0700\n"
10 | "PO-Revision-Date: 2014-01-01 12:28+0700\n"
11 | "Last-Translator: Miguel Anxo Bouzada \n"
12 | "Language-Team: Galician \n"
13 | "Language: es\n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18 | "X-Generator: Poedit 1.5.4\n"
19 |
20 | #: control.py:30
21 | msgid ""
22 | "The word list file contains the words and clues, or just words, that you "
23 | "want in your crossword. \n"
24 | "For further information on how to format the word list file and about the "
25 | "other options, please consult the man page.\n"
26 | msgstr ""
27 | "La lista de palabras contiene las palabras y las definiciones, o sólo las "
28 | "palabras, que quiera en su crucigrama. \n"
29 | "Para obtener más información de cómo formatear el archivo de listas de "
30 | "palabras y sobre otras opciones, consulte el manual.\n"
31 |
32 | #: control.py:68
33 | msgid "Enter grid size ("
34 | msgstr "Escriba el tamaño de la cuadrícula ("
35 |
36 | #: control.py:68
37 | msgid " is the default): "
38 | msgstr " es el predeterminado): "
39 |
40 | #: control.py:83
41 | msgid "Calculating your crossword..."
42 | msgstr "Calculando su crucigrama..."
43 |
44 | #: control.py:92
45 | msgid "Are you happy with this solution? [Y/n] "
46 | msgstr "¿Te gusta esta solución? [S/n] "
47 |
48 | #: control.py:93 control.py:96
49 | msgid "n"
50 | msgstr "n"
51 |
52 | #: control.py:95
53 | msgid "And increase the grid size? [Y/n] "
54 | msgstr "¿Y aumentar el tamaño de la cuadrícula? [S,n] "
55 |
56 | #: control.py:98 gui.py:78
57 | msgid "Across/Down"
58 | msgstr "Horizontal/Vertical"
59 |
60 | #: control.py:99
61 | msgid ""
62 | "The following files have been saved to your current working directory:\n"
63 | msgstr ""
64 | "Los siguientes archivos se han guardado en su directorio de trabajo actual:\n"
65 |
66 | #: control.py:105
67 | msgid "Crossword generator."
68 | msgstr "Generador de crucigramas."
69 |
70 | #: control.py:106
71 | msgid "Name of word list file."
72 | msgstr "Nombre del archivo de la lista de palabras."
73 |
74 | #: control.py:107
75 | msgid "Save files as A4 pdf (p), letter size pdf (l), png (n) and/or svg (s)."
76 | msgstr ""
77 | "Guardar archivos como pdf en A4 (p), pdf en tamaño carta (l), png (n) y/o "
78 | "svg (s)."
79 |
80 | #: control.py:108
81 | msgid "Automated (non-interactive) option."
82 | msgstr "Opción automática (no interactiva)."
83 |
84 | #: control.py:109
85 | msgid "Create anagrams for the clues"
86 | msgstr "Crear anagramas para las definiciones"
87 |
88 | #: control.py:110
89 | msgid "Number of words to be used."
90 | msgstr "Número de palabras a usar."
91 |
92 | #: control.py:111
93 | msgid "Name of crossword."
94 | msgstr "Nombre del crucigrama."
95 |
96 | #: gui.py:104
97 | msgid "_Word list"
98 | msgstr "_Lista de palabras"
99 |
100 | #: gui.py:105
101 | msgid "_New word list"
102 | msgstr "_Nueva lista"
103 |
104 | #: gui.py:106
105 | msgid "Create a new word list or go back to the already open word list"
106 | msgstr "Cree una nueva lista de palabras o vuelva a la lista ya abierta"
107 |
108 | #: gui.py:107
109 | msgid "_Open word list"
110 | msgstr "_Abrir lista"
111 |
112 | #: gui.py:107
113 | msgid "Open a word list"
114 | msgstr "Abrir una lista de palabras"
115 |
116 | #: gui.py:108
117 | msgid "_Sort word list"
118 | msgstr "_Ordenar una lista"
119 |
120 | #: gui.py:109
121 | msgid "Sort the word list and remove words with non-alphabetic characters"
122 | msgstr ""
123 | "Ordenar la lista de palabras y borrar palabras con caracteres no "
124 | "alfanuméricos"
125 |
126 | #: gui.py:110
127 | msgid "Quit"
128 | msgstr "Salir"
129 |
130 | #: gui.py:111
131 | msgid "_Crossword"
132 | msgstr "_Crucigrama"
133 |
134 | #: gui.py:112
135 | msgid "_Calculate crossword"
136 | msgstr "_Calcular crucigrama"
137 |
138 | #: gui.py:113
139 | msgid "Calculate the crossword"
140 | msgstr "Calcula crucigrama"
141 |
142 | #: gui.py:114
143 | msgid "_Recalculate"
144 | msgstr "_Recalcular"
145 |
146 | #: gui.py:115
147 | msgid "Increase the grid size and recalculate the crossword"
148 | msgstr "Incrementar el tamaño de la cuadrícula y recalcular el crucigrama"
149 |
150 | #: gui.py:116
151 | msgid "_Save"
152 | msgstr "_Guardar"
153 |
154 | #: gui.py:116
155 | msgid "Save crossword"
156 | msgstr "Guardar el crucigrama"
157 |
158 | #: gui.py:117 gui.py:118
159 | msgid "_Help"
160 | msgstr "_Ayuda"
161 |
162 | #: gui.py:118
163 | msgid "Open the help page"
164 | msgstr "Abrir la página de ayuda"
165 |
166 | #: gui.py:119
167 | msgid "_About"
168 | msgstr "_Sobre"
169 |
170 | #: gui.py:119
171 | msgid "About"
172 | msgstr "Sobre"
173 |
174 | #: gui.py:123
175 | msgid "Anagram clues"
176 | msgstr "Definiciones del anagrama"
177 |
178 | #: gui.py:124
179 | msgid "Choose the grid size"
180 | msgstr "Elija el tamaño de la cuadrícula"
181 |
182 | #: gui.py:173
183 | msgid "Save the crossword as"
184 | msgstr "Guardar el crucigrama como"
185 |
186 | #: gui.py:176
187 | msgid "A4 pdf"
188 | msgstr "A4 pdf"
189 |
190 | #: gui.py:180
191 | msgid "letter pdf"
192 | msgstr "carta pdf"
193 |
194 | #: gui.py:194
195 | msgid "Name of crossword"
196 | msgstr "Nombre del crucigrama"
197 |
198 | #: gui.py:196
199 | msgid "Choose the name of your crossword"
200 | msgstr "Elija el nombre de su crucigrama"
201 |
202 | #: gui.py:201
203 | msgid "Number of words"
204 | msgstr "Número de palabras"
205 |
206 | #: gui.py:208
207 | msgid "Choose the number of words you want to use"
208 | msgstr "Elija el número de palabras que quiere usar"
209 |
210 | #: gui.py:211
211 | msgid "Grid size"
212 | msgstr "Tamaño de la cuadrícula"
213 |
214 | #: gui.py:217
215 | msgid ""
216 | "Choose the crossword grid size\n"
217 | "Go to the Crossword menu to enable this option"
218 | msgstr ""
219 | "Elija el tamaño de la cuadrícula del crucigrama\n"
220 | "Vaya al menú «Crucigrama» para permitir esta opción"
221 |
222 | #: gui.py:251
223 | msgid "Please choose a file"
224 | msgstr "Elija un archivo"
225 |
226 | #: gui.py:321
227 | msgid "Please choose a folder"
228 | msgstr "Elija una carpeta"
229 |
230 | #: gui.py:336
231 | msgid "Your crossword files have been saved in "
232 | msgstr "Los archivos de su crucigrama se han guardado en "
233 |
234 | #: gui.py:340
235 | msgid ""
236 | "Please fill in the name of the crossword and the format you want it saved in "
237 | "(A4 size pdf, letter size pdf, png or svg).\n"
238 | "Then click on the Save button again."
239 | msgstr ""
240 | "Rellene el nombre del crucigrama y el formato en que que desea guardarlo "
241 | "(pdf tamaño A4, pdf tamaño carta, png o svg).\n"
242 | "Luego pulse en el botón Guardar de nuevo."
243 |
244 | #: gui.py:367
245 | msgid "A crossword generator"
246 | msgstr "Un generador de crucigramas"
247 |
248 | #~ msgid "En Across/Down"
249 | #~ msgstr "Es Horizontal/Vertical"
250 |
251 | #~ msgid "Choose the output language"
252 | #~ msgstr "Elija el idioma"
253 |
--------------------------------------------------------------------------------
/po/fr.po:
--------------------------------------------------------------------------------
1 | # SOME DESCRIPTIVE TITLE translation for genxword.
2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3 | # This file is distributed under the same license as the genxword package.
4 | # David Whitlock , 2014.
5 | msgid ""
6 | msgstr ""
7 | "Project-Id-Version: genxword\n"
8 | "Report-Msgid-Bugs-To: \n"
9 | "POT-Creation-Date: 2013-12-29 10:37+0700\n"
10 | "PO-Revision-Date: 2014-01-07 18:52+0700\n"
11 | "Last-Translator: David Whitlock \n"
12 | "Language-Team: \n"
13 | "Language: fr\n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18 | "X-Generator: Poedit 1.5.4\n"
19 |
20 | #: control.py:30
21 | msgid ""
22 | "The word list file contains the words and clues, or just words, that you "
23 | "want in your crossword. \n"
24 | "For further information on how to format the word list file and about the "
25 | "other options, please consult the man page.\n"
26 | msgstr ""
27 | "Le fichier de la liste de mots contient les mots et les définitions, ou "
28 | "seulement les mots, que vous voulez dans le mots croisés. \n"
29 | "Pour plus d'informations sur comment formater le fichier de la liste de mots "
30 | "et sur les autres options, s'il vous plaît consulter le manuel.\n"
31 |
32 | #: control.py:68
33 | msgid "Enter grid size ("
34 | msgstr "Entrer la taille de grille ("
35 |
36 | #: control.py:68
37 | msgid " is the default): "
38 | msgstr " est la valeur par défaut): "
39 |
40 | #: control.py:83
41 | msgid "Calculating your crossword..."
42 | msgstr "Calculant le mots croisés..."
43 |
44 | #: control.py:92
45 | msgid "Are you happy with this solution? [Y/n] "
46 | msgstr "Êtes-vous satisfait de cette solution? [O/n]"
47 |
48 | #: control.py:93 control.py:96
49 | msgid "n"
50 | msgstr "n"
51 |
52 | #: control.py:95
53 | msgid "And increase the grid size? [Y/n] "
54 | msgstr "Et augmenter la taille de grille? [O/n] "
55 |
56 | #: control.py:98 gui.py:78
57 | msgid "Across/Down"
58 | msgstr "Horizontalement/Verticalement"
59 |
60 | #: control.py:99
61 | msgid ""
62 | "The following files have been saved to your current working directory:\n"
63 | msgstr ""
64 | "Les fichiers suivants ont été enregistrés dans le répertoire courant:\n"
65 |
66 | #: control.py:105
67 | msgid "Crossword generator."
68 | msgstr "Générateur de mots croisés."
69 |
70 | #: control.py:106
71 | msgid "Name of word list file."
72 | msgstr "Nom du fichier de la liste de mots."
73 |
74 | #: control.py:107
75 | msgid "Save files as A4 pdf (p), letter size pdf (l), png (n) and/or svg (s)."
76 | msgstr ""
77 | "Enregistrer les fichiers comme a4 pdf (p), lettre pdf (l), png (n) et/ou svg "
78 | "(s)."
79 |
80 | #: control.py:108
81 | msgid "Automated (non-interactive) option."
82 | msgstr "Option automatique (non interactive)."
83 |
84 | #: control.py:109
85 | msgid "Create anagrams for the clues"
86 | msgstr "Créer les anagrammes pour les définitions."
87 |
88 | #: control.py:110
89 | msgid "Number of words to be used."
90 | msgstr "Nombre des mots à utiliser."
91 |
92 | #: control.py:111
93 | msgid "Name of crossword."
94 | msgstr "Nom du mots croisés."
95 |
96 | #: gui.py:104
97 | msgid "_Word list"
98 | msgstr "_Liste de mots"
99 |
100 | #: gui.py:105
101 | msgid "_New word list"
102 | msgstr "_Nouvelle liste de mots"
103 |
104 | #: gui.py:106
105 | msgid "Create a new word list or go back to the already open word list"
106 | msgstr ""
107 | "Créer une nouvelle liste de mots ou retourner à la liste de mots déjà "
108 | "ouverte."
109 |
110 | #: gui.py:107
111 | msgid "_Open word list"
112 | msgstr "_Ouvrir une liste de mots"
113 |
114 | #: gui.py:107
115 | msgid "Open a word list"
116 | msgstr "Ouvrir une liste de mots"
117 |
118 | #: gui.py:108
119 | msgid "_Sort word list"
120 | msgstr "_Trier la liste de mots"
121 |
122 | #: gui.py:109
123 | msgid "Sort the word list and remove words with non-alphabetic characters"
124 | msgstr ""
125 | "Trier la liste de mots et supprimer les mots avec les caractères non "
126 | "alphabétiques"
127 |
128 | #: gui.py:110
129 | msgid "Quit"
130 | msgstr "Quitter"
131 |
132 | #: gui.py:111
133 | msgid "_Crossword"
134 | msgstr "_Mots croisés"
135 |
136 | #: gui.py:112
137 | msgid "_Calculate crossword"
138 | msgstr "_Calculer le mots croisés"
139 |
140 | #: gui.py:113
141 | msgid "Calculate the crossword"
142 | msgstr "_Calculer le mots croisés"
143 |
144 | #: gui.py:114
145 | msgid "_Recalculate"
146 | msgstr "_Recalculer"
147 |
148 | #: gui.py:115
149 | msgid "Increase the grid size and recalculate the crossword"
150 | msgstr "Augmenter la taille de grille et recalculer le mots croisés"
151 |
152 | #: gui.py:116
153 | msgid "_Save"
154 | msgstr "_Enregistrer"
155 |
156 | #: gui.py:116
157 | msgid "Save crossword"
158 | msgstr "Enregistrer le mots croisés"
159 |
160 | #: gui.py:117 gui.py:118
161 | msgid "_Help"
162 | msgstr "_Aide"
163 |
164 | #: gui.py:118
165 | msgid "Open the help page"
166 | msgstr "Ouvrir la page d'aide"
167 |
168 | #: gui.py:119
169 | msgid "_About"
170 | msgstr "_Sur"
171 |
172 | #: gui.py:119
173 | msgid "About"
174 | msgstr "Sur"
175 |
176 | #: gui.py:123
177 | msgid "Anagram clues"
178 | msgstr "Définitions d'anagrammes"
179 |
180 | #: gui.py:124
181 | msgid "Choose the grid size"
182 | msgstr "Choisir la taille de grille"
183 |
184 | #: gui.py:173
185 | msgid "Save the crossword as"
186 | msgstr "Enregistrer le mots croisés comme"
187 |
188 | #: gui.py:176
189 | msgid "A4 pdf"
190 | msgstr "a4 pdf"
191 |
192 | #: gui.py:180
193 | msgid "letter pdf"
194 | msgstr "lettre pdf"
195 |
196 | #: gui.py:194
197 | msgid "Name of crossword"
198 | msgstr "Nom du mots croisés"
199 |
200 | #: gui.py:196
201 | msgid "Choose the name of your crossword"
202 | msgstr "Choisir le nom du mots croisés"
203 |
204 | #: gui.py:201
205 | msgid "Number of words"
206 | msgstr "Nombre de mots"
207 |
208 | #: gui.py:208
209 | msgid "Choose the number of words you want to use"
210 | msgstr "Choisir le nombre de mots que vous voulez utiliser"
211 |
212 | #: gui.py:211
213 | msgid "Grid size"
214 | msgstr "Taille de grille"
215 |
216 | #: gui.py:217
217 | msgid ""
218 | "Choose the crossword grid size\n"
219 | "Go to the Crossword menu to enable this option"
220 | msgstr ""
221 | "Choisir la taille de grille de mots croisés\n"
222 | "Aller au menu «Mots croisés» pour permettre cette option"
223 |
224 | #: gui.py:251
225 | msgid "Please choose a file"
226 | msgstr "Choisir un fichier"
227 |
228 | #: gui.py:321
229 | msgid "Please choose a folder"
230 | msgstr "Choisir un dossier"
231 |
232 | #: gui.py:336
233 | msgid "Your crossword files have been saved in "
234 | msgstr "Les fichiers de mots croisés ont été enregistrés dans"
235 |
236 | #: gui.py:340
237 | msgid ""
238 | "Please fill in the name of the crossword and the format you want it saved in "
239 | "(A4 size pdf, letter size pdf, png or svg).\n"
240 | "Then click on the Save button again."
241 | msgstr ""
242 | "S'il vous plaît écrire un nom pour le mots croisés et choisir le format que "
243 | "vous voulez (a4 pdf, lettre pdf, png ou svg).\n"
244 | "Puis, cliquez sur le bouton Enregistrer encore une fois."
245 |
246 | #: gui.py:367
247 | msgid "A crossword generator"
248 | msgstr "Un générateur de mots croisés."
249 |
250 | #~ msgid "En Across/Down"
251 | #~ msgstr "Fr Horizontalement/Verticalement"
252 |
253 | #~ msgid "Choose the output language"
254 | #~ msgstr "Choisir la langue du mots croisés"
255 |
--------------------------------------------------------------------------------
/po/th.po:
--------------------------------------------------------------------------------
1 | # SOME DESCRIPTIVE TITLE translation for genxword.
2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3 | # This file is distributed under the same license as the genxword package.
4 | # David Whitlock , 2014.
5 | msgid ""
6 | msgstr ""
7 | "Project-Id-Version: genxword\n"
8 | "Report-Msgid-Bugs-To: \n"
9 | "POT-Creation-Date: 2013-12-29 10:38+0700\n"
10 | "PO-Revision-Date: 2014-01-21 14:40+0700\n"
11 | "Last-Translator: Pinkvana Thaworn \n"
12 | "Language-Team: \n"
13 | "Language: th\n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18 | "X-Generator: Poedit 1.5.4\n"
19 |
20 | #: control.py:30
21 | msgid ""
22 | "The word list file contains the words and clues, or just words, that you "
23 | "want in your crossword. \n"
24 | "For further information on how to format the word list file and about the "
25 | "other options, please consult the man page.\n"
26 | msgstr ""
27 | "เอกสารรายการคำศัพท์บรรจุคำศัพท์และคำใบ้หรือแค่คำศัพท์ที่คุณต้องการสำหรับปริศนาอักษรไขว้ของคุณ\n"
28 | " สำหรับข้อมูลที่นอกเหนือจากนี้เกี่ยวกับรูปแบบของเอกสารรายการคำศัพท์หรือเกี่ยวกับตัวเลือกอื่นๆ "
29 | "กรุณาปรึกษาผู้สร้างเพจ\n"
30 |
31 | #: control.py:68
32 | msgid "Enter grid size ("
33 | msgstr "ใส่ขนาดอนุกรมของจุดที่จะช่วยวางภาพหรือข้อความในตำแหน่งที่เป็นแนวเดียวกัน ("
34 |
35 | #: control.py:68
36 | msgid " is the default): "
37 | msgstr "คือค่าที่เลือกอัตโนมัติ):"
38 |
39 | #: control.py:83
40 | msgid "Calculating your crossword..."
41 | msgstr "กำลังคำนวณปริศนาอักษรไขว้ของคุณ..."
42 |
43 | #: control.py:92
44 | msgid "Are you happy with this solution? [Y/n] "
45 | msgstr "คุณพึงพอใจกับผลลัพธ์นี้หรือไม่? [ใช่/ไม่]"
46 |
47 | #: control.py:93 control.py:96
48 | msgid "n"
49 | msgstr "n"
50 |
51 | #: control.py:95
52 | msgid "And increase the grid size? [Y/n] "
53 | msgstr ""
54 | "และเพิ่มขนาดอนุกรมของจุดที่จะช่วยวางภาพหรือข้อความในตำแหน่งที่เป็นแนวเดียวกัน? [ใช่/ไม่]"
55 |
56 | #: control.py:98 gui.py:78
57 | msgid "Across/Down"
58 | msgstr "แนวขวาง/แนวลง"
59 |
60 | #: control.py:99
61 | msgid ""
62 | "The following files have been saved to your current working directory:\n"
63 | msgstr "เอกสารเหล่านี้ได้ถูกบันทึกไว้ที่สมุดรายชื่อการทำงานปัจจุบันของคุณแล้ว:\n"
64 |
65 | #: control.py:105
66 | msgid "Crossword generator."
67 | msgstr "การสร้างปริษนาอักษรไขว้"
68 |
69 | #: control.py:106
70 | msgid "Name of word list file."
71 | msgstr "ชื่อของรายการเอกสารคำศัพท์"
72 |
73 | #: control.py:107
74 | msgid "Save files as A4 pdf (p), letter size pdf (l), png (n) and/or svg (s)."
75 | msgstr ""
76 | "บันทึกเอกสารในรูปแบบของ เอสี่ พีดีเอฟ (p), ขนาดจดหมด พีดีเอฟ (l), พีเอ็นจี (n) และ/หรือ "
77 | "เอสวีจี (s)"
78 |
79 | #: control.py:108
80 | msgid "Automated (non-interactive) option."
81 | msgstr "ตัวเลือก ไม่เข้าสู่ระบบ แบบอัตโนมัติ"
82 |
83 | #: control.py:109
84 | msgid "Create anagrams for the clues"
85 | msgstr "การสร้างการสับเปลี่ยนพยัญชนะของคำหรือวลีเพื่อให้ได้คำหรือวลีใหม่สำหรับใช้ในการบอกใบ้"
86 |
87 | #: control.py:110
88 | msgid "Number of words to be used."
89 | msgstr "จำนวนของคำศัพท์ที่ถูกใช้"
90 |
91 | #: control.py:111
92 | msgid "Name of crossword."
93 | msgstr "ชื่อของปริศนาอักษรไขว้"
94 |
95 | #: gui.py:104
96 | msgid "_Word list"
97 | msgstr "_รายการคำศัพท์"
98 |
99 | #: gui.py:105
100 | msgid "_New word list"
101 | msgstr "_รายการคำศัพท์ใหม่"
102 |
103 | #: gui.py:106
104 | msgid "Create a new word list or go back to the already open word list"
105 | msgstr "สร้างรายการคำศัพท์ใหม่หรือกลับไปที่รายการคำศัพท์ที่ได้เปิดไว้อยู่แล้วก่อนหน้านี้"
106 |
107 | #: gui.py:107
108 | msgid "_Open word list"
109 | msgstr "_เปิดรายการคำศัพท์"
110 |
111 | #: gui.py:107
112 | msgid "Open a word list"
113 | msgstr "เปิดรายการคำศัพท์หนึ่งคำศัพท์"
114 |
115 | #: gui.py:108
116 | msgid "_Sort word list"
117 | msgstr "_ประเภทรายการคำศัพท์"
118 |
119 | #: gui.py:109
120 | msgid "Sort the word list and remove words with non-alphabetic characters"
121 | msgstr "ประเภทรายการคำศัพท์และย้ายคำศัพท์โดยการไม่ใช้สัญลักษณ์ตัวอักษร"
122 |
123 | #: gui.py:110
124 | msgid "Quit"
125 | msgstr "ล้มเลิก"
126 |
127 | #: gui.py:111
128 | msgid "_Crossword"
129 | msgstr "_ปริศนาอักษรไขว้"
130 |
131 | #: gui.py:112
132 | msgid "_Calculate crossword"
133 | msgstr "_คำนวณปริศนาอักษรไขว้"
134 |
135 | #: gui.py:113
136 | msgid "Calculate the crossword"
137 | msgstr "_คำนวณปริศนาอักษรไขว้นั้น"
138 |
139 | #: gui.py:114
140 | msgid "_Recalculate"
141 | msgstr "_คำนวนอีกครั้ง"
142 |
143 | #: gui.py:115
144 | msgid "Increase the grid size and recalculate the crossword"
145 | msgstr "เพิ่มขนาดอนุกรมของจุดที่จะช่วยวางภาพหรือข้อความในตำแหน่งที่เป็นแนวเดียวกันและคำนวณปริศนาอักษรไขว้นั้นอีกครั้ง"
146 |
147 | #: gui.py:116
148 | msgid "_Save"
149 | msgstr "_บันทึก"
150 |
151 | #: gui.py:116
152 | msgid "Save crossword"
153 | msgstr "บันทึกปริศนาอักษรไขว้"
154 |
155 | #: gui.py:117 gui.py:118
156 | msgid "_Help"
157 | msgstr "_ช่วยเหลือ"
158 |
159 | #: gui.py:118
160 | msgid "Open the help page"
161 | msgstr "เปิดหน้าช่วยเหลือ"
162 |
163 | #: gui.py:119
164 | msgid "_About"
165 | msgstr "_เกี่ยวกับ"
166 |
167 | #: gui.py:119
168 | msgid "About"
169 | msgstr "เกี่ยวกับ"
170 |
171 | #: gui.py:123
172 | msgid "Anagram clues"
173 | msgstr "การสับเปลี่ยนพยัญชนะของคำหรือวลีเพื่อให้ได้คำหรือวลีใหม่สำหรับใช้ในการบอกใบ้"
174 |
175 | #: gui.py:124
176 | msgid "Choose the grid size"
177 | msgstr "เลือกขนาดของการสับเปลี่ยนพยัญชนะของคำหรือวลีเพื่อให้ได้คำหรือวลีใหม่"
178 |
179 | #: gui.py:173
180 | msgid "Save the crossword as"
181 | msgstr "บันทึกปริศนาอักษรไขว้ในรูปแบบของ"
182 |
183 | #: gui.py:176
184 | msgid "A4 pdf"
185 | msgstr "a4 pdf"
186 |
187 | #: gui.py:180
188 | msgid "letter pdf"
189 | msgstr "letter pdf"
190 |
191 | #: gui.py:194
192 | msgid "Name of crossword"
193 | msgstr "ชื่อของปริศนาอักษรไขว้"
194 |
195 | #: gui.py:196
196 | msgid "Choose the name of your crossword"
197 | msgstr "เลือกชื่อสำหรับปริศนาอักษรไขว้ของคุณ"
198 |
199 | #: gui.py:201
200 | msgid "Number of words"
201 | msgstr "จำนวนของคำศัพท์"
202 |
203 | #: gui.py:208
204 | msgid "Choose the number of words you want to use"
205 | msgstr "เลือกจำนวนของคำที่คุณต้องการใช้"
206 |
207 | #: gui.py:211
208 | msgid "Grid size"
209 | msgstr "ขนาดอนุกรมของจุดที่จะช่วยวางภาพหรือข้อความในตำแหน่งที่เป็นแนวเดียวกัน"
210 |
211 | #: gui.py:217
212 | msgid ""
213 | "Choose the crossword grid size\n"
214 | "Go to the Crossword menu to enable this option"
215 | msgstr ""
216 | "เลือกขนาดอนุกรมของจุดที่จะช่วยวางภาพหรือข้อความในตำแหน่งที่เป็นแนวเดียวกันของปริศนาอักษรไขว้นั้น\n"
217 | "ไปที่รายการปริศนาอักษรไขว้เพื่อที่จะสามารถใช้ตัวเลือกนี้"
218 |
219 | #: gui.py:251
220 | msgid "Please choose a file"
221 | msgstr "กรุณาเลือกเอกสาร"
222 |
223 | #: gui.py:321
224 | msgid "Please choose a folder"
225 | msgstr "กรุณาเลือกแฟ้มเอกสาร"
226 |
227 | #: gui.py:336
228 | msgid "Your crossword files have been saved in "
229 | msgstr "เอกสารของปริศนาอักษรไขว้ของคุณได้ถูกบันทึกไว้ใน"
230 |
231 | #: gui.py:340
232 | msgid ""
233 | "Please fill in the name of the crossword and the format you want it saved in "
234 | "(A4 size pdf, letter size pdf, png or svg).\n"
235 | "Then click on the Save button again."
236 | msgstr ""
237 | "กรุณาใส่ชื่อของปริศนาอักษรไขว้และรูปแบบที่คุณต้องการที่จะบันทึกใน (ขนาดเอสี่ พีดีเอฟ, ขนาดจดหมาย "
238 | "พีดีเอฟ, พีเอ็นจี หรือ เอสวีจี)\n"
239 | "หลังจากนั้นให้กดที่ปุ่มบันทึกอีกครั้ง"
240 |
241 | #: gui.py:367
242 | msgid "A crossword generator"
243 | msgstr "การสร้างปริศนาอักษรไว้"
244 |
245 | #~ msgid "En Across/Down"
246 | #~ msgstr "Fr Horizontalement/Verticalement"
247 |
248 | #~ msgid "Choose the output language"
249 | #~ msgstr "Choisir la langue du mots croisés"
250 |
--------------------------------------------------------------------------------
/genxword/calculate.py:
--------------------------------------------------------------------------------
1 | """Calculate the crossword and export image and text files."""
2 |
3 | # Authors: David Whitlock , Bryan Helmig
4 | # Crossword generator that outputs the grid and clues as a pdf file and/or
5 | # the grid in png/svg format with a text file containing the words and clues.
6 | # Copyright (C) 2010-2011 Bryan Helmig
7 | # Copyright (C) 2011-2020 David Whitlock
8 | #
9 | # Genxword is free software: you can redistribute it and/or modify
10 | # it under the terms of the GNU General Public License as published by
11 | # the Free Software Foundation, either version 3 of the License, or
12 | # (at your option) any later version.
13 | #
14 | # Genxword is distributed in the hope that it will be useful,
15 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 | # GNU General Public License for more details.
18 | #
19 | # You should have received a copy of the GNU General Public License
20 | # along with genxword. If not, see .
21 |
22 | import gi
23 | gi.require_version('PangoCairo', '1.0')
24 | gi.require_version('Pango', '1.0')
25 |
26 | from gi.repository import Pango, PangoCairo
27 | import random, time, cairo, json
28 | from operator import itemgetter
29 | from collections import defaultdict
30 |
31 | class Crossword(object):
32 | def __init__(self, rows, cols, empty=' ', available_words=[]):
33 | self.rows = rows
34 | self.cols = cols
35 | self.empty = empty
36 | self.available_words = available_words
37 | self.let_coords = defaultdict(list)
38 |
39 | def prep_grid_words(self):
40 | self.current_wordlist = []
41 | self.let_coords.clear()
42 | self.grid = [[self.empty]*self.cols for i in range(self.rows)]
43 | self.available_words = [word[:2] for word in self.available_words]
44 | self.first_word(self.available_words[0])
45 |
46 | def compute_crossword(self, time_permitted=1.00):
47 | self.best_wordlist = []
48 | wordlist_length = len(self.available_words)
49 | time_permitted = float(time_permitted)
50 | start_full = float(time.time())
51 | while (float(time.time()) - start_full) < time_permitted:
52 | self.prep_grid_words()
53 | [self.add_words(word) for i in range(2) for word in self.available_words
54 | if word not in self.current_wordlist]
55 | if len(self.current_wordlist) > len(self.best_wordlist):
56 | self.best_wordlist = list(self.current_wordlist)
57 | self.best_grid = list(self.grid)
58 | if len(self.best_wordlist) == wordlist_length:
59 | break
60 | #answer = '\n'.join([''.join(['{} '.format(c) for c in self.best_grid[r]]) for r in range(self.rows)])
61 | answer = '\n'.join([''.join([u'{} '.format(c) for c in self.best_grid[r]])
62 | for r in range(self.rows)])
63 | return answer + '\n\n' + str(len(self.best_wordlist)) + ' out of ' + str(wordlist_length)
64 |
65 | def get_coords(self, word):
66 | """Return possible coordinates for each letter."""
67 | word_length = len(word[0])
68 | coordlist = []
69 | temp_list = [(l, v) for l, letter in enumerate(word[0])
70 | for k, v in self.let_coords.items() if k == letter]
71 | for coord in temp_list:
72 | letc = coord[0]
73 | for item in coord[1]:
74 | (rowc, colc, vertc) = item
75 | if vertc:
76 | if colc - letc >= 0 and (colc - letc) + word_length <= self.cols:
77 | row, col = (rowc, colc - letc)
78 | score = self.check_score_horiz(word, row, col, word_length)
79 | if score:
80 | coordlist.append([rowc, colc - letc, 0, score])
81 | else:
82 | if rowc - letc >= 0 and (rowc - letc) + word_length <= self.rows:
83 | row, col = (rowc - letc, colc)
84 | score = self.check_score_vert(word, row, col, word_length)
85 | if score:
86 | coordlist.append([rowc - letc, colc, 1, score])
87 | if coordlist:
88 | return max(coordlist, key=itemgetter(3))
89 | else:
90 | return
91 |
92 | def first_word(self, word):
93 | """Place the first word at a random position in the grid."""
94 | vertical = random.randrange(0, 2)
95 | if vertical:
96 | row = random.randrange(0, self.rows - len(word[0]))
97 | col = random.randrange(0, self.cols)
98 | else:
99 | row = random.randrange(0, self.rows)
100 | col = random.randrange(0, self.cols - len(word[0]))
101 | self.set_word(word, row, col, vertical)
102 |
103 | def add_words(self, word):
104 | """Add the rest of the words to the grid."""
105 | coordlist = self.get_coords(word)
106 | if not coordlist:
107 | return
108 | row, col, vertical = coordlist[0], coordlist[1], coordlist[2]
109 | self.set_word(word, row, col, vertical)
110 |
111 | def check_score_horiz(self, word, row, col, word_length, score=1):
112 | cell_occupied = self.cell_occupied
113 | if col and cell_occupied(row, col-1) or col + word_length != self.cols and cell_occupied(row, col + word_length):
114 | return 0
115 | for letter in word[0]:
116 | active_cell = self.grid[row][col]
117 | if active_cell == self.empty:
118 | if row + 1 != self.rows and cell_occupied(row+1, col) or row and cell_occupied(row-1, col):
119 | return 0
120 | elif active_cell == letter:
121 | score += 1
122 | else:
123 | return 0
124 | col += 1
125 | return score
126 |
127 | def check_score_vert(self, word, row, col, word_length, score=1):
128 | cell_occupied = self.cell_occupied
129 | if row and cell_occupied(row-1, col) or row + word_length != self.rows and cell_occupied(row + word_length, col):
130 | return 0
131 | for letter in word[0]:
132 | active_cell = self.grid[row][col]
133 | if active_cell == self.empty:
134 | if col + 1 != self.cols and cell_occupied(row, col+1) or col and cell_occupied(row, col-1):
135 | return 0
136 | elif active_cell == letter:
137 | score += 1
138 | else:
139 | return 0
140 | row += 1
141 | return score
142 |
143 | def set_word(self, word, row, col, vertical):
144 | """Put words on the grid and add them to the word list."""
145 | word.extend([row, col, vertical])
146 | self.current_wordlist.append(word)
147 |
148 | horizontal = not vertical
149 | for letter in word[0]:
150 | self.grid[row][col] = letter
151 | if (row, col, horizontal) not in self.let_coords[letter]:
152 | self.let_coords[letter].append((row, col, vertical))
153 | else:
154 | self.let_coords[letter].remove((row, col, horizontal))
155 | if vertical:
156 | row += 1
157 | else:
158 | col += 1
159 |
160 | def cell_occupied(self, row, col):
161 | cell = self.grid[row][col]
162 | if cell == self.empty:
163 | return False
164 | else:
165 | return True
166 |
167 | class Exportfiles(object):
168 | def __init__(self, rows, cols, grid, wordlist, empty=' '):
169 | self.rows = rows
170 | self.cols = cols
171 | self.grid = grid
172 | self.wordlist = wordlist
173 | self.empty = empty
174 |
175 | def order_number_words(self):
176 | self.wordlist.sort(key=itemgetter(2, 3))
177 | count, icount = 1, 1
178 | for word in self.wordlist:
179 | word.append(count)
180 | if icount < len(self.wordlist):
181 | if word[2] == self.wordlist[icount][2] and word[3] == self.wordlist[icount][3]:
182 | pass
183 | else:
184 | count += 1
185 | icount += 1
186 |
187 | def draw_img(self, name, context, px, xoffset, yoffset, RTL):
188 | for r in range(self.rows):
189 | for i, c in enumerate(self.grid[r]):
190 | if c != self.empty:
191 | context.set_line_width(1.0)
192 | context.set_source_rgb(0.5, 0.5, 0.5)
193 | context.rectangle(xoffset+(i*px), yoffset+(r*px), px, px)
194 | context.stroke()
195 | context.set_line_width(1.0)
196 | context.set_source_rgb(0, 0, 0)
197 | context.rectangle(xoffset+1+(i*px), yoffset+1+(r*px), px-2, px-2)
198 | context.stroke()
199 | if '_key.' in name:
200 | self.draw_letters(c, context, xoffset+(i*px)+10, yoffset+(r*px)+8, 'monospace 11')
201 |
202 | self.order_number_words()
203 | for word in self.wordlist:
204 | if RTL:
205 | x, y = ((self.cols-1)*px)+xoffset-(word[3]*px), yoffset+(word[2]*px)
206 | else:
207 | x, y = xoffset+(word[3]*px), yoffset+(word[2]*px)
208 | self.draw_letters(str(word[5]), context, x+3, y+2, 'monospace 6')
209 |
210 | def draw_letters(self, text, context, xval, yval, fontdesc):
211 | context.move_to(xval, yval)
212 | layout = PangoCairo.create_layout(context)
213 | font = Pango.FontDescription(fontdesc)
214 | layout.set_font_description(font)
215 | layout.set_text(text, -1)
216 | PangoCairo.update_layout(context, layout)
217 | PangoCairo.show_layout(context, layout)
218 |
219 | def create_img(self, name, RTL):
220 | px = 28
221 | if name.endswith('png'):
222 | surface = cairo.ImageSurface(cairo.FORMAT_RGB24, 10+(self.cols*px), 10+(self.rows*px))
223 | else:
224 | surface = cairo.SVGSurface(name, 10+(self.cols*px), 10+(self.rows*px))
225 | context = cairo.Context(surface)
226 | context.set_source_rgb(1, 1, 1)
227 | context.rectangle(0, 0, 10+(self.cols*px), 10+(self.rows*px))
228 | context.fill()
229 | self.draw_img(name, context, 28, 5, 5, RTL)
230 | if name.endswith('png'):
231 | surface.write_to_png(name)
232 | else:
233 | context.show_page()
234 | surface.finish()
235 |
236 | def export_pdf(self, xwname, filetype, lang, RTL, width=595, height=842):
237 | px, xoffset, yoffset = 28, 36, 72
238 | name = xwname + filetype
239 | surface = cairo.PDFSurface(name, width, height)
240 | context = cairo.Context(surface)
241 | context.set_source_rgb(1, 1, 1)
242 | context.rectangle(0, 0, width, height)
243 | context.fill()
244 | context.save()
245 | sc_ratio = float(width-(xoffset*2))/(px*self.cols)
246 | if self.cols <= 21:
247 | sc_ratio, xoffset = 0.8, float(1.25*width-(px*self.cols))/2
248 | context.scale(sc_ratio, sc_ratio)
249 | self.draw_img(name, context, 28, xoffset, 80, RTL)
250 | context.restore()
251 | context.set_source_rgb(0, 0, 0)
252 | self.draw_letters(xwname, context, round((width-len(xwname)*10)/2), yoffset/2, 'Sans 14 bold')
253 | x, y = 36, yoffset+5+(self.rows*px*sc_ratio)
254 | clues = self.wrap(self.legend(lang))
255 | self.draw_letters(lang[0], context, x, y, 'Sans 12 bold')
256 | for line in clues.splitlines()[3:]:
257 | if y >= height-(yoffset/2)-15:
258 | context.show_page()
259 | y = yoffset/2
260 | if line.strip() == lang[1]:
261 | if self.cols > 17 and y > 700:
262 | context.show_page()
263 | y = yoffset/2
264 | y += 8
265 | self.draw_letters(lang[1], context, x, y+15, 'Sans 12 bold')
266 | y += 16
267 | continue
268 | self.draw_letters(line, context, x, y+18, 'Serif 9')
269 | y += 16
270 | context.show_page()
271 | surface.finish()
272 |
273 | def create_files(self, name, save_format, lang, message):
274 | if Pango.find_base_dir(self.wordlist[0][0], -1) == Pango.Direction.RTL:
275 | [i.reverse() for i in self.grid]
276 | RTL = True
277 | else:
278 | RTL = False
279 | img_files = ''
280 | if 'p' in save_format:
281 | self.export_pdf(name, '_grid.pdf', lang, RTL)
282 | self.export_pdf(name, '_key.pdf', lang, RTL)
283 | img_files += name + '_grid.pdf ' + name + '_key.pdf '
284 | if 'l' in save_format:
285 | self.export_pdf(name, 'l_grid.pdf', lang, RTL, 612, 792)
286 | self.export_pdf(name, 'l_key.pdf', lang, RTL, 612, 792)
287 | img_files += name + 'l_grid.pdf ' + name + 'l_key.pdf '
288 | if 'n' in save_format:
289 | self.create_img(name + '_grid.png', RTL)
290 | self.create_img(name + '_key.png', RTL)
291 | img_files += name + '_grid.png ' + name + '_key.png '
292 | if 's' in save_format:
293 | self.create_img(name + '_grid.svg', RTL)
294 | self.create_img(name + '_key.svg', RTL)
295 | img_files += name + '_grid.svg ' + name + '_key.svg '
296 | if 'n' in save_format or 's' in save_format:
297 | self.clues_txt(name + '_clues.txt', lang)
298 | img_files += name + '_clues.txt'
299 | if 'z' in save_format:
300 | out = name + '.ipuz'
301 | self.write_ipuz(name=name, filename=out, lang=lang)
302 | img_files += out
303 | if message:
304 | print(message + img_files)
305 |
306 | def wrap(self, text, width=80):
307 | lines = []
308 | for paragraph in text.split('\n'):
309 | line = []
310 | len_line = 0
311 | for word in paragraph.split():
312 | len_word = len(word)
313 | if len_line + len_word <= width:
314 | line.append(word)
315 | len_line += len_word + 1
316 | else:
317 | lines.append(' '.join(line))
318 | line = [word]
319 | len_line = len_word + 1
320 | lines.append(' '.join(line))
321 | return '\n'.join(lines)
322 |
323 | def word_bank(self):
324 | temp_list = list(self.wordlist)
325 | random.shuffle(temp_list)
326 | return 'Word bank\n' + ''.join([u'{}\n'.format(word[0]) for word in temp_list])
327 |
328 | def legend(self, lang):
329 | outStrA, outStrD = u'\nClues\n{}\n'.format(lang[0]), u'{}\n'.format(lang[1])
330 | for word in self.wordlist:
331 | if word[4]:
332 | outStrD += u'{:d}. {}\n'.format(word[5], word[1])
333 | else:
334 | outStrA += u'{:d}. {}\n'.format(word[5], word[1])
335 | return outStrA + outStrD
336 |
337 | def clues_txt(self, name, lang):
338 | with open(name, 'w') as clues_file:
339 | clues_file.write(self.word_bank())
340 | clues_file.write(self.legend(lang))
341 |
342 | def write_ipuz(self, name, filename, lang):
343 | # Generate the clue numbers if we haven't already
344 | if len(self.wordlist[0]) < 6:
345 | self.order_number_words()
346 |
347 | # Generate some data structures for the final output
348 | puzzle = [[0] * self.cols for row in range(self.rows)]
349 | clues = {'Across': [], 'Down': []}
350 | solution = [['#' if col == '-' else col for col in row] for row in self.grid]
351 |
352 | # Iterate the clues to calculate the main data
353 | for clue in self.wordlist:
354 | word, clue_text, row, col, vertical, num = clue[:6]
355 | puzzle[row][col] = num
356 |
357 | puz_clue = [num, clue_text]
358 | if vertical:
359 | clues['Down'].append(puz_clue)
360 | else:
361 | clues['Across'].append(puz_clue)
362 |
363 | data = {
364 | 'dimensions': {
365 | 'width': self.cols,
366 | 'height': self.rows
367 | },
368 | 'puzzle': puzzle,
369 | 'clues': clues,
370 | 'solution': solution,
371 | 'version': 'http://ipuz.org/v1',
372 | 'kind': ['http://ipuz.org/crossword#1'],
373 | 'title': name,
374 | }
375 |
376 | with open(filename, 'w') as fp:
377 | json.dump(data, fp, indent=4)
378 |
--------------------------------------------------------------------------------
/genxword/gui.py:
--------------------------------------------------------------------------------
1 | # Authors: David Whitlock , Bryan Helmig
2 | # Crossword generator that outputs the grid and clues as a pdf file and/or
3 | # the grid in png/svg format with a text file containing the words and clues.
4 | # Copyright (C) 2010-2011 Bryan Helmig
5 | # Copyright (C) 2011-2020 David Whitlock
6 | #
7 | # Genxword-gtk is free software: you can redistribute it and/or modify
8 | # it under the terms of the GNU General Public License as published by
9 | # the Free Software Foundation, either version 3 of the License, or
10 | # (at your option) any later version.
11 | #
12 | # Genxword-gtk is distributed in the hope that it will be useful,
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 | # GNU General Public License for more details.
16 | #
17 | # You should have received a copy of the GNU General Public License
18 | # along with genxword-gtk. If not, see .
19 |
20 | import gi
21 | gi.require_version('Gtk', '3.0')
22 | gi.require_version('GtkSource', '3.0')
23 |
24 | import os
25 | from gi.repository import Gtk, GtkSource, Pango
26 | from .control import Genxword, _, base_dir
27 | from .calculate import Crossword, Exportfiles
28 |
29 | ui_info = """
30 |
31 |
32 |
40 |
48 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 | """
66 |
67 | class Genxinterface(Gtk.Window):
68 | def __init__(self):
69 | Gtk.Window.__init__(self, title='genxword-gtk')
70 |
71 | self.set_default_size(650, 600)
72 | self.set_default_icon_name('genxword-gtk')
73 | self.saveformat = ''
74 | self.mixwords = False
75 | self.gsize = False
76 | self.default_lang = _('Across/Down').split('/')
77 |
78 | self.grid = Gtk.Grid()
79 | self.add(self.grid)
80 | self.grid.set_border_width(6)
81 | self.grid.set_row_spacing(6)
82 | self.grid.set_column_spacing(6)
83 |
84 | action_group = Gtk.ActionGroup('gui_actions')
85 | self.add_actions(action_group)
86 | uimanager = self.create_ui_manager()
87 | uimanager.insert_action_group(action_group)
88 | menubar = uimanager.get_widget('/MenuBar')
89 | self.grid.attach(menubar, 0, 0, 6, 1)
90 | toolbar = uimanager.get_widget('/ToolBar')
91 | self.grid.attach(toolbar, 0, 1, 6, 1)
92 |
93 | self.notebk()
94 | self.save_buttons()
95 | self.option_buttons()
96 |
97 | self.list_clickable_buttons(uimanager)
98 | self.set_sensitivities(True)
99 |
100 | def add_actions(self, action_group):
101 | action_group.add_actions([
102 | ('FileMenu', None, _('_Word list')),
103 | ('New', Gtk.STOCK_NEW, _('_New word list'), None,
104 | _('Create a new word list or go back to the already open word list'), self.new_wlist),
105 | ('Open', Gtk.STOCK_OPEN, _('_Open word list'), None, _('Open a word list'), self.open_wlist),
106 | ('Sort', None, _('_Sort word list'), None,
107 | _('Sort the word list and remove words with non-alphabetic characters'), self.sort_wlist),
108 | ('Quit', Gtk.STOCK_QUIT, _('Quit'), None, _('Quit'), self.quit_app),
109 | ('CrosswordMenu', None, _('_Crossword')),
110 | ('Create', Gtk.STOCK_EXECUTE, _('_Calculate crossword'), 'G',
111 | _('Calculate the crossword'), self.create_xword),
112 | ('Incgsize', Gtk.STOCK_ADD, _('_Recalculate'), 'R',
113 | _('Increase the grid size and recalculate the crossword'), self.incgsize),
114 | ('Save', Gtk.STOCK_SAVE, _('_Save'), None, _('Save crossword'), self.save_xword),
115 | ('HelpMenu', None, _('_Help')),
116 | ('Help', Gtk.STOCK_HELP, _('_Help'), 'F1', _('Open the help page'), self.help_page),
117 | ('About', Gtk.STOCK_ABOUT, _('_About'), None, _('About'), self.about_dialog)
118 | ])
119 |
120 | action_group.add_toggle_actions([
121 | ('MixClue', None, _('Anagram clues'), None, None, self.set_mixwords),
122 | ('EditGsize', None, _('Choose the grid size'), None, None, self.set_gsize)
123 | ])
124 |
125 | def create_ui_manager(self):
126 | uimanager = Gtk.UIManager()
127 | uimanager.add_ui_from_string(ui_info)
128 | accelgroup = uimanager.get_accel_group()
129 | self.add_accel_group(accelgroup)
130 | return uimanager
131 |
132 | def notebk(self):
133 | """Set up the word list window and the crossword window."""
134 | self.notebk_win = Gtk.Notebook()
135 | self.notebk_win.set_show_tabs(False)
136 | scrolledwindow = Gtk.ScrolledWindow()
137 | scrolledwindow.set_hexpand(True)
138 | scrolledwindow.set_vexpand(True)
139 | self.textview_win(scrolledwindow)
140 | self.notebk_win.append_page(scrolledwindow, None)
141 |
142 | xwordwindow = Gtk.ScrolledWindow()
143 | xwordwindow.set_hexpand(True)
144 | xwordwindow.set_vexpand(True)
145 | self.xword_label = Gtk.Label()
146 | self.xword_label.set_margin_left(6)
147 | self.xword_label.set_margin_right(6)
148 | xwordwindow.add_with_viewport(self.xword_label)
149 | self.notebk_win.append_page(xwordwindow, None)
150 | self.grid.attach(self.notebk_win, 0, 2, 6, 1)
151 |
152 | def textview_win(self, wordlist_win):
153 | """Create the window for editing the word list."""
154 | self.textview = GtkSource.View.new()
155 | self.textview.set_show_line_numbers(True)
156 | self.textview.set_border_width(6)
157 | fontdesc = Pango.FontDescription('serif')
158 | self.textview.modify_font(fontdesc)
159 | self.buff = self.textview.get_buffer()
160 | wordlist_win.add(self.textview)
161 |
162 | manager = GtkSource.LanguageManager()
163 | path = manager.get_search_path()
164 | path.append(os.path.join(base_dir, 'data'))
165 | manager.set_search_path(path)
166 | lang = manager.get_language('gumby')
167 | self.buff.set_language(lang)
168 |
169 | def save_buttons(self):
170 | """Create the checkboxes for the 'Save as...' options."""
171 | save_bar = Gtk.ButtonBox()
172 | self.grid.attach(save_bar, 0, 3, 6, 1)
173 |
174 | save_label = Gtk.Label(_('Save the crossword as'))
175 | save_bar.add(save_label)
176 |
177 | save_A4 = Gtk.CheckButton(_('A4 pdf'))
178 | save_A4.connect('toggled', self.save_options, 'p')
179 | save_bar.add(save_A4)
180 |
181 | save_letter = Gtk.CheckButton(_('letter pdf'))
182 | save_letter.connect('toggled', self.save_options, 'l')
183 | save_bar.add(save_letter)
184 |
185 | save_png = Gtk.CheckButton('png')
186 | save_png.connect('toggled', self.save_options, 'n')
187 | save_bar.add(save_png)
188 |
189 | save_svg = Gtk.CheckButton('svg')
190 | save_svg.connect('toggled', self.save_options, 's')
191 | save_bar.add(save_svg)
192 |
193 | def option_buttons(self):
194 | """Create various option buttons."""
195 | self.enter_name = Gtk.Entry()
196 | self.name_xword = _('Name of crossword')
197 | self.enter_name.set_text(self.name_xword)
198 | self.enter_name.set_tooltip_text(_('Choose the name of your crossword'))
199 | self.enter_name.set_icon_from_stock(Gtk.EntryIconPosition.SECONDARY, Gtk.STOCK_CLEAR)
200 | self.enter_name.connect('icon-press', self.entry_cleared)
201 | self.grid.attach(self.enter_name, 0, 4, 2, 1)
202 |
203 | nwords_label = Gtk.Label(_('Number of words'))
204 | self.grid.attach(nwords_label, 2, 4, 1, 1)
205 |
206 | adjustment = Gtk.Adjustment.new(50.0, 10.0, 500.0, 5.0, 10.0, 0.0)
207 | self.choose_nwords = Gtk.SpinButton.new(adjustment, 5.0, 0)
208 | self.choose_nwords.set_update_policy(Gtk.SpinButtonUpdatePolicy.IF_VALID)
209 | self.choose_nwords.set_tooltip_text(_('Choose the number of words you want to use'))
210 | self.grid.attach(self.choose_nwords, 3, 4, 1, 1)
211 |
212 | gsize_label = Gtk.Label(_('Grid size'))
213 | self.grid.attach(gsize_label, 4, 4, 1, 1)
214 |
215 | self.choose_gsize = Gtk.Entry()
216 | self.choose_gsize.set_text('17,17')
217 | self.choose_gsize.set_width_chars(8)
218 | gsize_tip = _('Choose the crossword grid size\nGo to the Crossword menu to enable this option')
219 | self.choose_gsize.set_tooltip_text(gsize_tip)
220 | self.choose_gsize.set_sensitive(False)
221 | self.grid.attach(self.choose_gsize, 5, 4, 1, 1)
222 |
223 | def list_clickable_buttons(self, uimanager):
224 | self.click_buttons = []
225 | self.click_buttons.append(uimanager.get_widget('/MenuBar/FileMenu/Sort'))
226 | unclick_list = ['/MenuBar/CrosswordMenu/Incgsize', '/MenuBar/CrosswordMenu/Save',
227 | '/ToolBar/Incgsize', '/ToolBar/Save']
228 | self.unclick_buttons = [uimanager.get_widget(name) for name in unclick_list]
229 |
230 | def set_sensitivities(self, value, page=0):
231 | """Toggle sensitivity of buttons."""
232 | for button in self.click_buttons:
233 | button.set_sensitive(value)
234 | for button in self.unclick_buttons:
235 | button.set_sensitive(not value)
236 | self.notebk_win.set_current_page(page)
237 | self.calc_first_time = value
238 |
239 | def entry_cleared(self, entry, position, event):
240 | self.enter_name.set_text('')
241 | self.enter_name.grab_focus()
242 |
243 | def save_options(self, button, name):
244 | if button.get_active():
245 | self.saveformat += name
246 | else:
247 | self.saveformat = self.saveformat.replace(name, '')
248 |
249 | def new_wlist(self, button):
250 | self.set_sensitivities(True, 0)
251 |
252 | def open_wlist(self, button):
253 | dialog = Gtk.FileChooserDialog(_('Please choose a file'), self,
254 | Gtk.FileChooserAction.OPEN,
255 | (Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL,
256 | Gtk.STOCK_OPEN, Gtk.ResponseType.OK))
257 | self.add_filters(dialog)
258 | response = dialog.run()
259 | if response == Gtk.ResponseType.OK:
260 | with open(dialog.get_filename()) as infile:
261 | data = infile.read()
262 | self.buff.set_text(data)
263 | dialog.destroy()
264 | self.set_sensitivities(True, 0)
265 |
266 | def add_filters(self, dialog):
267 | filter_text = Gtk.FileFilter()
268 | filter_text.set_name('Text files')
269 | filter_text.add_mime_type('text/plain')
270 | dialog.add_filter(filter_text)
271 |
272 | def sort_wlist(self, button):
273 | data = self.buff.get_text(self.buff.get_start_iter(), self.buff.get_end_iter(), False)
274 | valid = [[word for word in line.split(' ', 1)] for line in data.splitlines() if line.split(' ', 1)[0].isalpha()]
275 | valid.sort(key=lambda i: len(i[0]))
276 | self.buff.set_text('\n'.join([' '.join(word) for word in valid]))
277 |
278 | def create_xword(self, button):
279 | if self.calc_first_time:
280 | self.words = self.buff.get_text(self.buff.get_start_iter(), self.buff.get_end_iter(), False)
281 | nwords = self.choose_nwords.get_value_as_int()
282 | gen = Genxword(False, self.mixwords)
283 | gen.wlist(self.words.splitlines(), nwords)
284 | self.wlist = gen.wordlist
285 | gen.grid_size(True)
286 | if self.gsize:
287 | gen.check_grid_size(self.choose_gsize.get_text())
288 | self.nrow, self.ncol = gen.nrow, gen.ncol
289 | self.calc_xword()
290 | self.set_sensitivities(False, 1)
291 | else:
292 | self.calc_xword()
293 |
294 | def calc_xword(self):
295 | calc = Crossword(self.nrow, self.ncol, ' ', self.wlist)
296 | display = '' + calc.compute_crossword() + ''
297 | self.xword_label.set_markup(display)
298 | self.xword_view(False, Gtk.Align.FILL)
299 | self.choose_gsize.set_text(str(self.nrow) + ',' + str(self.ncol))
300 | self.best_wordlist = calc.best_wordlist
301 | self.best_grid = calc.best_grid
302 |
303 | def incgsize(self, button):
304 | self.nrow += 2;self.ncol += 2
305 | self.calc_xword()
306 |
307 | def xword_view(self, value, alignment):
308 | self.xword_label.set_line_wrap(value)
309 | self.xword_label.set_valign(alignment)
310 | self.xword_label.set_halign(alignment)
311 |
312 | def set_mixwords(self, button):
313 | self.mixwords = button.get_active()
314 |
315 | def set_gsize(self, button):
316 | self.gsize = button.get_active()
317 | self.choose_gsize.set_sensitive(button.get_active())
318 |
319 | def save_xword(self, button):
320 | self.xwordname = self.enter_name.get_text()
321 | if self.xwordname != self.name_xword and self.saveformat:
322 | dialog = Gtk.FileChooserDialog(_('Please choose a folder'), self,
323 | Gtk.FileChooserAction.SELECT_FOLDER,
324 | (Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL,
325 | '_Select', Gtk.ResponseType.OK))
326 | response = dialog.run()
327 | if response == Gtk.ResponseType.OK:
328 | os.chdir(dialog.get_filename())
329 | else:
330 | dialog.destroy()
331 | return
332 | dialog.destroy()
333 | exp = Exportfiles(self.nrow, self.ncol, self.best_grid, self.best_wordlist)
334 | exp.create_files(self.xwordname, self.saveformat, self.default_lang, '')
335 | with open(self.xwordname + '_wlist.txt', 'w') as wlist_file:
336 | wlist_file.write(self.words)
337 | text = _('Your crossword files have been saved in ') + os.getcwd()
338 | self.enter_name.set_text(self.name_xword)
339 | self.buff.set_text('')
340 | else:
341 | text = (_('Please fill in the name of the crossword and the format you want it saved in '
342 | '(A4 size pdf, letter size pdf, png or svg).\nThen click on the Save button again.'))
343 | display = '' + text + ''
344 | self.xword_label.set_markup(display)
345 | self.xword_view(True, Gtk.Align.START)
346 |
347 | def help_page(self, button):
348 | dialog = HelpDialog(self)
349 | dialog.run()
350 | dialog.destroy()
351 |
352 | def about_dialog(self, button):
353 | license = ('Genxword-gtk is free software: you can redistribute it and/or modify '
354 | 'it under the terms of the GNU General Public License as published by '
355 | 'the Free Software Foundation, either version 3 of the License, or '
356 | '(at your option) any later version.\n\n'
357 | 'Genxword-gtk is distributed in the hope that it will be useful, '
358 | 'but WITHOUT ANY WARRANTY; without even the implied warranty of '
359 | 'MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the '
360 | 'GNU General Public License for more details.\n\n'
361 | 'You should have received a copy of the GNU General Public License '
362 | 'along with genxword-gtk. If not, see http://www.gnu.org/licenses/gpl.html')
363 | about = Gtk.AboutDialog()
364 | about.set_program_name('genxword-gtk')
365 | about.set_version('2.2.0')
366 | about.set_license(license)
367 | about.set_wrap_license(True)
368 | about.set_comments(_('A crossword generator'))
369 | about.set_authors(['David Whitlock ', 'Bryan Helmig'])
370 | about.set_website('https://github.com/riverrun/genxword/wiki/genxword-gtk')
371 | about.set_website_label('genxword-gtk wiki')
372 | about.set_logo_icon_name('genxword-gtk')
373 | about.run()
374 | about.destroy()
375 |
376 | def quit_app(self, widget):
377 | Gtk.main_quit()
378 |
379 | class HelpDialog(Gtk.Dialog):
380 | def __init__(self, parent):
381 | Gtk.Dialog.__init__(self, 'Help page', parent, 0,
382 | (Gtk.STOCK_CLOSE, Gtk.ResponseType.CLOSE))
383 |
384 | self.set_default_size(650, 500)
385 | self.set_default_response(Gtk.ResponseType.CLOSE)
386 |
387 | with open(os.path.join(base_dir, 'data', 'help_page')) as help_file:
388 | text = help_file.read()
389 |
390 | label = Gtk.Label()
391 | label.set_markup(text)
392 | label.set_line_wrap(True)
393 | scrolledwindow = Gtk.ScrolledWindow()
394 | scrolledwindow.add_with_viewport(label)
395 | box = self.get_content_area()
396 | box.pack_start(scrolledwindow, True, True, 0)
397 | self.show_all()
398 |
399 | def main():
400 | win = Genxinterface()
401 | win.connect('delete-event', Gtk.main_quit)
402 | win.show_all()
403 | Gtk.main()
404 |
--------------------------------------------------------------------------------
/examples/word_lists/2000_comwords_ENG.txt:
--------------------------------------------------------------------------------
1 | ability
2 | able
3 | about
4 | above
5 | absence
6 | absolutely
7 | academic
8 | accept
9 | access
10 | accident
11 | accompany
12 | according
13 | account
14 | achieve
15 | achievement
16 | acid
17 | acquire
18 | across
19 | act
20 | action
21 | active
22 | activity
23 | actual
24 | actually
25 | add
26 | addition
27 | additional
28 | address
29 | administration
30 | admit
31 | adopt
32 | adult
33 | advance
34 | advantage
35 | advice
36 | advise
37 | affair
38 | affect
39 | afford
40 | afraid
41 | after
42 | afternoon
43 | afterwards
44 | again
45 | against
46 | age
47 | agency
48 | agent
49 | ago
50 | agree
51 | agreement
52 | ahead
53 | aid
54 | aim
55 | air
56 | aircraft
57 | all
58 | allow
59 | almost
60 | alone
61 | along
62 | already
63 | alright
64 | also
65 | alternative
66 | although
67 | always
68 | among
69 | amongst
70 | amount
71 | analysis
72 | ancient
73 | and
74 | animal
75 | announce
76 | annual
77 | another
78 | answer
79 | any
80 | anybody
81 | anyone
82 | anything
83 | anyway
84 | apart
85 | apparent
86 | apparently
87 | appeal
88 | appear
89 | appearance
90 | application
91 | apply
92 | appoint
93 | appointment
94 | approach
95 | appropriate
96 | approve
97 | area
98 | argue
99 | argument
100 | arise
101 | arm
102 | army
103 | around
104 | arrange
105 | arrangement
106 | arrive
107 | art
108 | article
109 | artist
110 | ask
111 | aspect
112 | assembly
113 | assess
114 | assessment
115 | asset
116 | associate
117 | association
118 | assume
119 | assumption
120 | atmosphere
121 | attach
122 | attack
123 | attempt
124 | attend
125 | attention
126 | attitude
127 | attract
128 | attractive
129 | audience
130 | author
131 | authority
132 | available
133 | average
134 | avoid
135 | award
136 | aware
137 | away
138 | aye
139 | baby
140 | back
141 | background
142 | bad
143 | bag
144 | balance
145 | ball
146 | band
147 | bank
148 | bar
149 | base
150 | basic
151 | basis
152 | battle
153 | bear
154 | beat
155 | beautiful
156 | because
157 | become
158 | bed
159 | bedroom
160 | before
161 | begin
162 | beginning
163 | behaviour
164 | behind
165 | belief
166 | believe
167 | belong
168 | below
169 | beneath
170 | benefit
171 | beside
172 | best
173 | better
174 | between
175 | beyond
176 | big
177 | bill
178 | bind
179 | bird
180 | birth
181 | bit
182 | black
183 | block
184 | blood
185 | bloody
186 | blow
187 | blue
188 | board
189 | boat
190 | body
191 | bone
192 | book
193 | border
194 | both
195 | bottle
196 | bottom
197 | box
198 | boy
199 | brain
200 | branch
201 | break
202 | breath
203 | bridge
204 | brief
205 | bright
206 | bring
207 | broad
208 | brother
209 | budget
210 | build
211 | building
212 | burn
213 | bus
214 | business
215 | busy
216 | but
217 | buy
218 | cabinet
219 | call
220 | campaign
221 | can
222 | candidate
223 | capable
224 | capacity
225 | capital
226 | car
227 | card
228 | care
229 | career
230 | careful
231 | carefully
232 | carry
233 | case
234 | cash
235 | cat
236 | catch
237 | category
238 | cause
239 | cell
240 | central
241 | centre
242 | century
243 | certain
244 | certainly
245 | chain
246 | chair
247 | chairman
248 | challenge
249 | chance
250 | change
251 | channel
252 | chapter
253 | character
254 | characteristic
255 | charge
256 | cheap
257 | check
258 | chemical
259 | chief
260 | child
261 | choice
262 | choose
263 | church
264 | circle
265 | circumstance
266 | citizen
267 | city
268 | civil
269 | claim
270 | class
271 | clean
272 | clear
273 | clearly
274 | client
275 | climb
276 | close
277 | closely
278 | clothes
279 | club
280 | coal
281 | code
282 | coffee
283 | cold
284 | colleague
285 | collect
286 | collection
287 | college
288 | colour
289 | combination
290 | combine
291 | come
292 | comment
293 | commercial
294 | commission
295 | commit
296 | commitment
297 | committee
298 | common
299 | communication
300 | community
301 | company
302 | compare
303 | comparison
304 | competition
305 | complete
306 | completely
307 | complex
308 | component
309 | computer
310 | concentrate
311 | concentration
312 | concept
313 | concern
314 | concerned
315 | conclude
316 | conclusion
317 | condition
318 | conduct
319 | conference
320 | confidence
321 | confirm
322 | conflict
323 | congress
324 | connect
325 | connection
326 | consequence
327 | conservative
328 | consider
329 | considerable
330 | consideration
331 | consist
332 | constant
333 | construction
334 | consumer
335 | contact
336 | contain
337 | content
338 | context
339 | continue
340 | contract
341 | contrast
342 | contribute
343 | contribution
344 | control
345 | convention
346 | conversation
347 | copy
348 | corner
349 | corporate
350 | correct
351 | cos
352 | cost
353 | could
354 | council
355 | count
356 | country
357 | county
358 | couple
359 | course
360 | court
361 | cover
362 | create
363 | creation
364 | credit
365 | crime
366 | criminal
367 | crisis
368 | criterion
369 | critical
370 | criticism
371 | cross
372 | crowd
373 | cry
374 | cultural
375 | culture
376 | cup
377 | current
378 | currently
379 | curriculum
380 | customer
381 | cut
382 | damage
383 | danger
384 | dangerous
385 | dark
386 | data
387 | date
388 | daughter
389 | day
390 | dead
391 | deal
392 | death
393 | debate
394 | debt
395 | decade
396 | decide
397 | decision
398 | declare
399 | deep
400 | defence
401 | defendant
402 | define
403 | definition
404 | degree
405 | deliver
406 | demand
407 | democratic
408 | demonstrate
409 | deny
410 | department
411 | depend
412 | deputy
413 | derive
414 | describe
415 | description
416 | design
417 | desire
418 | desk
419 | despite
420 | destroy
421 | detail
422 | detailed
423 | determine
424 | develop
425 | development
426 | device
427 | die
428 | difference
429 | different
430 | difficult
431 | difficulty
432 | dinner
433 | direct
434 | direction
435 | directly
436 | director
437 | disappear
438 | discipline
439 | discover
440 | discuss
441 | discussion
442 | disease
443 | display
444 | distance
445 | distinction
446 | distribution
447 | district
448 | divide
449 | division
450 | doctor
451 | document
452 | dog
453 | domestic
454 | door
455 | double
456 | doubt
457 | down
458 | draw
459 | drawing
460 | dream
461 | dress
462 | drink
463 | drive
464 | driver
465 | drop
466 | drug
467 | dry
468 | due
469 | during
470 | duty
471 | each
472 | ear
473 | early
474 | earn
475 | earth
476 | easily
477 | east
478 | easy
479 | eat
480 | economic
481 | economy
482 | edge
483 | editor
484 | education
485 | educational
486 | effect
487 | effective
488 | effectively
489 | effort
490 | egg
491 | either
492 | elderly
493 | election
494 | element
495 | else
496 | elsewhere
497 | emerge
498 | emphasis
499 | employ
500 | employee
501 | employer
502 | employment
503 | empty
504 | enable
505 | encourage
506 | end
507 | enemy
508 | energy
509 | engine
510 | engineering
511 | enjoy
512 | enough
513 | ensure
514 | enter
515 | enterprise
516 | entire
517 | entirely
518 | entitle
519 | entry
520 | environment
521 | environmental
522 | equal
523 | equally
524 | equipment
525 | error
526 | escape
527 | especially
528 | essential
529 | establish
530 | establishment
531 | estate
532 | estimate
533 | even
534 | evening
535 | event
536 | eventually
537 | ever
538 | every
539 | everybody
540 | everyone
541 | everything
542 | evidence
543 | exactly
544 | examination
545 | examine
546 | example
547 | excellent
548 | except
549 | exchange
550 | executive
551 | exercise
552 | exhibition
553 | exist
554 | existence
555 | existing
556 | expect
557 | expectation
558 | expenditure
559 | expense
560 | expensive
561 | experience
562 | experiment
563 | expert
564 | explain
565 | explanation
566 | explore
567 | express
568 | expression
569 | extend
570 | extent
571 | external
572 | extra
573 | extremely
574 | eye
575 | face
576 | facility
577 | fact
578 | factor
579 | factory
580 | fail
581 | failure
582 | fair
583 | fairly
584 | faith
585 | fall
586 | familiar
587 | family
588 | famous
589 | far
590 | farm
591 | farmer
592 | fashion
593 | fast
594 | father
595 | favour
596 | fear
597 | feature
598 | fee
599 | feel
600 | feeling
601 | female
602 | few
603 | field
604 | fight
605 | figure
606 | file
607 | fill
608 | film
609 | final
610 | finally
611 | finance
612 | financial
613 | find
614 | finding
615 | fine
616 | finger
617 | finish
618 | fire
619 | firm
620 | first
621 | fish
622 | fit
623 | fix
624 | flat
625 | flight
626 | floor
627 | flow
628 | flower
629 | fly
630 | focus
631 | follow
632 | following
633 | food
634 | foot
635 | football
636 | for
637 | force
638 | foreign
639 | forest
640 | forget
641 | form
642 | formal
643 | former
644 | forward
645 | foundation
646 | free
647 | freedom
648 | frequently
649 | fresh
650 | friend
651 | from
652 | front
653 | fruit
654 | fuel
655 | full
656 | fully
657 | function
658 | fund
659 | funny
660 | further
661 | future
662 | gain
663 | game
664 | garden
665 | gas
666 | gate
667 | gather
668 | general
669 | generally
670 | generate
671 | generation
672 | gentleman
673 | get
674 | girl
675 | give
676 | glass
677 | goal
678 | god
679 | gold
680 | good
681 | government
682 | grant
683 | great
684 | green
685 | grey
686 | ground
687 | group
688 | grow
689 | growing
690 | growth
691 | guest
692 | guide
693 | gun
694 | hair
695 | half
696 | hall
697 | hand
698 | handle
699 | hang
700 | happen
701 | happy
702 | hard
703 | hardly
704 | hate
705 | have
706 | head
707 | health
708 | hear
709 | heart
710 | heat
711 | heavy
712 | hell
713 | help
714 | hence
715 | her
716 | here
717 | herself
718 | hide
719 | high
720 | highly
721 | hill
722 | him
723 | himself
724 | his
725 | historical
726 | history
727 | hit
728 | hold
729 | hole
730 | holiday
731 | home
732 | hope
733 | horse
734 | hospital
735 | hot
736 | hotel
737 | hour
738 | house
739 | household
740 | housing
741 | how
742 | however
743 | huge
744 | human
745 | hurt
746 | husband
747 | idea
748 | identify
749 | ignore
750 | illustrate
751 | image
752 | imagine
753 | immediate
754 | immediately
755 | impact
756 | implication
757 | imply
758 | importance
759 | important
760 | impose
761 | impossible
762 | impression
763 | improve
764 | improvement
765 | incident
766 | include
767 | including
768 | income
769 | increase
770 | increased
771 | increasingly
772 | indeed
773 | independent
774 | index
775 | indicate
776 | individual
777 | industrial
778 | industry
779 | influence
780 | inform
781 | information
782 | initial
783 | initiative
784 | injury
785 | inside
786 | insist
787 | instance
788 | instead
789 | institute
790 | institution
791 | instruction
792 | instrument
793 | insurance
794 | intend
795 | intention
796 | interest
797 | interested
798 | interesting
799 | internal
800 | international
801 | interpretation
802 | interview
803 | into
804 | introduce
805 | introduction
806 | investigate
807 | investigation
808 | investment
809 | invite
810 | involve
811 | iron
812 | island
813 | issue
814 | item
815 | its
816 | itself
817 | job
818 | join
819 | joint
820 | journey
821 | judge
822 | jump
823 | just
824 | justice
825 | keep
826 | key
827 | kid
828 | kill
829 | kind
830 | king
831 | kitchen
832 | knee
833 | know
834 | knowledge
835 | labour
836 | lack
837 | lady
838 | land
839 | language
840 | large
841 | largely
842 | last
843 | late
844 | later
845 | latter
846 | laugh
847 | launch
848 | law
849 | lawyer
850 | lay
851 | lead
852 | leader
853 | leadership
854 | leading
855 | leaf
856 | league
857 | lean
858 | learn
859 | least
860 | leave
861 | left
862 | leg
863 | legal
864 | legislation
865 | length
866 | less
867 | let
868 | letter
869 | level
870 | liability
871 | liberal
872 | library
873 | lie
874 | life
875 | lift
876 | light
877 | like
878 | likely
879 | limit
880 | limited
881 | line
882 | link
883 | lip
884 | list
885 | listen
886 | literature
887 | little
888 | live
889 | living
890 | loan
891 | local
892 | location
893 | long
894 | look
895 | lord
896 | lose
897 | loss
898 | lot
899 | love
900 | lovely
901 | low
902 | lunch
903 | machine
904 | magazine
905 | main
906 | mainly
907 | maintain
908 | major
909 | majority
910 | make
911 | male
912 | man
913 | manage
914 | management
915 | manager
916 | manner
917 | many
918 | map
919 | mark
920 | market
921 | marriage
922 | married
923 | marry
924 | mass
925 | master
926 | match
927 | material
928 | matter
929 | may
930 | maybe
931 | meal
932 | mean
933 | meaning
934 | means
935 | meanwhile
936 | measure
937 | mechanism
938 | media
939 | medical
940 | meet
941 | meeting
942 | member
943 | membership
944 | memory
945 | mental
946 | mention
947 | merely
948 | message
949 | metal
950 | method
951 | middle
952 | might
953 | mile
954 | military
955 | milk
956 | mind
957 | mine
958 | minister
959 | ministry
960 | minute
961 | miss
962 | mistake
963 | model
964 | modern
965 | module
966 | moment
967 | money
968 | month
969 | more
970 | morning
971 | most
972 | mother
973 | motion
974 | motor
975 | mountain
976 | mouth
977 | move
978 | movement
979 | much
980 | murder
981 | museum
982 | music
983 | must
984 | myself
985 | name
986 | narrow
987 | nation
988 | national
989 | natural
990 | nature
991 | near
992 | nearly
993 | necessarily
994 | necessary
995 | neck
996 | need
997 | negotiation
998 | neighbour
999 | neither
1000 | network
1001 | never
1002 | nevertheless
1003 | new
1004 | news
1005 | newspaper
1006 | next
1007 | nice
1008 | night
1009 | nobody
1010 | nod
1011 | noise
1012 | none
1013 | nor
1014 | normal
1015 | normally
1016 | north
1017 | northern
1018 | nose
1019 | not
1020 | note
1021 | nothing
1022 | notice
1023 | notion
1024 | now
1025 | nuclear
1026 | number
1027 | nurse
1028 | object
1029 | objective
1030 | observation
1031 | observe
1032 | obtain
1033 | obvious
1034 | obviously
1035 | occasion
1036 | occur
1037 | odd
1038 | off
1039 | offence
1040 | offer
1041 | office
1042 | officer
1043 | official
1044 | often
1045 | oil
1046 | okay
1047 | old
1048 | once
1049 | one
1050 | only
1051 | onto
1052 | open
1053 | operate
1054 | operation
1055 | opinion
1056 | opportunity
1057 | opposition
1058 | option
1059 | order
1060 | ordinary
1061 | organisation
1062 | organise
1063 | organization
1064 | origin
1065 | original
1066 | other
1067 | otherwise
1068 | ought
1069 | our
1070 | ourselves
1071 | out
1072 | outcome
1073 | output
1074 | outside
1075 | over
1076 | overall
1077 | own
1078 | owner
1079 | package
1080 | page
1081 | pain
1082 | paint
1083 | painting
1084 | pair
1085 | panel
1086 | paper
1087 | parent
1088 | park
1089 | parliament
1090 | part
1091 | particular
1092 | particularly
1093 | partly
1094 | partner
1095 | party
1096 | pass
1097 | passage
1098 | past
1099 | path
1100 | patient
1101 | pattern
1102 | pay
1103 | payment
1104 | peace
1105 | pension
1106 | people
1107 | per
1108 | percent
1109 | perfect
1110 | perform
1111 | performance
1112 | perhaps
1113 | period
1114 | permanent
1115 | person
1116 | personal
1117 | persuade
1118 | phase
1119 | phone
1120 | photograph
1121 | physical
1122 | pick
1123 | picture
1124 | piece
1125 | place
1126 | plan
1127 | planning
1128 | plant
1129 | plastic
1130 | plate
1131 | play
1132 | player
1133 | please
1134 | pleasure
1135 | plenty
1136 | plus
1137 | pocket
1138 | point
1139 | police
1140 | policy
1141 | political
1142 | politics
1143 | pool
1144 | poor
1145 | popular
1146 | population
1147 | position
1148 | positive
1149 | possibility
1150 | possible
1151 | possibly
1152 | post
1153 | potential
1154 | pound
1155 | power
1156 | powerful
1157 | practical
1158 | practice
1159 | prefer
1160 | prepare
1161 | presence
1162 | present
1163 | president
1164 | press
1165 | pressure
1166 | pretty
1167 | prevent
1168 | previous
1169 | previously
1170 | price
1171 | primary
1172 | prime
1173 | principle
1174 | priority
1175 | prison
1176 | prisoner
1177 | private
1178 | probably
1179 | problem
1180 | procedure
1181 | process
1182 | produce
1183 | product
1184 | production
1185 | professional
1186 | profit
1187 | program
1188 | programme
1189 | progress
1190 | project
1191 | promise
1192 | promote
1193 | proper
1194 | properly
1195 | property
1196 | proportion
1197 | proposal
1198 | propose
1199 | prospect
1200 | protect
1201 | protection
1202 | prove
1203 | provide
1204 | provided
1205 | provision
1206 | pub
1207 | public
1208 | publication
1209 | publish
1210 | pull
1211 | pupil
1212 | purpose
1213 | push
1214 | put
1215 | quality
1216 | quarter
1217 | question
1218 | quick
1219 | quickly
1220 | quiet
1221 | quite
1222 | race
1223 | radio
1224 | railway
1225 | rain
1226 | raise
1227 | range
1228 | rapidly
1229 | rare
1230 | rate
1231 | rather
1232 | reach
1233 | reaction
1234 | read
1235 | reader
1236 | reading
1237 | ready
1238 | real
1239 | realise
1240 | reality
1241 | realize
1242 | really
1243 | reason
1244 | reasonable
1245 | recall
1246 | receive
1247 | recent
1248 | recently
1249 | recognise
1250 | recognition
1251 | recognize
1252 | recommend
1253 | record
1254 | recover
1255 | red
1256 | reduce
1257 | reduction
1258 | refer
1259 | reference
1260 | reflect
1261 | reform
1262 | refuse
1263 | regard
1264 | region
1265 | regional
1266 | regular
1267 | regulation
1268 | reject
1269 | relate
1270 | relation
1271 | relationship
1272 | relative
1273 | relatively
1274 | release
1275 | relevant
1276 | relief
1277 | religion
1278 | religious
1279 | rely
1280 | remain
1281 | remember
1282 | remind
1283 | remove
1284 | repeat
1285 | replace
1286 | reply
1287 | report
1288 | represent
1289 | representation
1290 | representative
1291 | request
1292 | require
1293 | requirement
1294 | research
1295 | resource
1296 | respect
1297 | respond
1298 | response
1299 | responsibility
1300 | responsible
1301 | rest
1302 | restaurant
1303 | result
1304 | retain
1305 | return
1306 | reveal
1307 | revenue
1308 | review
1309 | revolution
1310 | rich
1311 | ride
1312 | right
1313 | ring
1314 | rise
1315 | risk
1316 | river
1317 | road
1318 | rock
1319 | role
1320 | roll
1321 | roof
1322 | room
1323 | round
1324 | route
1325 | row
1326 | royal
1327 | rule
1328 | run
1329 | rural
1330 | safe
1331 | safety
1332 | sale
1333 | same
1334 | sample
1335 | satisfy
1336 | save
1337 | say
1338 | scale
1339 | scene
1340 | scheme
1341 | school
1342 | science
1343 | scientific
1344 | scientist
1345 | score
1346 | screen
1347 | sea
1348 | search
1349 | season
1350 | seat
1351 | second
1352 | secondary
1353 | secretary
1354 | section
1355 | sector
1356 | secure
1357 | security
1358 | see
1359 | seek
1360 | seem
1361 | select
1362 | selection
1363 | sell
1364 | send
1365 | senior
1366 | sense
1367 | sentence
1368 | separate
1369 | sequence
1370 | series
1371 | serious
1372 | seriously
1373 | servant
1374 | serve
1375 | service
1376 | session
1377 | set
1378 | settle
1379 | settlement
1380 | several
1381 | severe
1382 | sex
1383 | sexual
1384 | shake
1385 | shall
1386 | shape
1387 | share
1388 | she
1389 | sheet
1390 | ship
1391 | shoe
1392 | shoot
1393 | shop
1394 | short
1395 | shot
1396 | should
1397 | shoulder
1398 | shout
1399 | show
1400 | shut
1401 | side
1402 | sight
1403 | sign
1404 | signal
1405 | significance
1406 | significant
1407 | silence
1408 | similar
1409 | simple
1410 | simply
1411 | since
1412 | sing
1413 | single
1414 | sir
1415 | sister
1416 | sit
1417 | site
1418 | situation
1419 | size
1420 | skill
1421 | skin
1422 | sky
1423 | sleep
1424 | slightly
1425 | slip
1426 | slow
1427 | slowly
1428 | small
1429 | smile
1430 | social
1431 | society
1432 | soft
1433 | software
1434 | soil
1435 | soldier
1436 | solicitor
1437 | solution
1438 | some
1439 | somebody
1440 | someone
1441 | something
1442 | sometimes
1443 | somewhat
1444 | somewhere
1445 | son
1446 | song
1447 | soon
1448 | sorry
1449 | sort
1450 | sound
1451 | source
1452 | south
1453 | southern
1454 | space
1455 | speak
1456 | speaker
1457 | special
1458 | species
1459 | specific
1460 | speech
1461 | speed
1462 | spend
1463 | spirit
1464 | sport
1465 | spot
1466 | spread
1467 | spring
1468 | staff
1469 | stage
1470 | stand
1471 | standard
1472 | star
1473 | start
1474 | state
1475 | statement
1476 | station
1477 | status
1478 | stay
1479 | steal
1480 | step
1481 | stick
1482 | still
1483 | stock
1484 | stone
1485 | stop
1486 | store
1487 | story
1488 | straight
1489 | strange
1490 | strategy
1491 | street
1492 | strength
1493 | strike
1494 | strong
1495 | strongly
1496 | structure
1497 | student
1498 | studio
1499 | study
1500 | stuff
1501 | style
1502 | subject
1503 | substantial
1504 | succeed
1505 | success
1506 | successful
1507 | such
1508 | suddenly
1509 | suffer
1510 | sufficient
1511 | suggest
1512 | suggestion
1513 | suitable
1514 | sum
1515 | summer
1516 | sun
1517 | supply
1518 | support
1519 | suppose
1520 | sure
1521 | surely
1522 | surface
1523 | surprise
1524 | surround
1525 | survey
1526 | survive
1527 | switch
1528 | system
1529 | table
1530 | take
1531 | talk
1532 | tall
1533 | tape
1534 | target
1535 | task
1536 | tax
1537 | tea
1538 | teach
1539 | teacher
1540 | teaching
1541 | team
1542 | tear
1543 | technical
1544 | technique
1545 | technology
1546 | telephone
1547 | television
1548 | tell
1549 | temperature
1550 | tend
1551 | term
1552 | terms
1553 | terrible
1554 | test
1555 | text
1556 | than
1557 | thank
1558 | thanks
1559 | that
1560 | the
1561 | theatre
1562 | their
1563 | them
1564 | theme
1565 | themselves
1566 | then
1567 | theory
1568 | there
1569 | therefore
1570 | these
1571 | they
1572 | thin
1573 | thing
1574 | think
1575 | this
1576 | those
1577 | though
1578 | thought
1579 | threat
1580 | threaten
1581 | through
1582 | throughout
1583 | throw
1584 | thus
1585 | ticket
1586 | time
1587 | tiny
1588 | title
1589 | today
1590 | together
1591 | tomorrow
1592 | tone
1593 | tonight
1594 | too
1595 | tool
1596 | tooth
1597 | top
1598 | total
1599 | totally
1600 | touch
1601 | tour
1602 | towards
1603 | town
1604 | track
1605 | trade
1606 | tradition
1607 | traditional
1608 | traffic
1609 | train
1610 | training
1611 | transfer
1612 | transport
1613 | travel
1614 | treat
1615 | treatment
1616 | treaty
1617 | tree
1618 | trend
1619 | trial
1620 | trip
1621 | troop
1622 | trouble
1623 | true
1624 | trust
1625 | truth
1626 | try
1627 | turn
1628 | twice
1629 | type
1630 | typical
1631 | unable
1632 | under
1633 | understand
1634 | understanding
1635 | undertake
1636 | unemployment
1637 | unfortunately
1638 | union
1639 | unit
1640 | united
1641 | university
1642 | unless
1643 | unlikely
1644 | until
1645 | upon
1646 | upper
1647 | urban
1648 | use
1649 | used
1650 | useful
1651 | user
1652 | usual
1653 | usually
1654 | value
1655 | variation
1656 | variety
1657 | various
1658 | vary
1659 | vast
1660 | vehicle
1661 | version
1662 | very
1663 | via
1664 | victim
1665 | victory
1666 | video
1667 | view
1668 | village
1669 | violence
1670 | vision
1671 | visit
1672 | visitor
1673 | vital
1674 | voice
1675 | volume
1676 | vote
1677 | wage
1678 | wait
1679 | walk
1680 | wall
1681 | want
1682 | war
1683 | warm
1684 | warn
1685 | wash
1686 | watch
1687 | water
1688 | wave
1689 | way
1690 | weak
1691 | weapon
1692 | wear
1693 | weather
1694 | week
1695 | weekend
1696 | weight
1697 | welcome
1698 | welfare
1699 | well
1700 | west
1701 | western
1702 | what
1703 | whatever
1704 | when
1705 | where
1706 | whereas
1707 | whether
1708 | which
1709 | while
1710 | whilst
1711 | white
1712 | who
1713 | whole
1714 | whom
1715 | whose
1716 | why
1717 | wide
1718 | widely
1719 | wife
1720 | wild
1721 | will
1722 | win
1723 | wind
1724 | window
1725 | wine
1726 | wing
1727 | winner
1728 | winter
1729 | wish
1730 | with
1731 | withdraw
1732 | within
1733 | without
1734 | woman
1735 | wonder
1736 | wonderful
1737 | wood
1738 | word
1739 | work
1740 | worker
1741 | working
1742 | works
1743 | world
1744 | worry
1745 | worth
1746 | would
1747 | write
1748 | writer
1749 | writing
1750 | wrong
1751 | yard
1752 | yeah
1753 | year
1754 | yes
1755 | yesterday
1756 | yet
1757 | you
1758 | young
1759 | your
1760 | yourself
1761 | youth
1762 |
--------------------------------------------------------------------------------
/examples/word_lists/GSL_EN_words.txt:
--------------------------------------------------------------------------------
1 | the
2 | and
3 | have
4 | that
5 | for
6 | they
7 | with
8 | not
9 | she
10 | this
11 | you
12 | but
13 | from
14 | which
15 | one
16 | would
17 | all
18 | will
19 | there
20 | say
21 | who
22 | make
23 | when
24 | can
25 | more
26 | man
27 | out
28 | other
29 | what
30 | time
31 | about
32 | than
33 | into
34 | could
35 | state
36 | only
37 | new
38 | year
39 | some
40 | take
41 | come
42 | these
43 | know
44 | see
45 | use
46 | get
47 | like
48 | then
49 | first
50 | any
51 | work
52 | now
53 | may
54 | such
55 | give
56 | over
57 | think
58 | most
59 | even
60 | find
61 | day
62 | also
63 | after
64 | way
65 | many
66 | must
67 | look
68 | before
69 | great
70 | back
71 | through
72 | long
73 | where
74 | much
75 | should
76 | well
77 | people
78 | down
79 | own
80 | just
81 | because
82 | good
83 | each
84 | those
85 | feel
86 | seem
87 | how
88 | high
89 | too
90 | place
91 | little
92 | world
93 | very
94 | still
95 | nation
96 | hand
97 | old
98 | life
99 | tell
100 | write
101 | become
102 | here
103 | show
104 | house
105 | both
106 | between
107 | need
108 | mean
109 | call
110 | develop
111 | under
112 | last
113 | right
114 | move
115 | thing
116 | general
117 | school
118 | never
119 | same
120 | another
121 | begin
122 | while
123 | number
124 | part
125 | turn
126 | real
127 | leave
128 | might
129 | want
130 | point
131 | form
132 | off
133 | child
134 | few
135 | small
136 | since
137 | against
138 | ask
139 | late
140 | home
141 | interest
142 | large
143 | person
144 | end
145 | open
146 | public
147 | follow
148 | during
149 | present
150 | without
151 | again
152 | hold
153 | govern
154 | around
155 | possible
156 | head
157 | consider
158 | word
159 | program
160 | problem
161 | however
162 | lead
163 | system
164 | set
165 | order
166 | eye
167 | plan
168 | run
169 | keep
170 | face
171 | fact
172 | group
173 | play
174 | stand
175 | increase
176 | early
177 | course
178 | change
179 | help
180 | line
181 | city
182 | put
183 | close
184 | case
185 | force
186 | meet
187 | once
188 | water
189 | upon
190 | war
191 | build
192 | hear
193 | light
194 | unite
195 | live
196 | every
197 | country
198 | bring
199 | center
200 | let
201 | side
202 | try
203 | provide
204 | continue
205 | name
206 | certain
207 | power
208 | pay
209 | result
210 | question
211 | study
212 | woman
213 | member
214 | until
215 | far
216 | night
217 | always
218 | service
219 | away
220 | report
221 | something
222 | company
223 | week
224 | church
225 | toward
226 | start
227 | social
228 | room
229 | figure
230 | nature
231 | though
232 | young
233 | less
234 | enough
235 | almost
236 | read
237 | include
238 | president
239 | nothing
240 | yet
241 | better
242 | big
243 | boy
244 | cost
245 | business
246 | value
247 | second
248 | why
249 | clear
250 | expect
251 | family
252 | complete
253 | act
254 | sense
255 | mind
256 | experience
257 | art
258 | next
259 | near
260 | direct
261 | car
262 | law
263 | industry
264 | important
265 | girl
266 | god
267 | several
268 | matter
269 | usual
270 | rather
271 | per
272 | often
273 | kind
274 | among
275 | white
276 | reason
277 | action
278 | return
279 | foot
280 | care
281 | simple
282 | within
283 | love
284 | human
285 | along
286 | appear
287 | doctor
288 | believe
289 | speak
290 | active
291 | student
292 | month
293 | drive
294 | concern
295 | best
296 | door
297 | hope
298 | example
299 | inform
300 | body
301 | ever
302 | least
303 | probable
304 | understand
305 | reach
306 | effect
307 | different
308 | idea
309 | whole
310 | control
311 | condition
312 | field
313 | pass
314 | fall
315 | note
316 | special
317 | talk
318 | particular
319 | today
320 | measure
321 | walk
322 | teach
323 | low
324 | hour
325 | type
326 | carry
327 | rate
328 | remain
329 | full
330 | street
331 | easy
332 | although
333 | record
334 | sit
335 | determine
336 | level
337 | local
338 | sure
339 | receive
340 | thus
341 | moment
342 | spirit
343 | train
344 | college
345 | religion
346 | perhaps
347 | music
348 | grow
349 | free
350 | cause
351 | serve
352 | age
353 | book
354 | board
355 | recent
356 | sound
357 | office
358 | cut
359 | step
360 | class
361 | true
362 | history
363 | position
364 | above
365 | strong
366 | friend
367 | necessary
368 | add
369 | court
370 | deal
371 | tax
372 | support
373 | party
374 | whether
375 | either
376 | land
377 | material
378 | happen
379 | education
380 | death
381 | agree
382 | arm
383 | mother
384 | across
385 | quite
386 | anything
387 | town
388 | past
389 | view
390 | society
391 | manage
392 | answer
393 | break
394 | organize
395 | half
396 | fire
397 | lose
398 | money
399 | stop
400 | actual
401 | already
402 | effort
403 | wait
404 | department
405 | able
406 | political
407 | learn
408 | voice
409 | air
410 | together
411 | shall
412 | cover
413 | common
414 | subject
415 | draw
416 | short
417 | wife
418 | treat
419 | limit
420 | road
421 | letter
422 | color
423 | behind
424 | produce
425 | send
426 | term
427 | total
428 | university
429 | rise
430 | century
431 | success
432 | minute
433 | remember
434 | purpose
435 | test
436 | fight
437 | watch
438 | situation
439 | south
440 | ago
441 | difference
442 | stage
443 | father
444 | table
445 | rest
446 | bear
447 | entire
448 | market
449 | prepare
450 | explain
451 | offer
452 | plant
453 | charge
454 | ground
455 | west
456 | picture
457 | hard
458 | front
459 | lie
460 | modern
461 | dark
462 | surface
463 | rule
464 | regard
465 | dance
466 | peace
467 | observe
468 | future
469 | wall
470 | farm
471 | claim
472 | firm
473 | operation
474 | further
475 | pressure
476 | property
477 | morning
478 | amount
479 | top
480 | outside
481 | piece
482 | sometimes
483 | beauty
484 | trade
485 | fear
486 | demand
487 | wonder
488 | list
489 | accept
490 | judge
491 | paint
492 | mile
493 | soon
494 | responsible
495 | allow
496 | secretary
497 | heart
498 | union
499 | slow
500 | island
501 | enter
502 | drink
503 | story
504 | experiment
505 | stay
506 | paper
507 | space
508 | apply
509 | decide
510 | share
511 | desire
512 | spend
513 | sign
514 | therefore
515 | various
516 | visit
517 | supply
518 | officer
519 | doubt
520 | private
521 | immediate
522 | wish
523 | contain
524 | feed
525 | raise
526 | describe
527 | ready
528 | horse
529 | son
530 | exist
531 | north
532 | suggest
533 | station
534 | effective
535 | food
536 | deep
537 | wide
538 | alone
539 | character
540 | english
541 | happy
542 | critic
543 | unit
544 | product
545 | respect
546 | drop
547 | nor
548 | fill
549 | cold
550 | represent
551 | sudden
552 | basic
553 | kill
554 | fine
555 | trouble
556 | mark
557 | single
558 | press
559 | heavy
560 | attempt
561 | origin
562 | standard
563 | everything
564 | committee
565 | moral
566 | black
567 | red
568 | bad
569 | earth
570 | accord
571 | else
572 | mere
573 | die
574 | remark
575 | basis
576 | except
577 | equal
578 | east
579 | event
580 | employ
581 | defense
582 | smile
583 | river
584 | improve
585 | game
586 | detail
587 | account
588 | cent
589 | sort
590 | reduce
591 | club
592 | buy
593 | attention
594 | ship
595 | decision
596 | wear
597 | inside
598 | win
599 | suppose
600 | ride
601 | operate
602 | realize
603 | sale
604 | choose
605 | park
606 | square
607 | vote
608 | price
609 | district
610 | dead
611 | foreign
612 | window
613 | beyond
614 | direction
615 | strike
616 | instead
617 | trial
618 | practice
619 | catch
620 | opportunity
621 | likely
622 | recognize
623 | permit
624 | serious
625 | attack
626 | floor
627 | association
628 | spring
629 | lot
630 | stock
631 | lack
632 | hair
633 | science
634 | relation
635 | profession
636 | pattern
637 | quick
638 | medical
639 | influence
640 | occasion
641 | machine
642 | compare
643 | husband
644 | blue
645 | fair
646 | especially
647 | indeed
648 | imagine
649 | surprise
650 | average
651 | official
652 | temperature
653 | difficult
654 | sing
655 | hit
656 | tree
657 | race
658 | police
659 | touch
660 | relative
661 | throw
662 | quality
663 | former
664 | pull
665 | chance
666 | prove
667 | argue
668 | settle
669 | growth
670 | date
671 | heat
672 | save
673 | performance
674 | count
675 | production
676 | listen
677 | main
678 | pick
679 | size
680 | cool
681 | army
682 | patient
683 | combine
684 | summer
685 | hall
686 | slight
687 | command
688 | enjoy
689 | length
690 | proper
691 | express
692 | health
693 | chief
694 | evening
695 | store
696 | language
697 | degree
698 | lay
699 | current
700 | gun
701 | dog
702 | hotel
703 | strange
704 | separate
705 | boat
706 | fail
707 | clean
708 | dress
709 | anyone
710 | gain
711 | pain
712 | object
713 | knowledge
714 | depend
715 | relate
716 | below
717 | dollar
718 | advance
719 | shape
720 | arrange
721 | population
722 | yes
723 | sell
724 | mention
725 | dry
726 | check
727 | poet
728 | sleep
729 | join
730 | hot
731 | bed
732 | electric
733 | dream
734 | due
735 | season
736 | manner
737 | fit
738 | left
739 | progress
740 | neither
741 | strength
742 | notice
743 | finish
744 | opinion
745 | bill
746 | western
747 | truth
748 | wrong
749 | travel
750 | suit
751 | bank
752 | exact
753 | honor
754 | brother
755 | quiet
756 | marry
757 | corner
758 | handle
759 | danger
760 | hospital
761 | pool
762 | promise
763 | blood
764 | shoot
765 | scene
766 | literature
767 | arrive
768 | film
769 | base
770 | freedom
771 | bar
772 | maybe
773 | hang
774 | suffer
775 | manufacture
776 | frequent
777 | rock
778 | loss
779 | burn
780 | sun
781 | audience
782 | essential
783 | glass
784 | prevent
785 | poem
786 | poor
787 | inch
788 | song
789 | skill
790 | post
791 | popular
792 | radio
793 | animal
794 | conscious
795 | worth
796 | eat
797 | election
798 | faith
799 | wave
800 | murder
801 | model
802 | forget
803 | extend
804 | edge
805 | distance
806 | memory
807 | recommend
808 | division
809 | staff
810 | leg
811 | discussion
812 | address
813 | fly
814 | dependent
815 | ball
816 | shake
817 | frame
818 | extreme
819 | engineer
820 | thick
821 | comfort
822 | latter
823 | camp
824 | oil
825 | discover
826 | examine
827 | difficulty
828 | tooth
829 | middle
830 | choice
831 | refer
832 | enemy
833 | practical
834 | marriage
835 | bridge
836 | declare
837 | lady
838 | cross
839 | daily
840 | afternoon
841 | attend
842 | director
843 | balance
844 | wash
845 | capital
846 | speed
847 | block
848 | citizen
849 | mouth
850 | hill
851 | green
852 | please
853 | motor
854 | agency
855 | encourage
856 | governor
857 | worry
858 | affair
859 | shoulder
860 | bright
861 | mass
862 | sample
863 | pretty
864 | repeat
865 | roll
866 | push
867 | trip
868 | council
869 | clothe
870 | parent
871 | forward
872 | sharp
873 | straight
874 | gas
875 | weight
876 | discuss
877 | fix
878 | load
879 | master
880 | whatever
881 | round
882 | rapid
883 | laugh
884 | finger
885 | spot
886 | propose
887 | shop
888 | broad
889 | replace
890 | reply
891 | extent
892 | lock
893 | employee
894 | ahead
895 | sight
896 | spread
897 | wind
898 | approve
899 | destroy
900 | none
901 | pound
902 | fame
903 | importance
904 | reflect
905 | advantage
906 | match
907 | regular
908 | wage
909 | refuse
910 | existence
911 | hardly
912 | perform
913 | title
914 | tend
915 | exercise
916 | thin
917 | coat
918 | bit
919 | mountain
920 | youth
921 | behavior
922 | newspaper
923 | secret
924 | ability
925 | sea
926 | soft
927 | justice
928 | reasonable
929 | circle
930 | solid
931 | page
932 | weapon
933 | fast
934 | search
935 | pure
936 | escape
937 | crowd
938 | stick
939 | telephone
940 | avoid
941 | garden
942 | favor
943 | news
944 | unless
945 | dinner
946 | someone
947 | signal
948 | yard
949 | ideal
950 | warm
951 | miss
952 | shelter
953 | soldier
954 | article
955 | cry
956 | captain
957 | familiar
958 | seat
959 | guest
960 | weak
961 | excite
962 | king
963 | everyone
964 | wine
965 | hole
966 | duty
967 | beat
968 | perfect
969 | bottom
970 | compose
971 | battle
972 | expense
973 | cattle
974 | flow
975 | kitchen
976 | dust
977 | bottle
978 | admit
979 | tear
980 | tire
981 | expression
982 | exception
983 | application
984 | belong
985 | rich
986 | failure
987 | struggle
988 | instrument
989 | variety
990 | narrow
991 | theater
992 | collection
993 | rain
994 | review
995 | preserve
996 | leadership
997 | clay
998 | daughter
999 | fellow
1000 | swing
1001 | thank
1002 | library
1003 | fat
1004 | reserve
1005 | tour
1006 | nice
1007 | warn
1008 | ring
1009 | bitter
1010 | chair
1011 | yesterday
1012 | scientific
1013 | flower
1014 | wheel
1015 | solution
1016 | aim
1017 | gather
1018 | invite
1019 | moreover
1020 | fresh
1021 | forest
1022 | winter
1023 | box
1024 | belief
1025 | ordinary
1026 | impossible
1027 | print
1028 | gray
1029 | taste
1030 | lip
1031 | speech
1032 | reference
1033 | stain
1034 | connection
1035 | otherwise
1036 | stretch
1037 | knife
1038 | village
1039 | blow
1040 | mistake
1041 | sweet
1042 | shout
1043 | divide
1044 | guard
1045 | worse
1046 | exchange
1047 | rare
1048 | commercial
1049 | request
1050 | appoint
1051 | agent
1052 | dependence
1053 | bird
1054 | wild
1055 | motion
1056 | guess
1057 | neighbor
1058 | seed
1059 | fashion
1060 | loan
1061 | correct
1062 | plain
1063 | mail
1064 | retire
1065 | opposite
1066 | prefer
1067 | safe
1068 | evil
1069 | double
1070 | wood
1071 | empty
1072 | baby
1073 | advise
1074 | content
1075 | sport
1076 | lift
1077 | literary
1078 | curious
1079 | tie
1080 | flat
1081 | message
1082 | neck
1083 | hate
1084 | dirt
1085 | delight
1086 | trust
1087 | nobody
1088 | valley
1089 | tool
1090 | presence
1091 | cook
1092 | railroad
1093 | minister
1094 | coffee
1095 | brush
1096 | beside
1097 | collect
1098 | guide
1099 | luck
1100 | profit
1101 | lord
1102 | everybody
1103 | prison
1104 | cloud
1105 | slave
1106 | chairman
1107 | soil
1108 | distinguish
1109 | introduce
1110 | urge
1111 | blind
1112 | arise
1113 | upper
1114 | curve
1115 | membership
1116 | key
1117 | entertain
1118 | soul
1119 | friendly
1120 | pair
1121 | stone
1122 | lean
1123 | protect
1124 | advertise
1125 | mystery
1126 | welcome
1127 | knee
1128 | jump
1129 | snake
1130 | stream
1131 | avenue
1132 | brown
1133 | disease
1134 | hat
1135 | excellent
1136 | formal
1137 | snow
1138 | sheet
1139 | somehow
1140 | unity
1141 | sky
1142 | rough
1143 | smooth
1144 | weather
1145 | steady
1146 | threaten
1147 | depth
1148 | oppose
1149 | deliver
1150 | ancient
1151 | pray
1152 | adopt
1153 | birth
1154 | appearance
1155 | universe
1156 | busy
1157 | hurry
1158 | coast
1159 | forth
1160 | smell
1161 | furnish
1162 | female
1163 | hide
1164 | wire
1165 | proposal
1166 | ought
1167 | victory
1168 | quarter
1169 | engine
1170 | customer
1171 | waste
1172 | fool
1173 | intend
1174 | intention
1175 | desk
1176 | politics
1177 | passage
1178 | lawyer
1179 | root
1180 | climb
1181 | metal
1182 | gradual
1183 | hunt
1184 | protection
1185 | satisfy
1186 | roof
1187 | branch
1188 | pleasure
1189 | witness
1190 | loose
1191 | nose
1192 | mine
1193 | band
1194 | aside
1195 | risk
1196 | tomorrow
1197 | remind
1198 | ear
1199 | fish
1200 | shore
1201 | operator
1202 | civilize
1203 | being
1204 | silent
1205 | screen
1206 | bind
1207 | earn
1208 | pack
1209 | colony
1210 | besides
1211 | slip
1212 | cousin
1213 | scale
1214 | relief
1215 | explore
1216 | stem
1217 | brain
1218 | musician
1219 | defend
1220 | bend
1221 | somebody
1222 | shadow
1223 | mix
1224 | smoke
1225 | description
1226 | fruit
1227 | guilt
1228 | yield
1229 | sensitive
1230 | salt
1231 | pale
1232 | sweep
1233 | completion
1234 | throat
1235 | agriculture
1236 | admire
1237 | gentle
1238 | dozen
1239 | particle
1240 | pleasant
1241 | bay
1242 | cup
1243 | competition
1244 | moon
1245 | terrible
1246 | strip
1247 | mechanic
1248 | shock
1249 | angle
1250 | tall
1251 | plenty
1252 | star
1253 | yellow
1254 | sick
1255 | thorough
1256 | absolute
1257 | succeed
1258 | surround
1259 | proud
1260 | dear
1261 | card
1262 | lake
1263 | breath
1264 | afraid
1265 | silence
1266 | onto
1267 | shoe
1268 | somewhere
1269 | chain
1270 | slide
1271 | copy
1272 | machinery
1273 | wake
1274 | severe
1275 | pocket
1276 | bone
1277 | honest
1278 | freeze
1279 | dictionary
1280 | calm
1281 | swim
1282 | ice
1283 | male
1284 | skin
1285 | crack
1286 | rush
1287 | wet
1288 | meat
1289 | commerce
1290 | joint
1291 | gift
1292 | host
1293 | suspect
1294 | path
1295 | uncle
1296 | afford
1297 | instant
1298 | height
1299 | track
1300 | confidence
1301 | grass
1302 | suggestion
1303 | favorite
1304 | breakfast
1305 | apart
1306 | chest
1307 | entrance
1308 | march
1309 | sink
1310 | northern
1311 | iron
1312 | alive
1313 | ill
1314 | bag
1315 | disturb
1316 | native
1317 | bedroom
1318 | violent
1319 | beneath
1320 | pause
1321 | tough
1322 | substance
1323 | threat
1324 | charm
1325 | absence
1326 | factory
1327 | spite
1328 | meal
1329 | universal
1330 | accident
1331 | highway
1332 | sentence
1333 | liberty
1334 | wise
1335 | noise
1336 | discovery
1337 | tube
1338 | flash
1339 | twist
1340 | fence
1341 | childhood
1342 | joy
1343 | sister
1344 | sad
1345 | efficiency
1346 | disappear
1347 | defeat
1348 | extensive
1349 | rent
1350 | comparison
1351 | possess
1352 | grace
1353 | flesh
1354 | liquid
1355 | scientist
1356 | ease
1357 | heaven
1358 | milk
1359 | sympathy
1360 | rank
1361 | restaurant
1362 | frequency
1363 | angry
1364 | shade
1365 | accuse
1366 | necessity
1367 | knock
1368 | loud
1369 | permanent
1370 | row
1371 | lovely
1372 | confuse
1373 | gold
1374 | frighten
1375 | solve
1376 | grave
1377 | salary
1378 | photograph
1379 | advice
1380 | abroad
1381 | wound
1382 | virtue
1383 | dare
1384 | queen
1385 | extra
1386 | attract
1387 | numerous
1388 | pink
1389 | gate
1390 | expensive
1391 | shut
1392 | chicken
1393 | forgive
1394 | holy
1395 | wooden
1396 | prompt
1397 | crime
1398 | sorry
1399 | republic
1400 | anger
1401 | visitor
1402 | pile
1403 | violence
1404 | steel
1405 | wing
1406 | stair
1407 | partner
1408 | delay
1409 | gentleman
1410 | pour
1411 | confusion
1412 | damage
1413 | kick
1414 | safety
1415 | burst
1416 | network
1417 | resistance
1418 | screw
1419 | pride
1420 | till
1421 | hire
1422 | verb
1423 | preach
1424 | clerk
1425 | everywhere
1426 | anyway
1427 | fan
1428 | connect
1429 | egg
1430 | efficient
1431 | grain
1432 | calculate
1433 | drag
1434 | opposition
1435 | worship
1436 | arrest
1437 | discipline
1438 | string
1439 | harbor
1440 | camera
1441 | mechanism
1442 | cow
1443 | grand
1444 | funny
1445 | insurance
1446 | reduction
1447 | strict
1448 | lesson
1449 | tight
1450 | sand
1451 | plate
1452 | qualify
1453 | elsewhere
1454 | mad
1455 | pupil
1456 | fold
1457 | royal
1458 | valuable
1459 | whisper
1460 | anybody
1461 | hurt
1462 | excess
1463 | quantity
1464 | fun
1465 | mud
1466 | extension
1467 | recognition
1468 | kiss
1469 | crop
1470 | sail
1471 | attractive
1472 | habit
1473 | relieve
1474 | wisdom
1475 | persuade
1476 | certainty
1477 | cloth
1478 | eager
1479 | deserve
1480 | sympathetic
1481 | cure
1482 | trap
1483 | puzzle
1484 | powder
1485 | raw
1486 | mankind
1487 | glad
1488 | blame
1489 | whenever
1490 | anxiety
1491 | bus
1492 | tremble
1493 | sacred
1494 | fortunate
1495 | glory
1496 | golden
1497 | neat
1498 | weekend
1499 | treasury
1500 | overcome
1501 | cat
1502 | sacrifice
1503 | complain
1504 | elect
1505 | roar
1506 | sake
1507 | temple
1508 | self
1509 | compete
1510 | nurse
1511 | stuff
1512 | stomach
1513 | peculiar
1514 | repair
1515 | storm
1516 | ton
1517 | desert
1518 | allowance
1519 | servant
1520 | hunger
1521 | conscience
1522 | bread
1523 | crash
1524 | tip
1525 | strengthen
1526 | proof
1527 | generous
1528 | sir
1529 | tonight
1530 | whip
1531 | tongue
1532 | mill
1533 | merchant
1534 | coal
1535 | ruin
1536 | courage
1537 | actor
1538 | belt
1539 | stir
1540 | package
1541 | punish
1542 | reflection
1543 | breathe
1544 | anywhere
1545 | amuse
1546 | dull
1547 | fate
1548 | net
1549 | fellowship
1550 | fault
1551 | furniture
1552 | beam
1553 | pencil
1554 | border
1555 | disappoint
1556 | flame
1557 | joke
1558 | bless
1559 | corn
1560 | shell
1561 | tempt
1562 | supper
1563 | destruction
1564 | dive
1565 | anxious
1566 | shine
1567 | cheap
1568 | dish
1569 | distant
1570 | greet
1571 | flood
1572 | excuse
1573 | insect
1574 | ocean
1575 | ceremony
1576 | decrease
1577 | prize
1578 | harm
1579 | insure
1580 | verse
1581 | pot
1582 | sincere
1583 | cotton
1584 | leaf
1585 | rub
1586 | medicine
1587 | stroke
1588 | bite
1589 | lung
1590 | lonely
1591 | admission
1592 | stupid
1593 | scratch
1594 | composition
1595 | broadcast
1596 | drum
1597 | resist
1598 | neglect
1599 | absent
1600 | passenger
1601 | adventure
1602 | beg
1603 | pipe
1604 | beard
1605 | bold
1606 | meanwhile
1607 | devil
1608 | cheer
1609 | nut
1610 | split
1611 | melt
1612 | swear
1613 | sugar
1614 | bury
1615 | wipe
1616 | faint
1617 | creature
1618 | tail
1619 | wealth
1620 | earnest
1621 | translate
1622 | suspicion
1623 | noble
1624 | inquiry
1625 | journey
1626 | hesitate
1627 | borrow
1628 | owe
1629 | funeral
1630 | ambition
1631 | mixture
1632 | slope
1633 | criminal
1634 | seldom
1635 | map
1636 | spin
1637 | praise
1638 | spare
1639 | plow
1640 | telegraph
1641 | barrel
1642 | straighten
1643 | scarce
1644 | lunch
1645 | slavery
1646 | creep
1647 | sweat
1648 | gay
1649 | stiff
1650 | brave
1651 | seize
1652 | convenient
1653 | horizon
1654 | moderate
1655 | complicate
1656 | dig
1657 | curse
1658 | weigh
1659 | priest
1660 | excessive
1661 | quarrel
1662 | widow
1663 | modest
1664 | dine
1665 | politician
1666 | custom
1667 | educate
1668 | salesman
1669 | nail
1670 | tap
1671 | eastern
1672 | possession
1673 | behave
1674 | mercy
1675 | scatter
1676 | objection
1677 | silver
1678 | tent
1679 | saddle
1680 | wrap
1681 | nest
1682 | grind
1683 | spell
1684 | plaster
1685 | arch
1686 | swell
1687 | friendship
1688 | bath
1689 | bundle
1690 | grateful
1691 | crown
1692 | boundary
1693 | nowhere
1694 | asleep
1695 | clock
1696 | boil
1697 | altogether
1698 | lend
1699 | holiday
1700 | precious
1701 | wander
1702 | ugly
1703 | reputation
1704 | ticket
1705 | pretend
1706 | dismiss
1707 | delicate
1708 | despair
1709 | awake
1710 | tea
1711 | FALSE
1712 | fortune
1713 | cap
1714 | thread
1715 | haste
1716 | bare
1717 | shirt
1718 | bargain
1719 | leather
1720 | rail
1721 | butter
1722 | dot
1723 | inquire
1724 | warmth
1725 | decisive
1726 | vessel
1727 | pity
1728 | steam
1729 | pin
1730 | bound
1731 | companion
1732 | toe
1733 | reward
1734 | forbid
1735 | wherever
1736 | tower
1737 | bathe
1738 | lodge
1739 | swallow
1740 | multiply
1741 | bow
1742 | kingdom
1743 | garage
1744 | permission
1745 | pump
1746 | prevention
1747 | urgent
1748 | aunt
1749 | zero
1750 | idle
1751 | fever
1752 | christmas
1753 | regret
1754 | jaw
1755 | soap
1756 | pronounce
1757 | empire
1758 | bowl
1759 | outline
1760 | organ
1761 | imitation
1762 | caution
1763 | mineral
1764 | disagree
1765 | blade
1766 | trick
1767 | treasure
1768 | immense
1769 | convenience
1770 | disapprove
1771 | destructive
1772 | fork
1773 | noon
1774 | ownership
1775 | tune
1776 | polish
1777 | poison
1778 | shame
1779 | loyalty
1780 | cottage
1781 | astonish
1782 | shave
1783 | feather
1784 | sauce
1785 | lid
1786 | debt
1787 | fade
1788 | confess
1789 | descend
1790 | cape
1791 | mild
1792 | clever
1793 | envelope
1794 | invention
1795 | sheep
1796 | splendid
1797 | stamp
1798 | float
1799 | brick
1800 | rice
1801 | businessman
1802 | backward
1803 | artificial
1804 | attraction
1805 | lamp
1806 | curl
1807 | shower
1808 | elder
1809 | bunch
1810 | bell
1811 | steer
1812 | flavor
1813 | spit
1814 | rob
1815 | cream
1816 | interrupt
1817 | pen
1818 | weave
1819 | orange
1820 | rescue
1821 | crush
1822 | humble
1823 | fancy
1824 | decay
1825 | polite
1826 | tribe
1827 | bleed
1828 | coin
1829 | fond
1830 | autumn
1831 | classify
1832 | omit
1833 | loyal
1834 | needle
1835 | lessen
1836 | complaint
1837 | pad
1838 | steep
1839 | skirt
1840 | curtain
1841 | calculation
1842 | laughter
1843 | solemn
1844 | grease
1845 | interfere
1846 | explode
1847 | fasten
1848 | flag
1849 | resign
1850 | postpone
1851 | patience
1852 | boast
1853 | rope
1854 | envy
1855 | airplane
1856 | rid
1857 | shield
1858 | veil
1859 | kneel
1860 | tray
1861 | explosive
1862 | brass
1863 | taxi
1864 | wax
1865 | duck
1866 | button
1867 | invent
1868 | remedy
1869 | bush
1870 | thunder
1871 | weaken
1872 | poverty
1873 | scrape
1874 | arrow
1875 | tender
1876 | cruel
1877 | soften
1878 | mouse
1879 | hay
1880 | anyhow
1881 | alike
1882 | circular
1883 | juice
1884 | shelf
1885 | bake
1886 | hatred
1887 | cautious
1888 | basket
1889 | wreck
1890 | width
1891 | confident
1892 | log
1893 | heap
1894 | suck
1895 | ladder
1896 | gap
1897 | obey
1898 | hut
1899 | axe
1900 | translation
1901 | collar
1902 | delivery
1903 | reproduce
1904 | confession
1905 | pan
1906 | prejudice
1907 | voyage
1908 | tobacco
1909 | simplicity
1910 | paste
1911 | cake
1912 | elephant
1913 | ribbon
1914 | harvest
1915 | ashamed
1916 | cave
1917 | customary
1918 | thief
1919 | damp
1920 | sew
1921 | rust
1922 | separation
1923 | waiter
1924 | pet
1925 | straw
1926 | upset
1927 | towel
1928 | refresh
1929 | essence
1930 | fur
1931 | ambitious
1932 | defendant
1933 | daylight
1934 | dip
1935 | suspicious
1936 | imaginary
1937 | ash
1938 | carriage
1939 | educator
1940 | saw
1941 | stove
1942 | rubber
1943 | rug
1944 | misery
1945 | awkward
1946 | rival
1947 | roast
1948 | deed
1949 | preference
1950 | explosion
1951 | theatrical
1952 | cultivate
1953 | collector
1954 | miserable
1955 | wrist
1956 | rabbit
1957 | accustom
1958 | tide
1959 | insult
1960 | thumb
1961 | lump
1962 | annoy
1963 | toy
1964 | heal
1965 | shallow
1966 | repetition
1967 | soup
1968 | whistle
1969 | scenery
1970 | apple
1971 | offense
1972 | cork
1973 | ripe
1974 | temper
1975 | sore
1976 | pinch
1977 | diamond
1978 | razor
1979 | imaginative
1980 | hook
1981 | copper
1982 | landlord
1983 | influential
1984 | rot
1985 | hollow
1986 | enclose
1987 | harden
1988 | wicked
1989 | stiffen
1990 | silk
1991 | upright
1992 | selfish
1993 | stripe
1994 | pig
1995 | inward
1996 | excellence
1997 | rake
1998 | purple
1999 | hasten
2000 | shorten
2001 | applause
2002 | ache
2003 | apology
2004 | knot
2005 | nephew
2006 | cushion
2007 | drown
2008 | nursery
2009 | pint
2010 | fierce
2011 | imitate
2012 | aloud
2013 | gaiety
2014 | robbery
2015 | tighten
2016 | perfection
2017 | scorn
2018 | whoever
2019 | trunk
2020 | wool
2021 | sailor
2022 | competitor
2023 | moonlight
2024 | deer
2025 | bean
2026 | everyday
2027 | drawer
2028 | disregard
2029 | nowadays
2030 | patriotic
2031 | tin
2032 | penny
2033 | cage
2034 | pardon
2035 | lately
2036 | offend
2037 | coarse
2038 | spoil
2039 | horizontal
2040 | sting
2041 | ditch
2042 | librarian
2043 | meantime
2044 | cough
2045 | deaf
2046 | sword
2047 | messenger
2048 | vain
2049 | castle
2050 | elastic
2051 | comb
2052 | rod
2053 | widen
2054 | sorrow
2055 | inventor
2056 | cliff
2057 | umbrella
2058 | merry
2059 | gallon
2060 | conquest
2061 | headache
2062 | tailor
2063 | bucket
2064 | scent
2065 | signature
2066 | cart
2067 | darken
2068 | sometime
2069 | applaud
2070 | underneath
2071 | hello
2072 | pretense
2073 | descent
2074 | conquer
2075 | framework
2076 | adoption
2077 | disgust
2078 | waist
2079 | momentary
2080 | receipt
2081 | pearl
2082 | ray
2083 | lazy
2084 | limb
2085 | grammatical
2086 | beast
2087 | monkey
2088 | jewel
2089 | persuasion
2090 | obedience
2091 | sock
2092 | vowel
2093 | hammer
2094 | inn
2095 | chimney
2096 | annoyance
2097 | ornament
2098 | honesty
2099 | outward
2100 | sharpen
2101 | greed
2102 | heavenly
2103 | thirst
2104 | niece
2105 | spill
2106 | loaf
2107 | wheat
2108 | worm
2109 | secrecy
2110 | rude
2111 | heighten
2112 | flatten
2113 | loosen
2114 | cheese
2115 | rivalry
2116 | royalty
2117 | discontent
2118 | fright
2119 | indoor
2120 | flour
2121 | actress
2122 | ounce
2123 | fry
2124 | everlasting
2125 | goat
2126 | ink
2127 | thicken
2128 | avoidance
2129 | spoon
2130 | strap
2131 | deceive
2132 | lengthen
2133 | revenge
2134 | correction
2135 | descendant
2136 | hesitation
2137 | spade
2138 | basin
2139 | weed
2140 | omission
2141 | bicycle
2142 | breadth
2143 | photography
2144 | coward
2145 | mat
2146 | rejoice
2147 | cheat
2148 | discomfort
2149 | enclosure
2150 | attentive
2151 | paw
2152 | overflow
2153 | dissatisfy
2154 | whichever
2155 | tidy
2156 | bribe
2157 | mend
2158 | stocking
2159 | feast
2160 | nuisance
2161 | thorn
2162 | tame
2163 | inclusive
2164 | homemade
2165 | handwriting
2166 | chalk
2167 | sour
2168 | slippery
2169 | procession
2170 | ripen
2171 | jealous
2172 | jealousy
2173 | liar
2174 | homecoming
2175 | barber
2176 | whiten
2177 | berry
2178 | lighten
2179 | pigeon
2180 | hinder
2181 | bravery
2182 | baggage
2183 | noun
2184 | amongst
2185 | grammar
2186 | cultivation
2187 | rubbish
2188 | modesty
2189 | woolen
2190 | deepen
2191 | pastry
2192 | cupboard
2193 | quart
2194 | canal
2195 | notebook
2196 | deceit
2197 | parcel
2198 | brighten
2199 | moderation
2200 | punctual
2201 | hurrah
2202 | lipstick
2203 | uppermost
2204 | fatten
2205 | conqueror
2206 | hindrance
2207 | cowardice
2208 | obedient
2209 | saucer
2210 | madden
2211 | scold
2212 | weekday
2213 | rotten
2214 | disrespect
2215 | widower
2216 | deafen
2217 | donkey
2218 | motherhood
2219 | sadden
2220 | handshake
2221 | calculator
2222 | headdress
2223 | scissors
2224 | translator
2225 | possessor
2226 | shilling
2227 | redden
2228 | motherly
2229 | whose
2230 | cultivator
2231 | whom
2232 | homework
2233 | electrician
2234 | oar
2235 | bribery
2236 | sweeten
2237 | sow
2238 | beak
2239 | plural
2240 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------