Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F21841007
error_helpers.ex
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
error_helpers.ex
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Pleroma.Web.ErrorHelpers
do
@moduledoc
"""
Conveniences for translating and building error messages.
"""
@doc
"""
Translates an error message using gettext.
"""
def
translate_error
({
msg
,
opts
})
do
# Because error messages were defined within Ecto, we must
# call the Gettext module passing our Gettext backend. We
# also use the "errors" domain as translations are placed
# in the errors.po file.
# Ecto will pass the :count keyword if the error message is
# meant to be pluralized.
# On your own code and templates, depending on whether you
# need the message to be pluralized or not, this could be
# written simply as:
#
# dngettext "errors", "1 file", "%{count} files", count
# dgettext "errors", "is invalid"
#
if
count
=
opts
[
:count
]
do
Gettext
.
dngettext
(
Pleroma.Web.Gettext
,
"errors"
,
msg
,
msg
,
count
,
opts
)
else
Gettext
.
dgettext
(
Pleroma.Web.Gettext
,
"errors"
,
msg
,
opts
)
end
end
end
File Metadata
Details
Attached
Mime Type
text/x-ruby
Expires
Sat, Dec 27, 11:49 PM (1 d, 11 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
725395
Default Alt Text
error_helpers.ex (1 KB)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment