├── .github └── workflows │ └── packagist.yml ├── .gitignore ├── .gitmodules ├── .htaccess ├── CHANGES.txt ├── LICENSE.txt ├── README.md ├── README.txt ├── Web.config ├── bin ├── create-site.php ├── install.sh ├── setup.sh ├── tarball-site.php ├── update-site.php └── update.php ├── composer.json ├── composer.lock ├── configure.env ├── docs ├── buildhtml.sh ├── images │ ├── c04.translation_memories.details.png │ ├── ch01.actions-button-icon.png │ ├── ch01.capture-strings-1.png │ ├── ch01.changepass.png │ ├── ch01.check-strings.png │ ├── ch01.dashboard-website-edit.png │ ├── ch01.dashboard-websites.png │ ├── ch01.dashboard1.png │ ├── ch01.google-translate-progress.png │ ├── ch01.menu-icon.png │ ├── ch01.newsiteform-filled.png │ ├── ch01.newsiteform.png │ ├── ch01.site-actions-menu.png │ ├── ch01.site-edit-more-details-expanded.png │ ├── ch01.site-edit-more-details.png │ ├── ch01.strings-list.png │ ├── ch01.translation-form.png │ ├── ch01.usermenu.changepass.png │ ├── ch01.wikipedia-proxy.png │ ├── ch01.wikipedia-semi-translated.png │ ├── ch02.date_locale_fields.png │ ├── ch02.filter-details.png │ ├── ch02.site-menu.png │ ├── ch02.text-filters.png │ ├── ch04-export-xliff.png │ ├── ch04-import-form.png │ ├── ch04-import-translations-button.png │ ├── ch04-keyword-search.png │ ├── ch04-strings-header-row.png │ ├── ch04-strings-search-fields.png │ ├── ch04-top-menubar.png │ ├── ch04.csv-export.png │ ├── ch04.export-csv-menu.png │ ├── ch04.log_translation_misses.png │ ├── ch04.translation_memories.png │ ├── ch04.translation_memories.translations.png │ ├── ch04.translation_miss_log.png │ └── webservice-secret-key-field.png ├── index.html ├── introduction.adoc ├── phparch_article │ ├── bio.markdown │ ├── figures │ │ ├── figure1.png │ │ ├── figure10.png │ │ ├── figure11.png │ │ ├── figure12.png │ │ ├── figure13.png │ │ ├── figure2.png │ │ ├── figure3.png │ │ ├── figure4.png │ │ ├── figure5.png │ │ ├── figure6.png │ │ ├── figure7.png │ │ ├── figure8.png │ │ └── figure9.png │ ├── notes.txt │ ├── page.markdown │ └── requirements.markdown ├── preprocessing_content.adoc ├── rest_api.adoc ├── samples │ └── translation_miss_log_results_2013_07_05_00_11_28.csv ├── swete-manual.adoc ├── swete-manual.html ├── swete-manual.pdf ├── translation_management.adoc └── translation_parser.adoc ├── nbproject ├── project.properties └── project.xml └── swete-admin ├── .htaccess ├── actions.ini.php ├── actions ├── batch_google_translate.php ├── dashboard.php ├── dashboard_site_stats.php ├── refresh_page_snapshot.php ├── set_capture_strings_cookie.php ├── set_current_snapshot.php ├── swete_add_selected_strings_to_job.php ├── swete_add_selected_webpages_to_job.php ├── swete_add_string_to_blacklist.php ├── swete_add_string_to_job.php ├── swete_add_webpage_to_job.php ├── swete_approve_job.php ├── swete_approve_pages.php ├── swete_assign_job.php ├── swete_background_process_info.php ├── swete_background_processes.php ├── swete_capture_strings.php ├── swete_clear_cache.php ├── swete_compile_job.php ├── swete_export_found_strings_as_xliff.php ├── swete_get_jobs_for_site.php ├── swete_get_website_from_record.php ├── swete_handle_request.php ├── swete_import_translations.php ├── swete_import_webpages.php ├── swete_job_serve_content.php ├── swete_job_statistics.php ├── swete_job_users.php ├── swete_message_add.php ├── swete_message_delete.php ├── swete_message_details.php ├── swete_message_read.php ├── swete_messages.php ├── swete_preview_job_page.php ├── swete_remove_webpage_from_job.php ├── swete_review_translations.php ├── swete_tool_bar.php ├── swete_translate_page.php ├── swete_whitelist.php └── word_count_by_page.php ├── backups └── .htaccess ├── changes.txt ├── conf.db.ini.sample ├── conf.ini.php ├── conf ├── ApplicationDelegate.php ├── Installer.php └── tables │ └── xf_tm_translation_memories │ └── xf_tm_translation_memories.php ├── css └── swete │ ├── BackgroundProcess.css │ ├── UncompiledJobs.css │ ├── actions │ ├── dashboard.css │ ├── images │ │ ├── gear-icon.png │ │ ├── info.png │ │ ├── swete-logo-600px.png │ │ └── warning.png │ ├── import_translations.css │ ├── import_webpages.css │ └── review_translations.css │ ├── forms │ └── jobs │ │ ├── notes.css │ │ └── webpages.css │ ├── global.css │ └── images │ ├── progress.gif │ └── swete-logo-50px.png ├── doc.prepare.php ├── doc ├── Doxyfile ├── debug.txt └── mainpage.php ├── images └── swete-logo.png ├── inc ├── BackgroundProcess.php ├── BackgroundProcess │ ├── RefreshSite.php │ ├── UpdateChangedPages.php │ └── UpdateEffectiveActive.php ├── BranchProcessor.php ├── CSVStringImporter.php ├── ExcelStringImporter.php ├── LiveCache.php ├── MailTools.php ├── PageImporter.php ├── PageProcessor.php ├── ProxyClient.php ├── ProxyServer.php ├── ProxyWriter.php ├── ProxyWriter.simpledom.php ├── SiteCrawler.php ├── SweteDb.class.php ├── SweteJob.class.php ├── SweteJobInbox.class.php ├── SweteJobInboxPresentation.php ├── SweteJobPageSucker.php ├── SweteLiveWebpagesPresentation.php ├── SweteRequestLogger.php ├── SweteSite.class.php ├── SweteTools.php ├── SweteWebpage.class.php ├── SweteWebpagesPresentation.php ├── TranslationMemoryAdapter.php ├── WebLite_Translate.class.php ├── WebLite_Translate.simplehtmldom.class.php └── WebLite_Translate_v2.class.php ├── include └── functions.inc.php ├── index.php ├── install ├── dependencies.txt └── permissions.txt ├── js └── swete │ ├── BackgroundProcess.js │ ├── JobApprover.js │ ├── JobAssigner.js │ ├── JobCompiler.js │ ├── PageApprover.js │ ├── PageApprover │ └── dialog.html │ ├── PageImporter.js │ ├── SiteCrawler.js │ ├── Website.js │ ├── Website │ ├── load.js │ └── toggleCaptureStrings.js │ ├── actions │ ├── add_selected_strings_to_job.js │ ├── add_selected_webpages_to_job.js │ ├── approve_job.js │ ├── approve_pages.js │ ├── assign_job.js │ ├── batch_google_translate.js │ ├── capture_strings.js │ ├── compile_job.js │ ├── dashboard.js │ ├── import_translations.js │ ├── import_webpages.js │ ├── import_webpages │ │ └── no_settings_id.js │ ├── refresh_page_snapshot.js │ ├── set_current_snapshot.js │ └── swete_tool_bar.js │ ├── global.js │ ├── select.to.autocomplete.js │ ├── tables │ ├── jobs │ │ ├── livewebpages.js │ │ ├── notes.js │ │ └── webpages.js │ └── webpages │ │ └── list.js │ └── ui │ ├── filter_translations.js │ └── treetable.js ├── lang └── en.ini ├── lib ├── HTML5.php ├── HTML5 │ ├── Elements.php │ ├── Entities.php │ ├── Exception.php │ ├── InstructionProcessor.php │ ├── Parser │ │ ├── CharacterReference.php │ │ ├── DOMTreeBuilder.php │ │ ├── EventHandler.php │ │ ├── FileInputStream.php │ │ ├── InputStream.php │ │ ├── ParseError.php │ │ ├── README.md │ │ ├── Scanner.php │ │ ├── StringInputStream.php │ │ ├── Tokenizer.php │ │ ├── TreeBuildingRules.php │ │ └── UTF8Utils.php │ └── Serializer │ │ ├── HTML5Entities.php │ │ ├── OutputRules.php │ │ ├── README.md │ │ ├── RulesInterface.php │ │ └── Traverser.php ├── JSLikeHTMLElement.php ├── http_build_url.php └── simple_html_dom.php ├── livecache └── .htaccess ├── modules └── tm │ ├── README.md │ ├── actions.ini.php │ ├── actions │ ├── tm_add_translations.php │ ├── tm_export_as_xliff.php │ ├── tm_find_similar_translations.php │ ├── tm_flag_translation.php │ ├── tm_fuzzy_matches.php │ ├── tm_get_strings.php │ ├── tm_import_from_xliff.php │ ├── tm_save_field.php │ ├── tm_update_word_index.php │ ├── tm_validate_xliff.php │ └── translate.php │ ├── css │ └── xataface │ │ └── modules │ │ └── tm │ │ ├── images │ │ └── tick.png │ │ └── translate.css │ ├── doc │ ├── Doxyfile │ ├── first_translation.php │ ├── mainpage.php │ ├── overview.php │ ├── permissions.php │ ├── roadmap.php │ └── troubleshooting.php │ ├── installer.php │ ├── js │ └── xataface │ │ └── modules │ │ └── tm │ │ ├── string_parser.js │ │ ├── tests │ │ └── test_string_parser.js │ │ ├── translate.js │ │ ├── translation_form.js │ │ ├── translation_memory.js │ │ ├── translation_memory_flag.js │ │ └── validate_xliff.js │ ├── lib │ ├── TMTools.php │ ├── TranslationStringParser.php │ ├── TranslationStringTagger.php │ ├── XFTranslationDictionary.php │ ├── XFTranslationMemory.php │ ├── XFTranslationMemoryReader.php │ ├── XLIFFDocument.php │ ├── XLIFFListener.php │ ├── XLIFFReader.php │ ├── XLIFFWriter.php │ ├── googleTranslatePlugin.php │ ├── googleTranslatePluginTester.php │ ├── kevin_TranslationStringTaggerTester.php │ ├── kevin_XLIFFDocumentTester.php │ ├── kevin_XLIFFReaderTester.php │ ├── kevin_XLIFFtester.php │ ├── test.xliff │ └── xliff-core-1.2-strict.xsd │ ├── permissions.ini.php │ ├── tables │ ├── _tmp_xf_tm_fuzzy_matches │ │ ├── _tmp_xf_tm_fuzzy_matches.php │ │ └── fields.ini.php │ ├── xf_tm_record_strings │ │ ├── fields.ini.php │ │ └── xf_tm_record_strings.php │ ├── xf_tm_records │ │ └── fields.ini.php │ ├── xf_tm_strings │ │ └── fields.ini.php │ ├── xf_tm_translation_memories │ │ ├── relationships.ini.php │ │ └── xf_tm_translation_memories.php │ ├── xf_tm_translations │ │ └── fields.ini.php │ └── xf_tm_translations_status │ │ └── fields.ini.php │ ├── templates │ ├── modules │ │ └── tm │ │ │ └── tm_fuzzy_matches.html │ ├── tm_import_from_xliff.html │ └── xataface │ │ └── modules │ │ └── tm │ │ ├── translate.html │ │ ├── translate_nowrapper.html │ │ ├── translation_form.html │ │ └── validate_xliff.html │ ├── tests │ └── test_XFTranslationMemory.php │ ├── tm.php │ └── version.txt ├── permissions.ini.php ├── readme.txt ├── router.php ├── tables ├── dashboard │ └── dashboard.php ├── directory_profiles │ └── directory_profiles.php ├── job_inputs_webpages │ └── fields.ini.php ├── job_notes │ └── job_notes.php ├── job_roles │ └── fields.ini.php ├── job_translatable │ └── job_translatable.php ├── jobs │ ├── fields.ini.php │ ├── jobs.php │ ├── relationships.ini.php │ └── valuelists.ini.php ├── languages │ ├── fields.ini.php │ └── languages.php ├── page_refresh_jobs │ └── relationships.ini ├── path_aliases │ ├── fields.ini │ └── path_aliases.php ├── site_text_filters │ └── fields.ini.php ├── snapshots │ ├── fields.ini.php │ └── snapshots.php ├── string_imports │ ├── fields.ini.php │ ├── string_imports.php │ └── valuelists.ini.php ├── swete_strings │ ├── fields.ini.php │ ├── swete_strings.php │ └── valuelists.ini.php ├── text_filters │ └── fields.ini.php ├── translation_miss_log │ ├── fields.ini.php │ ├── translation_miss_log.php │ └── valuelists.ini.php ├── users │ ├── fields.ini.php │ ├── relationships.ini.php │ └── valuelists.ini.php ├── webpage_properties │ ├── fields.ini.php │ └── webpage_properties.php ├── webpage_status │ └── webpage_status.php ├── webpages │ ├── fields.ini.php │ ├── relationships.ini.php │ ├── valuelists.ini.php │ └── webpages.php ├── website_copy_form │ ├── fields.ini.php │ ├── valuelists.ini.php │ └── website_copy_form.php └── websites │ ├── fields.ini.php │ ├── relationships.ini.php │ └── websites.php ├── templates └── swete │ ├── actions │ ├── capture_strings.html │ ├── dashboard.html │ ├── dashboard_site_stats.html │ ├── import_translations.html │ ├── import_webpages.html │ ├── import_webpages │ │ ├── no_settings_found.html │ │ ├── no_settings_id.html │ │ └── settings_site_not_found.html │ ├── review_translations.html │ ├── review_translations_dlg.html │ └── toolbar_wrapper.html │ └── translations.html ├── tests ├── test_BackgroundProcess.php ├── test_LiveCache │ └── test1.php ├── test_ProxyClient.php ├── test_ProxyClient │ ├── test1.html │ └── test1.out.html ├── test_ProxyServer.php ├── test_ProxyWriter.php ├── test_SiteCrawler.php ├── test_SweteJob.php ├── test_SweteTools.php ├── test_Translator.php ├── test_swetewebpage.php ├── testsites │ ├── site1 │ │ └── index.html │ ├── site1_output │ │ ├── index.html │ │ └── index.out.html │ ├── site2 │ │ ├── contact.html │ │ ├── images │ │ │ ├── bottom-left.png │ │ │ ├── bottom-right.png │ │ │ ├── gradient1.jpg │ │ │ ├── gradient1.png │ │ │ ├── gradient2.jpg │ │ │ ├── gradient2.png │ │ │ ├── how-it-works.png │ │ │ ├── mural1.jpg │ │ │ ├── mural1.png │ │ │ ├── powered-by-btn.png │ │ │ ├── powered-by-btn.src.png │ │ │ ├── swete-logo.png │ │ │ ├── technologies.jpg │ │ │ ├── top-left.png │ │ │ ├── top-right.png │ │ │ ├── weblite-logo-small.png │ │ │ └── weblite-logo.png │ │ ├── index.css │ │ ├── index.html │ │ ├── products.html │ │ └── style.css │ ├── site3 │ │ ├── index.extracted.html │ │ ├── index.html │ │ └── index.strings.json │ └── site4 │ │ ├── index.extracted.html │ │ ├── index.html │ │ ├── index.strings.json │ │ └── test-delimiters.html └── webservice_client_example.php ├── tools ├── .htaccess └── backup_db.php ├── valuelists.ini.php ├── version.txt └── xataface.version.txt /.github/workflows/packagist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/.github/workflows/packagist.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/.gitmodules -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/.htaccess -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/README.txt -------------------------------------------------------------------------------- /Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/Web.config -------------------------------------------------------------------------------- /bin/create-site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/bin/create-site.php -------------------------------------------------------------------------------- /bin/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/bin/install.sh -------------------------------------------------------------------------------- /bin/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/bin/setup.sh -------------------------------------------------------------------------------- /bin/tarball-site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/bin/tarball-site.php -------------------------------------------------------------------------------- /bin/update-site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/bin/update-site.php -------------------------------------------------------------------------------- /bin/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/bin/update.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/composer.lock -------------------------------------------------------------------------------- /configure.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/configure.env -------------------------------------------------------------------------------- /docs/buildhtml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/buildhtml.sh -------------------------------------------------------------------------------- /docs/images/c04.translation_memories.details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/c04.translation_memories.details.png -------------------------------------------------------------------------------- /docs/images/ch01.actions-button-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch01.actions-button-icon.png -------------------------------------------------------------------------------- /docs/images/ch01.capture-strings-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch01.capture-strings-1.png -------------------------------------------------------------------------------- /docs/images/ch01.changepass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch01.changepass.png -------------------------------------------------------------------------------- /docs/images/ch01.check-strings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch01.check-strings.png -------------------------------------------------------------------------------- /docs/images/ch01.dashboard-website-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch01.dashboard-website-edit.png -------------------------------------------------------------------------------- /docs/images/ch01.dashboard-websites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch01.dashboard-websites.png -------------------------------------------------------------------------------- /docs/images/ch01.dashboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch01.dashboard1.png -------------------------------------------------------------------------------- /docs/images/ch01.google-translate-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch01.google-translate-progress.png -------------------------------------------------------------------------------- /docs/images/ch01.menu-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch01.menu-icon.png -------------------------------------------------------------------------------- /docs/images/ch01.newsiteform-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch01.newsiteform-filled.png -------------------------------------------------------------------------------- /docs/images/ch01.newsiteform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch01.newsiteform.png -------------------------------------------------------------------------------- /docs/images/ch01.site-actions-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch01.site-actions-menu.png -------------------------------------------------------------------------------- /docs/images/ch01.site-edit-more-details-expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch01.site-edit-more-details-expanded.png -------------------------------------------------------------------------------- /docs/images/ch01.site-edit-more-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch01.site-edit-more-details.png -------------------------------------------------------------------------------- /docs/images/ch01.strings-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch01.strings-list.png -------------------------------------------------------------------------------- /docs/images/ch01.translation-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch01.translation-form.png -------------------------------------------------------------------------------- /docs/images/ch01.usermenu.changepass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch01.usermenu.changepass.png -------------------------------------------------------------------------------- /docs/images/ch01.wikipedia-proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch01.wikipedia-proxy.png -------------------------------------------------------------------------------- /docs/images/ch01.wikipedia-semi-translated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch01.wikipedia-semi-translated.png -------------------------------------------------------------------------------- /docs/images/ch02.date_locale_fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch02.date_locale_fields.png -------------------------------------------------------------------------------- /docs/images/ch02.filter-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch02.filter-details.png -------------------------------------------------------------------------------- /docs/images/ch02.site-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch02.site-menu.png -------------------------------------------------------------------------------- /docs/images/ch02.text-filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch02.text-filters.png -------------------------------------------------------------------------------- /docs/images/ch04-export-xliff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch04-export-xliff.png -------------------------------------------------------------------------------- /docs/images/ch04-import-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch04-import-form.png -------------------------------------------------------------------------------- /docs/images/ch04-import-translations-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch04-import-translations-button.png -------------------------------------------------------------------------------- /docs/images/ch04-keyword-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch04-keyword-search.png -------------------------------------------------------------------------------- /docs/images/ch04-strings-header-row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch04-strings-header-row.png -------------------------------------------------------------------------------- /docs/images/ch04-strings-search-fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch04-strings-search-fields.png -------------------------------------------------------------------------------- /docs/images/ch04-top-menubar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch04-top-menubar.png -------------------------------------------------------------------------------- /docs/images/ch04.csv-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch04.csv-export.png -------------------------------------------------------------------------------- /docs/images/ch04.export-csv-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch04.export-csv-menu.png -------------------------------------------------------------------------------- /docs/images/ch04.log_translation_misses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch04.log_translation_misses.png -------------------------------------------------------------------------------- /docs/images/ch04.translation_memories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch04.translation_memories.png -------------------------------------------------------------------------------- /docs/images/ch04.translation_memories.translations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch04.translation_memories.translations.png -------------------------------------------------------------------------------- /docs/images/ch04.translation_miss_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/ch04.translation_miss_log.png -------------------------------------------------------------------------------- /docs/images/webservice-secret-key-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/images/webservice-secret-key-field.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/introduction.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/introduction.adoc -------------------------------------------------------------------------------- /docs/phparch_article/bio.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/phparch_article/bio.markdown -------------------------------------------------------------------------------- /docs/phparch_article/figures/figure1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/phparch_article/figures/figure1.png -------------------------------------------------------------------------------- /docs/phparch_article/figures/figure10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/phparch_article/figures/figure10.png -------------------------------------------------------------------------------- /docs/phparch_article/figures/figure11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/phparch_article/figures/figure11.png -------------------------------------------------------------------------------- /docs/phparch_article/figures/figure12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/phparch_article/figures/figure12.png -------------------------------------------------------------------------------- /docs/phparch_article/figures/figure13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/phparch_article/figures/figure13.png -------------------------------------------------------------------------------- /docs/phparch_article/figures/figure2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/phparch_article/figures/figure2.png -------------------------------------------------------------------------------- /docs/phparch_article/figures/figure3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/phparch_article/figures/figure3.png -------------------------------------------------------------------------------- /docs/phparch_article/figures/figure4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/phparch_article/figures/figure4.png -------------------------------------------------------------------------------- /docs/phparch_article/figures/figure5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/phparch_article/figures/figure5.png -------------------------------------------------------------------------------- /docs/phparch_article/figures/figure6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/phparch_article/figures/figure6.png -------------------------------------------------------------------------------- /docs/phparch_article/figures/figure7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/phparch_article/figures/figure7.png -------------------------------------------------------------------------------- /docs/phparch_article/figures/figure8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/phparch_article/figures/figure8.png -------------------------------------------------------------------------------- /docs/phparch_article/figures/figure9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/phparch_article/figures/figure9.png -------------------------------------------------------------------------------- /docs/phparch_article/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/phparch_article/notes.txt -------------------------------------------------------------------------------- /docs/phparch_article/page.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/phparch_article/page.markdown -------------------------------------------------------------------------------- /docs/phparch_article/requirements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/phparch_article/requirements.markdown -------------------------------------------------------------------------------- /docs/preprocessing_content.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/preprocessing_content.adoc -------------------------------------------------------------------------------- /docs/rest_api.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/rest_api.adoc -------------------------------------------------------------------------------- /docs/samples/translation_miss_log_results_2013_07_05_00_11_28.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/samples/translation_miss_log_results_2013_07_05_00_11_28.csv -------------------------------------------------------------------------------- /docs/swete-manual.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/swete-manual.adoc -------------------------------------------------------------------------------- /docs/swete-manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/swete-manual.html -------------------------------------------------------------------------------- /docs/swete-manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/swete-manual.pdf -------------------------------------------------------------------------------- /docs/translation_management.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/translation_management.adoc -------------------------------------------------------------------------------- /docs/translation_parser.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/docs/translation_parser.adoc -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/nbproject/project.properties -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /swete-admin/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/.htaccess -------------------------------------------------------------------------------- /swete-admin/actions.ini.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions.ini.php -------------------------------------------------------------------------------- /swete-admin/actions/batch_google_translate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/batch_google_translate.php -------------------------------------------------------------------------------- /swete-admin/actions/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/dashboard.php -------------------------------------------------------------------------------- /swete-admin/actions/dashboard_site_stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/dashboard_site_stats.php -------------------------------------------------------------------------------- /swete-admin/actions/refresh_page_snapshot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/refresh_page_snapshot.php -------------------------------------------------------------------------------- /swete-admin/actions/set_capture_strings_cookie.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swete-admin/actions/set_current_snapshot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/set_current_snapshot.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_add_selected_strings_to_job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_add_selected_strings_to_job.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_add_selected_webpages_to_job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_add_selected_webpages_to_job.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_add_string_to_blacklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_add_string_to_blacklist.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_add_string_to_job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_add_string_to_job.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_add_webpage_to_job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_add_webpage_to_job.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_approve_job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_approve_job.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_approve_pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_approve_pages.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_assign_job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_assign_job.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_background_process_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_background_process_info.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_background_processes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_background_processes.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_capture_strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_capture_strings.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_clear_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_clear_cache.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_compile_job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_compile_job.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_export_found_strings_as_xliff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_export_found_strings_as_xliff.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_get_jobs_for_site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_get_jobs_for_site.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_get_website_from_record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_get_website_from_record.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_handle_request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_handle_request.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_import_translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_import_translations.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_import_webpages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_import_webpages.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_job_serve_content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_job_serve_content.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_job_statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_job_statistics.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_job_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_job_users.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_message_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_message_add.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_message_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_message_delete.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_message_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_message_details.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_message_read.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_message_read.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_messages.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_preview_job_page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_preview_job_page.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_remove_webpage_from_job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_remove_webpage_from_job.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_review_translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_review_translations.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_tool_bar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_tool_bar.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_translate_page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_translate_page.php -------------------------------------------------------------------------------- /swete-admin/actions/swete_whitelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/swete_whitelist.php -------------------------------------------------------------------------------- /swete-admin/actions/word_count_by_page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/actions/word_count_by_page.php -------------------------------------------------------------------------------- /swete-admin/backups/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /swete-admin/changes.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swete-admin/conf.db.ini.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/conf.db.ini.sample -------------------------------------------------------------------------------- /swete-admin/conf.ini.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/conf.ini.php -------------------------------------------------------------------------------- /swete-admin/conf/ApplicationDelegate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/conf/ApplicationDelegate.php -------------------------------------------------------------------------------- /swete-admin/conf/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/conf/Installer.php -------------------------------------------------------------------------------- /swete-admin/conf/tables/xf_tm_translation_memories/xf_tm_translation_memories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/conf/tables/xf_tm_translation_memories/xf_tm_translation_memories.php -------------------------------------------------------------------------------- /swete-admin/css/swete/BackgroundProcess.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/css/swete/BackgroundProcess.css -------------------------------------------------------------------------------- /swete-admin/css/swete/UncompiledJobs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/css/swete/UncompiledJobs.css -------------------------------------------------------------------------------- /swete-admin/css/swete/actions/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/css/swete/actions/dashboard.css -------------------------------------------------------------------------------- /swete-admin/css/swete/actions/images/gear-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/css/swete/actions/images/gear-icon.png -------------------------------------------------------------------------------- /swete-admin/css/swete/actions/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/css/swete/actions/images/info.png -------------------------------------------------------------------------------- /swete-admin/css/swete/actions/images/swete-logo-600px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/css/swete/actions/images/swete-logo-600px.png -------------------------------------------------------------------------------- /swete-admin/css/swete/actions/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/css/swete/actions/images/warning.png -------------------------------------------------------------------------------- /swete-admin/css/swete/actions/import_translations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/css/swete/actions/import_translations.css -------------------------------------------------------------------------------- /swete-admin/css/swete/actions/import_webpages.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/css/swete/actions/import_webpages.css -------------------------------------------------------------------------------- /swete-admin/css/swete/actions/review_translations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/css/swete/actions/review_translations.css -------------------------------------------------------------------------------- /swete-admin/css/swete/forms/jobs/notes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/css/swete/forms/jobs/notes.css -------------------------------------------------------------------------------- /swete-admin/css/swete/forms/jobs/webpages.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/css/swete/forms/jobs/webpages.css -------------------------------------------------------------------------------- /swete-admin/css/swete/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/css/swete/global.css -------------------------------------------------------------------------------- /swete-admin/css/swete/images/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/css/swete/images/progress.gif -------------------------------------------------------------------------------- /swete-admin/css/swete/images/swete-logo-50px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/css/swete/images/swete-logo-50px.png -------------------------------------------------------------------------------- /swete-admin/doc.prepare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/doc.prepare.php -------------------------------------------------------------------------------- /swete-admin/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/doc/Doxyfile -------------------------------------------------------------------------------- /swete-admin/doc/debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/doc/debug.txt -------------------------------------------------------------------------------- /swete-admin/doc/mainpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/doc/mainpage.php -------------------------------------------------------------------------------- /swete-admin/images/swete-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/images/swete-logo.png -------------------------------------------------------------------------------- /swete-admin/inc/BackgroundProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/BackgroundProcess.php -------------------------------------------------------------------------------- /swete-admin/inc/BackgroundProcess/RefreshSite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/BackgroundProcess/RefreshSite.php -------------------------------------------------------------------------------- /swete-admin/inc/BackgroundProcess/UpdateChangedPages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/BackgroundProcess/UpdateChangedPages.php -------------------------------------------------------------------------------- /swete-admin/inc/BackgroundProcess/UpdateEffectiveActive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/BackgroundProcess/UpdateEffectiveActive.php -------------------------------------------------------------------------------- /swete-admin/inc/BranchProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/BranchProcessor.php -------------------------------------------------------------------------------- /swete-admin/inc/CSVStringImporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/CSVStringImporter.php -------------------------------------------------------------------------------- /swete-admin/inc/ExcelStringImporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/ExcelStringImporter.php -------------------------------------------------------------------------------- /swete-admin/inc/LiveCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/LiveCache.php -------------------------------------------------------------------------------- /swete-admin/inc/MailTools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/MailTools.php -------------------------------------------------------------------------------- /swete-admin/inc/PageImporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/PageImporter.php -------------------------------------------------------------------------------- /swete-admin/inc/PageProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/PageProcessor.php -------------------------------------------------------------------------------- /swete-admin/inc/ProxyClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/ProxyClient.php -------------------------------------------------------------------------------- /swete-admin/inc/ProxyServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/ProxyServer.php -------------------------------------------------------------------------------- /swete-admin/inc/ProxyWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/ProxyWriter.php -------------------------------------------------------------------------------- /swete-admin/inc/ProxyWriter.simpledom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/ProxyWriter.simpledom.php -------------------------------------------------------------------------------- /swete-admin/inc/SiteCrawler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/SiteCrawler.php -------------------------------------------------------------------------------- /swete-admin/inc/SweteDb.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/SweteDb.class.php -------------------------------------------------------------------------------- /swete-admin/inc/SweteJob.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/SweteJob.class.php -------------------------------------------------------------------------------- /swete-admin/inc/SweteJobInbox.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/SweteJobInbox.class.php -------------------------------------------------------------------------------- /swete-admin/inc/SweteJobInboxPresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/SweteJobInboxPresentation.php -------------------------------------------------------------------------------- /swete-admin/inc/SweteJobPageSucker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/SweteJobPageSucker.php -------------------------------------------------------------------------------- /swete-admin/inc/SweteLiveWebpagesPresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/SweteLiveWebpagesPresentation.php -------------------------------------------------------------------------------- /swete-admin/inc/SweteRequestLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/SweteRequestLogger.php -------------------------------------------------------------------------------- /swete-admin/inc/SweteSite.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/SweteSite.class.php -------------------------------------------------------------------------------- /swete-admin/inc/SweteTools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/SweteTools.php -------------------------------------------------------------------------------- /swete-admin/inc/SweteWebpage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/SweteWebpage.class.php -------------------------------------------------------------------------------- /swete-admin/inc/SweteWebpagesPresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/SweteWebpagesPresentation.php -------------------------------------------------------------------------------- /swete-admin/inc/TranslationMemoryAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/TranslationMemoryAdapter.php -------------------------------------------------------------------------------- /swete-admin/inc/WebLite_Translate.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/WebLite_Translate.class.php -------------------------------------------------------------------------------- /swete-admin/inc/WebLite_Translate.simplehtmldom.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/WebLite_Translate.simplehtmldom.class.php -------------------------------------------------------------------------------- /swete-admin/inc/WebLite_Translate_v2.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/inc/WebLite_Translate_v2.class.php -------------------------------------------------------------------------------- /swete-admin/include/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/include/functions.inc.php -------------------------------------------------------------------------------- /swete-admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/index.php -------------------------------------------------------------------------------- /swete-admin/install/dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/install/dependencies.txt -------------------------------------------------------------------------------- /swete-admin/install/permissions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/install/permissions.txt -------------------------------------------------------------------------------- /swete-admin/js/swete/BackgroundProcess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/BackgroundProcess.js -------------------------------------------------------------------------------- /swete-admin/js/swete/JobApprover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/JobApprover.js -------------------------------------------------------------------------------- /swete-admin/js/swete/JobAssigner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/JobAssigner.js -------------------------------------------------------------------------------- /swete-admin/js/swete/JobCompiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/JobCompiler.js -------------------------------------------------------------------------------- /swete-admin/js/swete/PageApprover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/PageApprover.js -------------------------------------------------------------------------------- /swete-admin/js/swete/PageApprover/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/PageApprover/dialog.html -------------------------------------------------------------------------------- /swete-admin/js/swete/PageImporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/PageImporter.js -------------------------------------------------------------------------------- /swete-admin/js/swete/SiteCrawler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/SiteCrawler.js -------------------------------------------------------------------------------- /swete-admin/js/swete/Website.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/Website.js -------------------------------------------------------------------------------- /swete-admin/js/swete/Website/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/Website/load.js -------------------------------------------------------------------------------- /swete-admin/js/swete/Website/toggleCaptureStrings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/Website/toggleCaptureStrings.js -------------------------------------------------------------------------------- /swete-admin/js/swete/actions/add_selected_strings_to_job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/actions/add_selected_strings_to_job.js -------------------------------------------------------------------------------- /swete-admin/js/swete/actions/add_selected_webpages_to_job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/actions/add_selected_webpages_to_job.js -------------------------------------------------------------------------------- /swete-admin/js/swete/actions/approve_job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/actions/approve_job.js -------------------------------------------------------------------------------- /swete-admin/js/swete/actions/approve_pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/actions/approve_pages.js -------------------------------------------------------------------------------- /swete-admin/js/swete/actions/assign_job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/actions/assign_job.js -------------------------------------------------------------------------------- /swete-admin/js/swete/actions/batch_google_translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/actions/batch_google_translate.js -------------------------------------------------------------------------------- /swete-admin/js/swete/actions/capture_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/actions/capture_strings.js -------------------------------------------------------------------------------- /swete-admin/js/swete/actions/compile_job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/actions/compile_job.js -------------------------------------------------------------------------------- /swete-admin/js/swete/actions/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/actions/dashboard.js -------------------------------------------------------------------------------- /swete-admin/js/swete/actions/import_translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/actions/import_translations.js -------------------------------------------------------------------------------- /swete-admin/js/swete/actions/import_webpages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/actions/import_webpages.js -------------------------------------------------------------------------------- /swete-admin/js/swete/actions/import_webpages/no_settings_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/actions/import_webpages/no_settings_id.js -------------------------------------------------------------------------------- /swete-admin/js/swete/actions/refresh_page_snapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/actions/refresh_page_snapshot.js -------------------------------------------------------------------------------- /swete-admin/js/swete/actions/set_current_snapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/actions/set_current_snapshot.js -------------------------------------------------------------------------------- /swete-admin/js/swete/actions/swete_tool_bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/actions/swete_tool_bar.js -------------------------------------------------------------------------------- /swete-admin/js/swete/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/global.js -------------------------------------------------------------------------------- /swete-admin/js/swete/select.to.autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/select.to.autocomplete.js -------------------------------------------------------------------------------- /swete-admin/js/swete/tables/jobs/livewebpages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/tables/jobs/livewebpages.js -------------------------------------------------------------------------------- /swete-admin/js/swete/tables/jobs/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/tables/jobs/notes.js -------------------------------------------------------------------------------- /swete-admin/js/swete/tables/jobs/webpages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/tables/jobs/webpages.js -------------------------------------------------------------------------------- /swete-admin/js/swete/tables/webpages/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/tables/webpages/list.js -------------------------------------------------------------------------------- /swete-admin/js/swete/ui/filter_translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/ui/filter_translations.js -------------------------------------------------------------------------------- /swete-admin/js/swete/ui/treetable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/js/swete/ui/treetable.js -------------------------------------------------------------------------------- /swete-admin/lang/en.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lang/en.ini -------------------------------------------------------------------------------- /swete-admin/lib/HTML5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5.php -------------------------------------------------------------------------------- /swete-admin/lib/HTML5/Elements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5/Elements.php -------------------------------------------------------------------------------- /swete-admin/lib/HTML5/Entities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5/Entities.php -------------------------------------------------------------------------------- /swete-admin/lib/HTML5/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5/Exception.php -------------------------------------------------------------------------------- /swete-admin/lib/HTML5/InstructionProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5/InstructionProcessor.php -------------------------------------------------------------------------------- /swete-admin/lib/HTML5/Parser/CharacterReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5/Parser/CharacterReference.php -------------------------------------------------------------------------------- /swete-admin/lib/HTML5/Parser/DOMTreeBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5/Parser/DOMTreeBuilder.php -------------------------------------------------------------------------------- /swete-admin/lib/HTML5/Parser/EventHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5/Parser/EventHandler.php -------------------------------------------------------------------------------- /swete-admin/lib/HTML5/Parser/FileInputStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5/Parser/FileInputStream.php -------------------------------------------------------------------------------- /swete-admin/lib/HTML5/Parser/InputStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5/Parser/InputStream.php -------------------------------------------------------------------------------- /swete-admin/lib/HTML5/Parser/ParseError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5/Parser/ParseError.php -------------------------------------------------------------------------------- /swete-admin/lib/HTML5/Parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5/Parser/README.md -------------------------------------------------------------------------------- /swete-admin/lib/HTML5/Parser/Scanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5/Parser/Scanner.php -------------------------------------------------------------------------------- /swete-admin/lib/HTML5/Parser/StringInputStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5/Parser/StringInputStream.php -------------------------------------------------------------------------------- /swete-admin/lib/HTML5/Parser/Tokenizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5/Parser/Tokenizer.php -------------------------------------------------------------------------------- /swete-admin/lib/HTML5/Parser/TreeBuildingRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5/Parser/TreeBuildingRules.php -------------------------------------------------------------------------------- /swete-admin/lib/HTML5/Parser/UTF8Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5/Parser/UTF8Utils.php -------------------------------------------------------------------------------- /swete-admin/lib/HTML5/Serializer/HTML5Entities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5/Serializer/HTML5Entities.php -------------------------------------------------------------------------------- /swete-admin/lib/HTML5/Serializer/OutputRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5/Serializer/OutputRules.php -------------------------------------------------------------------------------- /swete-admin/lib/HTML5/Serializer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5/Serializer/README.md -------------------------------------------------------------------------------- /swete-admin/lib/HTML5/Serializer/RulesInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5/Serializer/RulesInterface.php -------------------------------------------------------------------------------- /swete-admin/lib/HTML5/Serializer/Traverser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/HTML5/Serializer/Traverser.php -------------------------------------------------------------------------------- /swete-admin/lib/JSLikeHTMLElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/JSLikeHTMLElement.php -------------------------------------------------------------------------------- /swete-admin/lib/http_build_url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/http_build_url.php -------------------------------------------------------------------------------- /swete-admin/lib/simple_html_dom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/lib/simple_html_dom.php -------------------------------------------------------------------------------- /swete-admin/livecache/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all 2 | -------------------------------------------------------------------------------- /swete-admin/modules/tm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/README.md -------------------------------------------------------------------------------- /swete-admin/modules/tm/actions.ini.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/actions.ini.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/actions/tm_add_translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/actions/tm_add_translations.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/actions/tm_export_as_xliff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/actions/tm_export_as_xliff.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/actions/tm_find_similar_translations.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swete-admin/modules/tm/actions/tm_flag_translation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/actions/tm_flag_translation.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/actions/tm_fuzzy_matches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/actions/tm_fuzzy_matches.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/actions/tm_get_strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/actions/tm_get_strings.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/actions/tm_import_from_xliff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/actions/tm_import_from_xliff.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/actions/tm_save_field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/actions/tm_save_field.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/actions/tm_update_word_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/actions/tm_update_word_index.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/actions/tm_validate_xliff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/actions/tm_validate_xliff.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/actions/translate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/actions/translate.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/css/xataface/modules/tm/images/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/css/xataface/modules/tm/images/tick.png -------------------------------------------------------------------------------- /swete-admin/modules/tm/css/xataface/modules/tm/translate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/css/xataface/modules/tm/translate.css -------------------------------------------------------------------------------- /swete-admin/modules/tm/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/doc/Doxyfile -------------------------------------------------------------------------------- /swete-admin/modules/tm/doc/first_translation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/doc/first_translation.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/doc/mainpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/doc/mainpage.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/doc/overview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/doc/overview.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/doc/permissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/doc/permissions.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/doc/roadmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/doc/roadmap.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/doc/troubleshooting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/doc/troubleshooting.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/installer.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/js/xataface/modules/tm/string_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/js/xataface/modules/tm/string_parser.js -------------------------------------------------------------------------------- /swete-admin/modules/tm/js/xataface/modules/tm/tests/test_string_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/js/xataface/modules/tm/tests/test_string_parser.js -------------------------------------------------------------------------------- /swete-admin/modules/tm/js/xataface/modules/tm/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/js/xataface/modules/tm/translate.js -------------------------------------------------------------------------------- /swete-admin/modules/tm/js/xataface/modules/tm/translation_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/js/xataface/modules/tm/translation_form.js -------------------------------------------------------------------------------- /swete-admin/modules/tm/js/xataface/modules/tm/translation_memory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/js/xataface/modules/tm/translation_memory.js -------------------------------------------------------------------------------- /swete-admin/modules/tm/js/xataface/modules/tm/translation_memory_flag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/js/xataface/modules/tm/translation_memory_flag.js -------------------------------------------------------------------------------- /swete-admin/modules/tm/js/xataface/modules/tm/validate_xliff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/js/xataface/modules/tm/validate_xliff.js -------------------------------------------------------------------------------- /swete-admin/modules/tm/lib/TMTools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/lib/TMTools.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/lib/TranslationStringParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/lib/TranslationStringParser.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/lib/TranslationStringTagger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/lib/TranslationStringTagger.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/lib/XFTranslationDictionary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/lib/XFTranslationDictionary.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/lib/XFTranslationMemory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/lib/XFTranslationMemory.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/lib/XFTranslationMemoryReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/lib/XFTranslationMemoryReader.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/lib/XLIFFDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/lib/XLIFFDocument.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/lib/XLIFFListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/lib/XLIFFListener.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/lib/XLIFFReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/lib/XLIFFReader.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/lib/XLIFFWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/lib/XLIFFWriter.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/lib/googleTranslatePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/lib/googleTranslatePlugin.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/lib/googleTranslatePluginTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/lib/googleTranslatePluginTester.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/lib/kevin_TranslationStringTaggerTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/lib/kevin_TranslationStringTaggerTester.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/lib/kevin_XLIFFDocumentTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/lib/kevin_XLIFFDocumentTester.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/lib/kevin_XLIFFReaderTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/lib/kevin_XLIFFReaderTester.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/lib/kevin_XLIFFtester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/lib/kevin_XLIFFtester.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/lib/test.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/lib/test.xliff -------------------------------------------------------------------------------- /swete-admin/modules/tm/lib/xliff-core-1.2-strict.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/lib/xliff-core-1.2-strict.xsd -------------------------------------------------------------------------------- /swete-admin/modules/tm/permissions.ini.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/permissions.ini.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/tables/_tmp_xf_tm_fuzzy_matches/_tmp_xf_tm_fuzzy_matches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/tables/_tmp_xf_tm_fuzzy_matches/_tmp_xf_tm_fuzzy_matches.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/tables/_tmp_xf_tm_fuzzy_matches/fields.ini.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/swete/HEAD/swete-admin/modules/tm/tables/_tmp_xf_tm_fuzzy_matches/fields.ini.php -------------------------------------------------------------------------------- /swete-admin/modules/tm/tables/xf_tm_record_strings/fields.ini.php: -------------------------------------------------------------------------------- 1 | ;