#18495 closed defect (bug) (duplicate)
human_time_diff() localization
Reported by: | pavelevap | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 3.2.1 |
Component: | I18N | Keywords: | |
Focuses: | Cc: |
Description
Using human_time_diff() function for different purposes, there is big localization problem for example for Czech.
We can use this function in two ways:
1) "Post is 5 days old." - "5 days" (EN) = "5 dní" (CZ)
2) "Post was published 5 days ago." - "5 days" (EN) = "5 dny" (CZ)
English language has only one phrase, but Czech (and others) are much more complicated. For example, WordPress uses this function for list of posts in administration (5 days ago). But new bbPress plugin uses this function for Freshness (that means 5 days). And in this case it is nonsense in Czech language...
I could not find any solution...
Attachments (1)
Change History (10)
#2
in reply to:
↑ description
@
13 years ago
#3
follow-up:
↓ 4
@
13 years ago
SergeyBiryukov: Yes, it would be partial solution, but it is not possible to change "5 days" to "5 days ago" in bbPress and so translation is nonsense even if I change "Freshness". I will try to use ngettext hook to change it (I am not sure if it can be done conditionally only for bbPress plugin?).
But generally, it would be helpfull to have for example optional parameter (or something else) to use human_time_diff() in different ways. It is not always possible to change meaning in which it is used in different plugins (or use ngettext filter). There are two common meanings (old and ago) which should be probably handled differently...
#4
in reply to:
↑ 3
;
follow-up:
↓ 8
@
13 years ago
- Keywords has-patch added
Replying to pavelevap:
it is not possible to change "5 days" to "5 days ago" in bbPress
In the admin, it says "5 days ago" in the Fresness column, so I didn't notice at first that it says "5 days" on the frontend.
I will try to use ngettext hook to change it
There's bbp_get_topic_freshness_link
filter, which can be more appropriate.
But generally, it would be helpfull to have for example optional parameter (or something else) to use human_time_diff() in different ways.
18495.patch adds a filter for human_time_diff()
.
#5
@
13 years ago
Thank you for patch!
I tried bbPress filters, but using filter bbp_get_topic_freshness_link is only for topics and not for forums and there are also other filters, for example bbp_get_forum_freshness_link (for forum), etc. Digging deeper I found also function (and filter) bbp_get_time_since, but this filter does not work for me, maybe because there is hardcoded function in apply_filters()?
apply_filters( 'bbp_get_time_since', human_time_diff( $time, current_time( 'timestamp' ) ), $time );
But this discussion should be probably on bbPress Trac...
#6
@
13 years ago
- Resolution set to duplicate
- Status changed from new to closed
human_time_diff()
is being re-written in #9272 so I'm going to close this ticket in favor of that one so we can keep the discussion all in one place.
Replying to pavelevap:
If this case is the only problem so far, I'd probably translate "Freshness" as an equivalent of "Updated" , so that "5 days ago" would make sense in that column too. Isn't it an acceptable workaround?