aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/language
Commit message (Collapse)AuthorAgeFilesLines
* [feature/soft-delete] Update restoring feature to use ajax if requested.Joas Schilling2012-08-292-2/+3
| | | | | | | | Also fixes the mcp as a hole: - displayes a success message - gives a link to the post, if only one was restored PHPBB3-9657
* [feature/soft-delete] Implement the ability to soft-delete and restore postsJosh Woody2012-08-295-0/+13
| | | | | | The soft delete feature seems to work. Tests are pending. A real icon is pending. Add the permissions and the interface to soft-delete posts. Also able to restore posts via the MCP queue PHPBB3-9657
* Merge remote-tracking branch 'Fyorl/feature/attach-dl' into developAndreas Fischer2012-08-261-0/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fyorl/feature/attach-dl: (75 commits) [feature/attach-dl] Removed the use of some abbreviations [feature/attach-dl] Changed $files_added checks [feature/attach-dl] Renamed $post_id to $post_msg_id [feature/attach-dl] Fixed a comment [feature/attach-dl] Optimised an sql query [feature/attach-dl] Fixed the logic in an sql statement [feature/attch-dl] $forum_id cast to int [feature/attach-dl] Fixed $file_added to $files_added [feature/attach-dl] Moved definition of $archive_name [feature/attach-dl] Swapped the order of an if statement [feature/attach-dl] Cast variables to int [feature/attach-dl] Added $archive_path [feature/attach-dl] Used COMMA_SEPARATOR instead of actual comma [feature/attach-dl] Renamed $count to $files_added [feature/attach-dl] Removed sprintf() use [feature/attach-dl] Removed need for array_keys() [feature/attach-dl] Added multiple attachment downloads to PMs [feature/attach-dl] Removed reliance on current($row) [feature/attach-dl] Renamed to phpbb_download_handle_forum_auth [feature/attach-dl] Moved PM authentication handling into own function ...
| * [feature/attach-dl] Removed the use of some abbreviationsFyorl2012-08-201-1/+1
| | | | | | | | PHPBB3-11042
| * [feature/attach-dl] Added links to the templatesFyorl2012-08-021-0/+2
| | | | | | | | PHPBB3-11042
* | [ticket/11032] fix language of error displayedDhruv2012-08-151-2/+2
| | | | | | | | | | | | Language of the error displayed is modified. PHPBB3-11032
* | [ticket/11032] trigger error in case search failsDhruv2012-08-101-0/+2
| | | | | | | | | | | | | | Admins are shown actual error while users are shown a search failed error in case sphinx search fails. PHPBB3-11032
* | [ticket/11032] add sphinx errors to error logDhruv2012-08-011-0/+1
|/ | | | PHPBB3-11032
* Merge PR #865 branch 'dhruvgoel92/feature/sphinx-fulltext-search' into developOleg Pudeyev2012-07-271-0/+16
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * dhruvgoel92/feature/sphinx-fulltext-search: (57 commits) [feature/sphinx-fulltext-search] add sphinx to Authors file [feature/sphinx-fulltext-search] add sphinxapi.php file [feature/sphinx-fulltext-search] fix auth bug [feature/sphinx-fulltext-search] remove unused property [feature/sphinx-fulltext-search] use 9312 as default port [feature/sphinx-fulltext-search] fix language of host config [feature/sphinx-fulltext-search] fix sphinx for arbitary host [feature/sphinx-fulltext-search] coding changes acc to phbb conventions [feature/sphinx-fulltext-search] fixing comments [feature/sphinx-fulltext-search] add trailing slash in language [feature/sphinx-fulltext-search] improve port option [feature/sphinx-fulltext-search] remove stopwords and config path [feature/sphinx-fulltext-search] makes sql host configurable [feature/sphinx-fulltext-search] use readonly instead of disabled [feature/sphinx-fulltext-search] fix language keys' typo [feature/sphinx-fulltext-search] remove note from db_tools [feature/sphinx-fulltext-search] add support for postgres [feature/sphinx-fulltext-search] add pgsql functionality [feature/sphinx-fulltext-search] use Update in sphinx query [feature/sphinx-fulltext-search] use CASE instead of IF ...
| * [feature/sphinx-fulltext-search] use 9312 as default portDhruv2012-07-271-1/+1
| | | | | | | | | | | | | | | | Uses 9312 instead of 3312 as default port for searchd to listen on according to latest sphinx documentation. Use filename sphinxapi.php instead of old one. PHPBB3-10946
| * [feature/sphinx-fulltext-search] fix language of host configDhruv2012-07-271-3/+3
| | | | | | | | PHPBB3-10946
| * [feature/sphinx-fulltext-search] add trailing slash in languageDhruv2012-07-261-1/+1
| | | | | | | | PHPBB3-10946
| * [feature/sphinx-fulltext-search] improve port optionDhruv2012-07-221-1/+1
| | | | | | | | | | | | | | Use listen instead of deprecated port value in sphinx config file. sqlhost uses default $dbhost. PHPBB3-10946
| * [feature/sphinx-fulltext-search] remove stopwords and config pathDhruv2012-07-221-4/+0
| | | | | | | | | | | | Remove stopwords and config_path options from ACP. PHPBB3-10946
| * [feature/sphinx-fulltext-search] makes sql host configurableDhruv2012-07-221-0/+2
| | | | | | | | | | | | | | The SQL server host which sphinx connects to index the posts is now configurable via ACP. PHPBB3-10946
| * [feature/sphinx-fulltext-search] fix language keys' typoDhruv2012-07-221-4/+4
| | | | | | | | PHPBB3-10946
| * [feature/sphinx-fulltext-search] add pgsql functionalityDhruv2012-07-191-1/+1
| | | | | | | | PHPBB3-10946
| * [feature/sphinx-fulltext-search] modify language keysDhruv2012-07-191-6/+4
| | | | | | | | | | | | | | Modify language keys according to what the config setting actually does. Remove references to autoconf. PHPBB3-10946
| * [feature/sphinx-fulltext-search] display config file in ACPDhruv2012-07-191-0/+3
| | | | | | | | | | | | | | sphinx config file is generated and displayed in the ACP for user to use it to start sphinx search daemon. PHPBB3-10946
| * [feature/sphinx-fulltext-search] remove bin_pathDhruv Goel2012-07-191-3/+0
| | | | | | | | | | | | fulltext_sphinx_bin_path from ACP as it is no longer required. PHPBB3-10946
| * [feature/sphinx-fulltext-search] remove recent search queriesDhruv Goel2012-07-191-11/+1
| | | | | | | | | | | | | | remove recent search queries from the stats as they can't be retreived and remove other language keys being used no more. PHPBB3-10946
| * [feature/sphinx-fulltext-search] integrate sphinx language keys with coreDhruv Goel2012-07-122-65/+30
| | | | | | | | | | | | | | Language keys removed from mods folder and added to language/en/acp/search.php PHPBB3-10946
| * [feature/sphinx-fulltext-search] minor fixes in formattingDhruv Goel2012-07-121-1/+1
| | | | | | | | | | | | | | Add a newline at the end of files. Update License information in package docbloc. PHPBB3-10946
| * [feature/sphinx-fulltext-search] MOD by naderman installed in phpbbDhruv Goel2012-07-121-0/+65
| | | | | | | | PHPBB3-10946
* | Merge branch 'develop-olympus' into developAndreas Fischer2012-07-231-0/+2
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10965] Database update was referring to 3.0.5 instead of 3.0.11-RC1 [ticket/10965] Introduce a new profile field option to display no value Conflicts: phpBB/includes/acp/acp_profile.php
| * | [ticket/10965] Introduce a new profile field option to display no valueNils Adermann2012-07-231-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | By default the 3.0.10 behaviour is kept, profile fields will not show up if they have either not yet been selected or in case of an optional dropdown field if the novalue option was selected. PHPBB3-10965
* | | Merge pull request #914 from EXreaction/ticket/10990Nils Adermann2012-07-221-1/+1
|\ \ \ | | | | | | | | Ticket/10990
| * | | [ticket/10990] Use $user->lang['COMMA_SEPARATOR'] when appropriateNathan2012-07-221-1/+1
| | | | | | | | | | | | | | | | PHPBB3-10990
* | | | Merge remote-tracking branch 'github-nickvergessen/ticket/11002' into developNils Adermann2012-07-211-0/+29
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * github-nickvergessen/ticket/11002: [ticket/11002] Use translating option to rename the Etc/GMT options
| * | | | [ticket/11002] Use translating option to rename the Etc/GMT optionsJoas Schilling2012-07-211-0/+29
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | They have the invers offset of their name. So GMT+2 has the offset -7200. To avoid additional confusion, we simply overwrite their name. PHPBB3-11002
* | | | Merge branch 'develop-olympus' into developNils Adermann2012-07-211-1/+1
|\ \ \ \ | |/ / / |/| / / | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10950] Fix grammar in comments [ticket/10950] Delete PMs for users that have not yet read the pm [ticket/10950] Fix unit tests to fit the new pm deleting behaviour [ticket/10950] Update undelivered pm counts in batches not 1 by 1 for each user [ticket/10950] Remove deleted entries in tests instead of commenting them out [ticket/10950] Use database count() and group by instead of doing that in php [ticket/10950] Check $delete_ids to be not empty [ticket/10950] Recreated the behaviour of phpbb_delete_user_pms() [ticket/10950] Fix unit tests to reflect desired behaviour [ticket/10950] Add some first and simple unit tests for phpbb_delete_user_pms() [ticket/10950] Correct comment for the second query. [ticket/10950] Add empty line to make unset() call more visible. [ticket/10950] Select the correct columns in SQL queries. [ticket/10950] Use a variable for the private message id. [ticket/10950] Move array initialisation to the front. [ticket/10950] Remove redundant if statement. [ticket/10950] Fix SQL coding style (indentation) in second SQL query. [ticket/10950] Use proper ' in order to fix comment.
| * | [ticket/10950] Delete PMs for users that have not yet read the pmJoas Schilling2012-07-201-1/+1
| | | | | | | | | | | | PHPBB3-10950
* | | [feature/new-tz-handling] Remove additional marking of selected itemsJoas Schilling2012-07-181-1/+0
| | | | | | | | | | | | PHPBB3-9558
* | | Merge branch 'develop' of git://github.com/phpbb/phpbb3 into ↵Joas Schilling2012-07-183-5/+22
|\ \ \ | | |/ | |/| | | | feature/new-tz-handling
| * | Merge PR #854 branch 'dhruvgoel92/ticket/10943' into developOleg Pudeyev2012-07-071-0/+1
| |\ \ | | | | | | | | | | | | | | | | | | | | * dhruvgoel92/ticket/10943: [ticket/10943] displays searched query in search result [ticket/10943] use keywords variable to display in search box
| | * | [ticket/10943] displays searched query in search resultDhruv Goel2012-07-081-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Search backend displays an additional normalized search query just above the ignored words. PHPBB3-10943
| * | | Merge PR #832 branch 'dhruvgoel92/feature/postgresql-fulltext-search' into ↵Oleg Pudeyev2012-07-072-0/+13
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | develop * dhruvgoel92/feature/postgresql-fulltext-search: (28 commits) [feature/postgresql-fulltext-search] supports_phrase_search function [feature/postgresql-fulltext-search] use proper variable name [feature/postgresql-fulltext-search] each config is checked if it is set [feature/postgresql-fulltext-search] fix formatting [feature/postgresql-fulltext-search] add docblocks to functions [feature/postgresql-fulltext-search] remove phrase search code [feature/postgresql-fulltext-search] define access control specifiers [feature/postgresql-fulltext-search] use version_compare [feature/postgresql-fulltext-search] fix language key [feature/postgresql-fulltext-search] remove Readme [feature/postgresql-fulltext-search] removes pcre check [feature/postgresql-fulltext-search] fix language tsearch2 to text search [feature/postgresql-fulltext-search] remove mbstring support [feature/postgresql-fulltext-search] change language for pgsql < 8.3 [feature/postgresql-fulltext-search] use phpbb_pcre_utf8_support() [feature/postgresql-fulltext-search] fix variable name [feature/postgresql-fulltext-search] Fix version comparison for 9.0+. [feature/postgresql-fulltext-search] fixing license [feature/postgresql-fulltext-search] assign empty stats [feature/postgresql-fulltext-search] remove backward compatibility ...
| | * | | [feature/postgresql-fulltext-search] remove phrase search codeDhruv Goel2012-07-051-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Unused Code for phrase search removed as pgsql doesnt support it. An added message is displayed if user tries to perform exact phrase search. PHPBB3-9730
| | * | | [feature/postgresql-fulltext-search] fix language keyDhruv Goel2012-07-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Language key name not incompatible_database instead of version which was misleading PHPBB3-9730
| | * | | [feature/postgresql-fulltext-search] removes pcre checkDhruv Goel2012-07-051-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PCRE UTF8 support is already checked globally. adds an option of pgsql version to acp. PHPBB3-9730
| | * | | [feature/postgresql-fulltext-search] fix language tsearch2 to text searchDhruv Goel2012-07-051-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Language is changed according to the current PostgreSQL documentation. PHPBB3-9730
| | * | | [feature/postgresql-fulltext-search] remove mbstring supportDhruv Goel2012-07-051-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove the usage of mbstring regex engine when PCRE does not support UTF8 since its a requirement for phpbb 3.1 PHPBB3-9730
| | * | | [feature/postgresql-fulltext-search] change language for pgsql < 8.3Dhruv Goel2012-07-051-1/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-9730
| | * | | [feature/postgresql-fulltext-search] PostgreSQL fulltext search, version 1.wagnerch2012-06-081-0/+14
| | |/ / | | | | | | | | | | | | PHPBB3-9730
| * | | Merge branch 'develop-olympus' into developAndreas Fischer2012-06-211-0/+1
| |\ \ \ | | | |/ | | |/| | | | | | | | | * develop-olympus: [ticket/10935] Limit number of PM rules per user to 5000
| | * | [ticket/10935] Limit number of PM rules per user to 5000Joas Schilling2012-06-201-0/+1
| | | | | | | | | | | | | | | | PHPBB3-10935
| * | | Merge PR #844 branch 'dhruvgoel92/ticket/10936' into developOleg Pudeyev2012-06-191-5/+1
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | * dhruvgoel92/ticket/10936: [ticket/10936] remove PCRE and mbstring support check [ticket/10936] fix language key
| | * | | [ticket/10936] remove PCRE and mbstring support checkDhruv Goel2012-06-131-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since PCRE UTF8 support already has a global check no need for mbstring or PCRE check here. PHPBB3-10936
| | * | | [ticket/10936] fix language keyDhruv Goel2012-06-121-1/+1
| | | |/ | | |/| | | | | | | | | | | | | | | | | | | | | Language key changes from INCOMPATIBLE_VERSION to INCOMPATIBLE_DATABASE to make it more meaningfull. PHPBB3-10936
| * | | Merge remote-tracking branch 'github-dhruvgoel92/feature/delete-auto-logins' ↵Nils Adermann2012-06-111-0/+6
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into develop * github-dhruvgoel92/feature/delete-auto-logins: [feature-delete-auto-logins] adds module to database update [feature/delete-auto-logins] fixes style [feature/delete-auto-logins] improves styling [feature/delete-auto-logins] fixes language entry [feature/delete-auto-logins] fix language keys and styling [feature/delete-auto-logins] explain persistent keys in the ucp. [feature/delete-auto-logins] template added for subsilver2 [feature/delete-auto-logins] improved styling and fixes language [feature/delete-auto-logins] using loop for errors [feature/delete-auto-logins] fixes css corners [feature/delete-auto-logins] Fixes language entries [feature/delete-auto-logins] checks form key [feature/delete-auto-logins] Fixes language entries and redirection. [feature/delete-auto-logins] User can view/delete auto logins.