1
0
mirror of https://github.com/flarum/core.git synced 2025-08-18 14:22:02 +02:00
Commit Graph

8914 Commits

Author SHA1 Message Date
dcsjapan
3302ea0e1e Reorganize key names
See [flarum/core #265](https://github.com/flarum/core/issues/265).

- Adjusts key names to three-tier namespacing.
- Extracts previously unextracted strings.

Supported by [flarum/english #13](https://github.com/flarum/english/pull/13).
2015-10-21 15:22:49 +09:00
dcsjapan
c1a670a0ee Reorganize key names for Flags
See flarum/core #265
- Adjusts key names to three-tier namespacing.
- Adds newly extracted strings.
- Adds commenting to match core.
2015-10-21 15:15:32 +09:00
Toby Zerner
429161c4fe Add translations for basic HTML interface 2015-10-21 11:37:46 +10:30
Toby Zerner
69f8acd0e0 Translate basic HTML views
app('view') call to set translator is temporary. See #189
2015-10-21 11:36:49 +10:30
Toby Zerner
882133ca55 Increase username max length
Not sure why it was at 8!
2015-10-21 11:13:55 +10:30
Toby Zerner
396de53322 Improve request error debug output 2015-10-21 10:47:07 +10:30
Toby Zerner
835e9e5d86 Remove app.trans shortcut
Use `app.translator.trans` instead.
2015-10-21 10:31:28 +10:30
Toby Zerner
117fc7d46b Change app.trans calls to app.translator.trans calls 2015-10-21 10:30:09 +10:30
Toby Zerner
3c62230b62 Change app.trans calls to app.translator.trans calls 2015-10-21 10:29:48 +10:30
Toby Zerner
45e3e0fbff Change app.trans calls to app.translator.trans calls 2015-10-21 10:29:31 +10:30
Toby Zerner
3dd2260b0f Change app.trans calls to app.translator.trans calls 2015-10-21 10:29:17 +10:30
Toby Zerner
ae7baa1e7f Change app.trans calls to app.translator.trans calls 2015-10-21 10:28:59 +10:30
Toby Zerner
3380495222 Change app.trans calls to app.translator.trans calls 2015-10-21 10:28:41 +10:30
Toby Zerner
add40d3268 Change app.trans calls to app.translator.trans calls 2015-10-21 10:28:20 +10:30
Toby Zerner
3894e71f15 Fix translation keys 2015-10-21 10:27:09 +10:30
Toby Zerner
350248b6e9 Fix reference key name 2015-10-21 10:26:42 +10:30
Toby Zerner
5a050b30f0 Merge pull request #12 from dcsjapan/namepace-chunks
Group translation keys by sub-key instead of prefix
2015-10-21 10:13:39 +10:30
Toby Zerner
c5f9124e6c Merge branch 'dcsjapan-key-adjustment' 2015-10-21 10:02:22 +10:30
Toby Zerner
e7d8617ecc Merge branch 'key-adjustment' of https://github.com/dcsjapan/flarum-core into dcsjapan-key-adjustment
# Conflicts:
#	js/forum/src/components/LogInModal.js
2015-10-21 10:02:07 +10:30
Toby Zerner
a275e308fb Improve client boot failure error message/appearance 2015-10-21 09:59:22 +10:30
Toby Zerner
5bec750f12 Change back to 401 error on invalid login
See f2dbb96e84 (commitcomment-13866552)
2015-10-21 09:04:58 +10:30
Toby Zerner
15b05b359d Fix bad filename 2015-10-20 22:52:47 +10:30
Toby Zerner
542d7dd543 Update broken bower resource paths 2015-10-20 22:48:32 +10:30
Toby Zerner
c0e3cb1833 Don't use array_filter flag (PHP 5.6 only) 2015-10-20 22:25:20 +10:30
Toby Zerner
d237dc84aa Fix installation 2015-10-20 22:07:35 +10:30
Toby Zerner
c82a48bfbb Revert error handling regression 2015-10-20 22:07:08 +10:30
Toby Zerner
281f1f39c2 Revert part of last commit 2015-10-20 22:06:44 +10:30
dcsjapan
da428db02d Fix the double correction
- Fixes one mangled app.translator call.
2015-10-20 15:44:58 +09:00
dcsjapan
f520a8b9ac Add third tier to key namespacing
- Changes all `app.trans` calls to `app.translator.trans` calls.
- Changes existing keys to [three-tier namespace structure](https://github.com/flarum/english/pull/12).
- Extracts additional strings for `lib:` namespace.
- Extracts two previously missed strings for EditGroupModal.js.
2015-10-20 13:04:43 +09:00
dcsjapan
664faa296c Additional changes to library keys
- Accommodates new error messages
- Changes the namespace for number abbreviations
2015-10-20 12:28:34 +09:00
Toby Zerner
c7da79a646 Use more concise error handling 2015-10-20 12:50:19 +10:30
Toby Zerner
726d17dc4a Use more concise error handling 2015-10-20 12:50:04 +10:30
Toby Zerner
ebb4623223 Remove behaviour where backspace re-focuses on title field 2015-10-20 12:49:19 +10:30
Toby Zerner
f2dbb96e84 Improve client XHR error handling
The default XHR error handler produce an alert which is appropriate to the response status code. It can be overridden per-request (by specifying the `errorHandler` option) so that the alert can be suppressed or displayed in a different position (e.g. inside a modal).

ref #118
2015-10-20 12:48:26 +10:30
dcsjapan
be172f5092 Group translation keys by sub-key instead of prefix
- Adds new sub-keys to replace key prefixes, and adjusts key names accordingly.
- Moves several button strings from `admin.permissions_` to `admin.permissions_controls`
- Merges `forum.settings_notify_` strings into `forum.settings`
- Rolls `forum.user_avatar_` strings into `forum.user`
- Moves the `user_deleted_text` to the `lib` namespace.
- Adds four other leftover strings to the `lib` namespace.
- Includes minor changes to formatting and comments.
2015-10-19 18:24:38 +09:00
Toby Zerner
a6ba05862f Merge pull request #11 from maelsoucaze/readme
Update translating instructions
2015-10-19 19:16:52 +10:30
Maël Soucaze
8dda2018f4 Update translating instructions 2015-10-19 10:43:14 +02:00
Toby Zerner
38ad35a47b Merge pull request #10 from maelsoucaze/comments
Comment the code (and add SVG LF support)
2015-10-19 19:08:04 +10:30
Toby Zerner
f78110370f Merge pull request #9 from maelsoucaze/valid-svg-1-1
Valid SVG 1.1 Markup
2015-10-19 19:03:13 +10:30
Toby Zerner
3c8c3258ec Merge pull request #8 from maelsoucaze/email-subjects
Use right email subjects
2015-10-19 19:02:42 +10:30
Maël Soucaze
f27d328c84 Comment the code 2015-10-19 10:30:16 +02:00
Maël Soucaze
1eaa2c5130 Valid SVG 1.1 Markup. 2015-10-19 10:20:05 +02:00
Maël Soucaze
d3c1097f86 Use right email subjects. 2015-10-19 10:11:40 +02:00
Toby Zerner
bf04dba33e Enforce unique slugs
closes flarum/core#393
2015-10-19 16:50:19 +10:30
Toby Zerner
0952651cf3 Fix migrate command and generated migration namespace 2015-10-19 16:48:16 +10:30
Toby Zerner
e357d2b535 Add third state to flags header icon
closes flarum/core#500
2015-10-19 16:20:00 +10:30
Toby Zerner
49ed9c7dde Fix error when replying to a post by a deleted user 2015-10-19 16:18:26 +10:30
Toby Zerner
1dd847bd36 Translate group names during serialization
closes #564
2015-10-19 15:44:28 +10:30
Toby Zerner
a74c4ebd71 Add error handling to edit group modal 2015-10-19 15:44:00 +10:30
Toby Zerner
ed4be20be2 Only decrease unread count if notification is unread
closes #590
2015-10-19 15:27:46 +10:30