├── .gitignore ├── t ├── data │ ├── empty.po │ ├── plural.mo │ ├── simple.mo │ ├── context.mo │ ├── overload.mo │ ├── de_DE-2.8.mo │ ├── bad_nplurals.mo │ ├── windows-line-endings.po │ ├── originals.android.xml │ ├── translation.android.xml │ ├── bad_nplurals.po │ ├── mo.pot │ ├── simple.po │ ├── originals.utf16be.strings │ ├── originals.utf16le.strings │ ├── translation.strings │ └── originals.resx.xml ├── .coveralls.yml ├── bin │ └── request.php ├── tests │ ├── test_locale.php │ ├── test_requests.php │ ├── test_install.php │ ├── test_deprecated.php │ ├── tests_testlib │ │ └── test_default_factories.php │ ├── test_strings.php │ ├── test_noop_translations.php │ ├── test_translation_entry.php │ ├── test_links.php │ ├── tests_routes │ │ ├── test_route_api.php │ │ └── test_route_translation.php │ ├── test_misc.php │ ├── test_validation.php │ ├── test_template.php │ ├── test_meta.php │ ├── tests_things │ │ ├── test_thing_glossary.php │ │ └── test_thing_glossary_entry.php │ ├── test_thing.php │ ├── test_user.php │ ├── test_format_android.php │ ├── test_warnings.php │ ├── test_format_resx.php │ └── test_format_strings.php ├── all.php ├── lib │ ├── bootstrap.php │ ├── testcase-request.php │ └── testcase-route.php ├── phpunit.xml.dist └── unittests-config-sample.php ├── gp-templates ├── locales.api.php ├── redirect.php ├── projects.api.php ├── translations.api.php ├── locale.api.php ├── 404.api.php ├── 404.php ├── project.api.php ├── footer.php ├── project-new.php ├── project-edit.php ├── translation-set-new.php ├── profile-public.api.php ├── projects.php ├── translation-set-edit.php ├── login.php ├── project-import.php ├── glossary-new.php ├── glossary-import.php ├── translation-set-form.php ├── project-mass-create-sets.php ├── header.php ├── glossary-edit.php ├── profile.php ├── project-form.php ├── locales.php ├── project-branch.php ├── profile-public.php ├── install.php ├── project-permissions.php └── glossary-entry-row.php ├── img ├── asc.gif ├── desc.gif └── glotpress-logo.png ├── composer.json ├── index.php ├── pomo ├── sample │ ├── languages │ │ ├── bg.mo │ │ ├── bg-side.mo │ │ ├── bg-side.po │ │ ├── app-side.pot │ │ ├── app.pot │ │ └── bg.po │ └── app.php └── entry.php ├── gp-includes ├── routes │ ├── _main.php │ ├── index.php │ ├── original.php │ ├── login.php │ ├── profile.php │ └── translation-set.php ├── backpress │ ├── loader.wp-object-cache.php │ ├── pomo │ │ ├── sample │ │ │ ├── languages │ │ │ │ ├── bg.mo │ │ │ │ ├── bg-side.mo │ │ │ │ ├── bg-side.po │ │ │ │ ├── app-side.pot │ │ │ │ ├── app.pot │ │ │ │ └── bg.po │ │ │ └── app.php │ │ └── entry.php │ ├── loader.wp-object-cache-memcached.php │ ├── functions.bp-options.php │ ├── class.bp-roles.php │ ├── class.wp-http-ixr-client.php │ ├── interface.bp-options.php │ └── functions.wp-scripts.php ├── default-filters.php ├── things │ ├── permission.php │ ├── glossary-entry.php │ ├── validator-permission.php │ └── glossary.php ├── gp.php ├── class.bp-options.php ├── format.php ├── deprecated.php ├── assets-loader.php ├── system.php ├── cli.php ├── formats │ └── format_pomo.php ├── advanced-permissions.php ├── install-upgrade.php ├── plugin.php ├── l10n.php └── template-links.php ├── scripts ├── regenerate-paths.php ├── wporg2slug.php ├── wipe-permissions.php ├── upgrade-set-permissions.php ├── remove-multiple-currents.php ├── add-admin.php ├── branch-project.php ├── recheck-warnings.php ├── import.php ├── export.php └── import-originals.php ├── README ├── .travis.yml ├── .scrutinizer.yml ├── gp-load.php ├── js ├── mass-create-sets-page.js ├── common.js └── translations-page.js ├── css └── install.css ├── plugins └── google-translate │ └── google-translate.js ├── gp-config-sample.php ├── install.php └── HACKING /.gitignore: -------------------------------------------------------------------------------- 1 | .svn -------------------------------------------------------------------------------- /t/data/empty.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gp-templates/locales.api.php: -------------------------------------------------------------------------------- 1 | false, 'error' => __('Not Found') ) ); 4 | -------------------------------------------------------------------------------- /pomo/sample/languages/bg.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlotPress/GlotPress-standalone/HEAD/pomo/sample/languages/bg.mo -------------------------------------------------------------------------------- /pomo/sample/languages/bg-side.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlotPress/GlotPress-standalone/HEAD/pomo/sample/languages/bg-side.mo -------------------------------------------------------------------------------- /gp-templates/404.php: -------------------------------------------------------------------------------- 1 | redirect( gp_url_project( '' ) ); 5 | } 6 | } -------------------------------------------------------------------------------- /gp-templates/project.api.php: -------------------------------------------------------------------------------- 1 | $translation_sets, 'sub_projects' => $sub_projects ) ); -------------------------------------------------------------------------------- /gp-includes/backpress/pomo/sample/languages/bg-side.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlotPress/GlotPress-standalone/HEAD/gp-includes/backpress/pomo/sample/languages/bg-side.mo -------------------------------------------------------------------------------- /gp-includes/backpress/loader.wp-object-cache-memcached.php: -------------------------------------------------------------------------------- 1 | 2 |
6 |