├── .gitignore ├── BUGS ├── LICENSE ├── README.rst ├── docs ├── Makefile ├── _static │ ├── TBX_termEntry_structure.png │ └── TBX_termEntry_structure.svg ├── _templates │ └── README.txt ├── conf.py ├── features.rst ├── index.rst ├── installation.rst ├── make.bat ├── tbx_conformance.rst └── users │ ├── getting_started.rst │ └── index.rst ├── project ├── __init__.py ├── locale │ ├── es │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── gl │ │ └── LC_MESSAGES │ │ │ └── django.po │ └── pt_BR │ │ └── LC_MESSAGES │ │ └── django.po ├── manage.py ├── settings.py ├── templates │ ├── 404.html │ ├── 500.html │ ├── admin │ │ ├── base_site.html │ │ └── guardian │ │ │ └── model │ │ │ └── obj_perms_manage.html │ ├── comments │ │ ├── form.html │ │ ├── list.html │ │ └── preview.html │ ├── profiles │ │ ├── profile_detail.html │ │ └── profile_list.html │ └── registration │ │ ├── activate.html │ │ ├── activation_complete.html │ │ ├── activation_email.txt │ │ ├── activation_email_subject.txt │ │ ├── login.html │ │ ├── logout.html │ │ ├── registration_complete.html │ │ └── registration_form.html ├── terminator │ ├── __init__.py │ ├── admin.py │ ├── feeds.py │ ├── fixtures │ │ ├── initial_data_POSTGRESQL.json │ │ └── test_data.json │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ ├── css │ │ │ └── style.css │ │ └── images │ │ │ ├── breadcrumbs_background.png │ │ │ ├── footer_background.png │ │ │ ├── header_background.png │ │ │ ├── icon_add_16.png │ │ │ ├── icon_admin_24.png │ │ │ ├── icon_alert_16.png │ │ │ ├── icon_autoterm_24.png │ │ │ ├── icon_autoterm_32.png │ │ │ ├── icon_comment_16.png │ │ │ ├── icon_comment_24.png │ │ │ ├── icon_comment_32.png │ │ │ ├── icon_concept_16.png │ │ │ ├── icon_concept_32.png │ │ │ ├── icon_context_sentence_16.png │ │ │ ├── icon_corpus_example_16.png │ │ │ ├── icon_definition_16.png │ │ │ ├── icon_delete_16.png │ │ │ ├── icon_edit_16.png │ │ │ ├── icon_error_16.png │ │ │ ├── icon_export_24.png │ │ │ ├── icon_export_32.png │ │ │ ├── icon_external_resource_16.png │ │ │ ├── icon_glossary_16.png │ │ │ ├── icon_glossary_24.png │ │ │ ├── icon_glossary_32.png │ │ │ ├── icon_help_24.png │ │ │ ├── icon_help_32.png │ │ │ ├── icon_home_16.png │ │ │ ├── icon_import_24.png │ │ │ ├── icon_import_32.png │ │ │ ├── icon_rss_24.png │ │ │ ├── icon_success_16.png │ │ │ ├── icon_tbx_16.png │ │ │ ├── icon_translation_16.png │ │ │ ├── icon_translation_32.png │ │ │ ├── icon_user_16.png │ │ │ ├── icon_user_24.png │ │ │ ├── icon_user_32.png │ │ │ ├── icon_view_16.png │ │ │ ├── svg │ │ │ ├── breadcrumbs_background.svg │ │ │ ├── footer_background.svg │ │ │ ├── header_background.svg │ │ │ ├── icon_add.svg │ │ │ ├── icon_admin.svg │ │ │ ├── icon_alert.svg │ │ │ ├── icon_autoterm.svg │ │ │ ├── icon_comment.svg │ │ │ ├── icon_concept.svg │ │ │ ├── icon_context_sentence.svg │ │ │ ├── icon_corpus_example.svg │ │ │ ├── icon_definition.svg │ │ │ ├── icon_edit.svg │ │ │ ├── icon_edit2.svg │ │ │ ├── icon_error.svg │ │ │ ├── icon_export.svg │ │ │ ├── icon_external_resource.svg │ │ │ ├── icon_glossary.svg │ │ │ ├── icon_help.svg │ │ │ ├── icon_history.svg │ │ │ ├── icon_home.svg │ │ │ ├── icon_import.svg │ │ │ ├── icon_pdf.svg │ │ │ ├── icon_remove.svg │ │ │ ├── icon_rss.svg │ │ │ ├── icon_search.svg │ │ │ ├── icon_stop.svg │ │ │ ├── icon_success.svg │ │ │ ├── icon_tbx.svg │ │ │ ├── icon_translation.svg │ │ │ ├── icon_translation_old.svg │ │ │ ├── icon_user.svg │ │ │ ├── icon_user_old.svg │ │ │ └── terminator_logo.svg │ │ │ └── terminator_logo.png │ ├── templates │ │ ├── advanced_search.html │ │ ├── autoterm.html │ │ ├── base.html │ │ ├── base_search.html │ │ ├── export.html │ │ ├── export.tbx │ │ ├── glossary_collaboration_request_form_snippet.html │ │ ├── glossary_subscribe_form_snippet.html │ │ ├── help.html │ │ ├── import.html │ │ ├── index.html │ │ ├── search.html │ │ ├── search_form_snippet.html │ │ ├── search_results_snippet.html │ │ └── terminator │ │ │ ├── comments_snippet.html │ │ │ ├── concept_detail.html │ │ │ ├── definitions_snippet.html │ │ │ ├── external_resources_snippet.html │ │ │ ├── glossary_detail.html │ │ │ ├── glossary_list.html │ │ │ ├── proposal_detail.html │ │ │ ├── proposal_list.html │ │ │ ├── summary_message_snippet.html │ │ │ └── translations_snippet.html │ ├── tests │ │ ├── __init__.py │ │ ├── empty.tbx │ │ ├── most.tbx │ │ ├── small.tbx │ │ ├── test_coverage.py │ │ └── test_initial.py │ ├── urls.py │ └── views.py ├── terminator_comments_app │ ├── __init__.py │ ├── admin.py │ ├── feeds.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ └── tests.py ├── test_settings.py ├── urls.py └── wsgi.py └── requirements ├── base.txt └── build.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/.gitignore -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/BUGS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/TBX_termEntry_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/docs/_static/TBX_termEntry_structure.png -------------------------------------------------------------------------------- /docs/_static/TBX_termEntry_structure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/docs/_static/TBX_termEntry_structure.svg -------------------------------------------------------------------------------- /docs/_templates/README.txt: -------------------------------------------------------------------------------- 1 | In this directory go the templates. 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/docs/features.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/tbx_conformance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/docs/tbx_conformance.rst -------------------------------------------------------------------------------- /docs/users/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/docs/users/getting_started.rst -------------------------------------------------------------------------------- /docs/users/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/docs/users/index.rst -------------------------------------------------------------------------------- /project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/__init__.py -------------------------------------------------------------------------------- /project/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /project/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /project/locale/gl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/locale/gl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /project/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/manage.py -------------------------------------------------------------------------------- /project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/settings.py -------------------------------------------------------------------------------- /project/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/templates/404.html -------------------------------------------------------------------------------- /project/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/templates/500.html -------------------------------------------------------------------------------- /project/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/templates/admin/base_site.html -------------------------------------------------------------------------------- /project/templates/admin/guardian/model/obj_perms_manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/templates/admin/guardian/model/obj_perms_manage.html -------------------------------------------------------------------------------- /project/templates/comments/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/templates/comments/form.html -------------------------------------------------------------------------------- /project/templates/comments/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/templates/comments/list.html -------------------------------------------------------------------------------- /project/templates/comments/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/templates/comments/preview.html -------------------------------------------------------------------------------- /project/templates/profiles/profile_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/templates/profiles/profile_detail.html -------------------------------------------------------------------------------- /project/templates/profiles/profile_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/templates/profiles/profile_list.html -------------------------------------------------------------------------------- /project/templates/registration/activate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/templates/registration/activate.html -------------------------------------------------------------------------------- /project/templates/registration/activation_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/templates/registration/activation_complete.html -------------------------------------------------------------------------------- /project/templates/registration/activation_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/templates/registration/activation_email.txt -------------------------------------------------------------------------------- /project/templates/registration/activation_email_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/templates/registration/activation_email_subject.txt -------------------------------------------------------------------------------- /project/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/templates/registration/login.html -------------------------------------------------------------------------------- /project/templates/registration/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/templates/registration/logout.html -------------------------------------------------------------------------------- /project/templates/registration/registration_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/templates/registration/registration_complete.html -------------------------------------------------------------------------------- /project/templates/registration/registration_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/templates/registration/registration_form.html -------------------------------------------------------------------------------- /project/terminator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/__init__.py -------------------------------------------------------------------------------- /project/terminator/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/admin.py -------------------------------------------------------------------------------- /project/terminator/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/feeds.py -------------------------------------------------------------------------------- /project/terminator/fixtures/initial_data_POSTGRESQL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/fixtures/initial_data_POSTGRESQL.json -------------------------------------------------------------------------------- /project/terminator/fixtures/test_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/fixtures/test_data.json -------------------------------------------------------------------------------- /project/terminator/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/forms.py -------------------------------------------------------------------------------- /project/terminator/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/migrations/0001_initial.py -------------------------------------------------------------------------------- /project/terminator/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/terminator/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/models.py -------------------------------------------------------------------------------- /project/terminator/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/css/style.css -------------------------------------------------------------------------------- /project/terminator/static/images/breadcrumbs_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/breadcrumbs_background.png -------------------------------------------------------------------------------- /project/terminator/static/images/footer_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/footer_background.png -------------------------------------------------------------------------------- /project/terminator/static/images/header_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/header_background.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_add_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_add_16.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_admin_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_admin_24.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_alert_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_alert_16.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_autoterm_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_autoterm_24.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_autoterm_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_autoterm_32.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_comment_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_comment_16.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_comment_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_comment_24.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_comment_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_comment_32.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_concept_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_concept_16.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_concept_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_concept_32.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_context_sentence_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_context_sentence_16.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_corpus_example_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_corpus_example_16.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_definition_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_definition_16.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_delete_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_delete_16.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_edit_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_edit_16.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_error_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_error_16.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_export_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_export_24.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_export_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_export_32.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_external_resource_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_external_resource_16.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_glossary_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_glossary_16.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_glossary_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_glossary_24.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_glossary_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_glossary_32.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_help_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_help_24.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_help_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_help_32.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_home_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_home_16.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_import_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_import_24.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_import_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_import_32.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_rss_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_rss_24.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_success_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_success_16.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_tbx_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_tbx_16.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_translation_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_translation_16.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_translation_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_translation_32.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_user_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_user_16.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_user_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_user_24.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_user_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_user_32.png -------------------------------------------------------------------------------- /project/terminator/static/images/icon_view_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/icon_view_16.png -------------------------------------------------------------------------------- /project/terminator/static/images/svg/breadcrumbs_background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/breadcrumbs_background.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/footer_background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/footer_background.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/header_background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/header_background.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_add.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_admin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_admin.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_alert.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_autoterm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_autoterm.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_comment.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_concept.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_concept.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_context_sentence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_context_sentence.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_corpus_example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_corpus_example.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_definition.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_definition.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_edit.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_edit2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_edit2.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_error.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_export.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_external_resource.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_external_resource.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_glossary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_glossary.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_help.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_history.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_home.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_import.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_pdf.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_remove.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_rss.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_search.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_stop.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_success.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_tbx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_tbx.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_translation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_translation.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_translation_old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_translation_old.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_user.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/icon_user_old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/icon_user_old.svg -------------------------------------------------------------------------------- /project/terminator/static/images/svg/terminator_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/svg/terminator_logo.svg -------------------------------------------------------------------------------- /project/terminator/static/images/terminator_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/static/images/terminator_logo.png -------------------------------------------------------------------------------- /project/terminator/templates/advanced_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/advanced_search.html -------------------------------------------------------------------------------- /project/terminator/templates/autoterm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/autoterm.html -------------------------------------------------------------------------------- /project/terminator/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/base.html -------------------------------------------------------------------------------- /project/terminator/templates/base_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/base_search.html -------------------------------------------------------------------------------- /project/terminator/templates/export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/export.html -------------------------------------------------------------------------------- /project/terminator/templates/export.tbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/export.tbx -------------------------------------------------------------------------------- /project/terminator/templates/glossary_collaboration_request_form_snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/glossary_collaboration_request_form_snippet.html -------------------------------------------------------------------------------- /project/terminator/templates/glossary_subscribe_form_snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/glossary_subscribe_form_snippet.html -------------------------------------------------------------------------------- /project/terminator/templates/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/help.html -------------------------------------------------------------------------------- /project/terminator/templates/import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/import.html -------------------------------------------------------------------------------- /project/terminator/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/index.html -------------------------------------------------------------------------------- /project/terminator/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/search.html -------------------------------------------------------------------------------- /project/terminator/templates/search_form_snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/search_form_snippet.html -------------------------------------------------------------------------------- /project/terminator/templates/search_results_snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/search_results_snippet.html -------------------------------------------------------------------------------- /project/terminator/templates/terminator/comments_snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/terminator/comments_snippet.html -------------------------------------------------------------------------------- /project/terminator/templates/terminator/concept_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/terminator/concept_detail.html -------------------------------------------------------------------------------- /project/terminator/templates/terminator/definitions_snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/terminator/definitions_snippet.html -------------------------------------------------------------------------------- /project/terminator/templates/terminator/external_resources_snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/terminator/external_resources_snippet.html -------------------------------------------------------------------------------- /project/terminator/templates/terminator/glossary_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/terminator/glossary_detail.html -------------------------------------------------------------------------------- /project/terminator/templates/terminator/glossary_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/terminator/glossary_list.html -------------------------------------------------------------------------------- /project/terminator/templates/terminator/proposal_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/terminator/proposal_detail.html -------------------------------------------------------------------------------- /project/terminator/templates/terminator/proposal_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/terminator/proposal_list.html -------------------------------------------------------------------------------- /project/terminator/templates/terminator/summary_message_snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/terminator/summary_message_snippet.html -------------------------------------------------------------------------------- /project/terminator/templates/terminator/translations_snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/templates/terminator/translations_snippet.html -------------------------------------------------------------------------------- /project/terminator/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/tests/__init__.py -------------------------------------------------------------------------------- /project/terminator/tests/empty.tbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/tests/empty.tbx -------------------------------------------------------------------------------- /project/terminator/tests/most.tbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/tests/most.tbx -------------------------------------------------------------------------------- /project/terminator/tests/small.tbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/tests/small.tbx -------------------------------------------------------------------------------- /project/terminator/tests/test_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/tests/test_coverage.py -------------------------------------------------------------------------------- /project/terminator/tests/test_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/tests/test_initial.py -------------------------------------------------------------------------------- /project/terminator/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/urls.py -------------------------------------------------------------------------------- /project/terminator/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator/views.py -------------------------------------------------------------------------------- /project/terminator_comments_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator_comments_app/__init__.py -------------------------------------------------------------------------------- /project/terminator_comments_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator_comments_app/admin.py -------------------------------------------------------------------------------- /project/terminator_comments_app/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator_comments_app/feeds.py -------------------------------------------------------------------------------- /project/terminator_comments_app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator_comments_app/forms.py -------------------------------------------------------------------------------- /project/terminator_comments_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator_comments_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /project/terminator_comments_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/terminator_comments_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator_comments_app/models.py -------------------------------------------------------------------------------- /project/terminator_comments_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/terminator_comments_app/tests.py -------------------------------------------------------------------------------- /project/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/test_settings.py -------------------------------------------------------------------------------- /project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/urls.py -------------------------------------------------------------------------------- /project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/project/wsgi.py -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/translate/terminator/HEAD/requirements/base.txt -------------------------------------------------------------------------------- /requirements/build.txt: -------------------------------------------------------------------------------- 1 | -r base.txt 2 | 3 | sphinx 4 | --------------------------------------------------------------------------------