mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
DEV: Remove translate
API from plugin.
It appears to be completely unused at this point.
This commit is contained in:
parent
7f373e8b93
commit
b2e4ca968b
@ -126,7 +126,7 @@ class Emoji
|
||||
end
|
||||
|
||||
def self.load_translations
|
||||
db["translations"].merge(Plugin::CustomEmoji.translations)
|
||||
db["translations"]
|
||||
end
|
||||
|
||||
def self.base_directory
|
||||
|
@ -30,15 +30,6 @@ class Plugin::CustomEmoji
|
||||
def self.unregister(name, group = Emoji::DEFAULT_GROUP)
|
||||
emojis[group].delete(name)
|
||||
end
|
||||
|
||||
def self.translations
|
||||
@@translations ||= {}
|
||||
end
|
||||
|
||||
def self.translate(from, to)
|
||||
@@cache_key = Digest::SHA1.hexdigest(cache_key + from)[0..10]
|
||||
translations[from] = to
|
||||
end
|
||||
end
|
||||
|
||||
class Plugin::Instance
|
||||
@ -491,10 +482,6 @@ class Plugin::Instance
|
||||
Emoji.clear_cache
|
||||
end
|
||||
|
||||
def translate_emoji(from, to)
|
||||
Plugin::CustomEmoji.translate(from, to)
|
||||
end
|
||||
|
||||
def automatic_assets
|
||||
css = styles.join("\n")
|
||||
js = javascripts.join("\n")
|
||||
|
Loading…
Reference in New Issue
Block a user