Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Transmating adds i18n information to Mongoid documents. Simply include
Transmating::I18n
to your model classes which include
Mongoid::Document
.
class Person
include Mongoid::Document
include Transmating::I18n
field :name
field :organization
end
Transmating::I18n
adds a simple embeds_many
relationship to your
models, which is placeholder for translated attributes. You can
translate your models with calling Transmating::I18n#translate
method
as presented below.
# Translate your model objects
p = Person.find_by_name("Yuna Kim")
p.translate("ko", :name => "김연아", :organization => "고려대")
After translation, you can utilize it by calling
Transmating::I18n#translated
method.
<!-- Present translated attributes in your views -->
안녕하세요! <%= @person.translated("ko").name %>님!
That's it. Feel free to fork and add your own features!
FAQs
Unknown package
We found that transmating demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.