Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrected Hebrew translations #3911

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Corrected few Hebrew translations
  • Loading branch information
MeiRct committed Nov 7, 2015
commit 9fa0b6ecb00acfac4a2b84b5e83d179c00e904be
6 changes: 3 additions & 3 deletions src/js/select2/i18n/he.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ define(function () {
// Hebrew
return {
errorLoading: function () {
return 'התוצאות לא נטענו בהלכה';
return 'שגיאה בטעינת התוצאות';
},
inputTooLong: function (args) {
var overChars = args.input.length - args.maximum;
Expand All @@ -23,10 +23,10 @@ define(function () {
return message;
},
loadingMore: function () {
return 'טען תוצאות נוספות…';
return 'טוען תוצאות נוספות…';
},
maximumSelected: function (args) {
var message = 'באפשרותך לבחור רק ' + args.maximum + ' פריטים';
var message = 'באפשרותך לבחור עד ' + args.maximum + ' פריטים';

if (args.maximum != 1) {
message += 's';
Expand Down