Skip to content

Commit

Permalink
New Vietnamese Crowdin translations by Github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
joomla-translation-bot committed Feb 1, 2024
1 parent e78d6a1 commit 61fcd56
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ public static function getPluralSuffixes($count)
}

if ($count == 1) {
return ['ONE', '1'];
return ['MỘT', '1'];
}

return ['OTHER', 'MORE'];
return ['KHÁC', 'HƠN'];
}

/**
Expand All @@ -59,7 +59,7 @@ public static function getIgnoredSearchWords()
/**
* Returns the lower length limit of search words
*
* @return integer The lower length limit of search words.
* @trả về số nguyên Giới hạn độ dài thấp hơn của các từ tìm kiếm.
*
* @since 1.6
*/
Expand All @@ -71,7 +71,7 @@ public static function getLowerLimitSearchWord()
/**
* Returns the upper length limit of search words
*
* @return integer The upper length limit of search words.
* @trả về số nguyên Giới hạn độ dài trên của các từ tìm kiếm.
*
* @since 1.6
*/
Expand All @@ -83,7 +83,7 @@ public static function getUpperLimitSearchWord()
/**
* Returns the number of chars to display when searching
*
* @return integer The number of chars to display when searching.
* @trả về số nguyên Số lượng ký tự hiển thị khi tìm kiếm.
*
* @since 1.6
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ abstract class Vi_VNLocalise
*
* @param integer $count The number of items.
*
* @return array An array of potential suffixes.
* @mảng trả về Một mảng các hậu tố tiềm năng.
*
* @since 1.6
*/
Expand All @@ -38,9 +38,9 @@ public static function getPluralSuffixes($count)
return ['0'];

case 1:
return ['ONE', '1'];
return ['MỘT', '1'];
}

return ['OTHER', 'MORE'];
return ['KHÁC', 'HƠN'];
}
}

0 comments on commit 61fcd56

Please sign in to comment.