translation-value-sets/kn/todo_status.php

10 lines
321 B
PHP
Raw Permalink Normal View History

2025-02-11 01:02:14 +00:00
<?PHP
declare(strict_types = 1);
$todo_status = array (
2025-02-20 15:06:44 +00:00
'suggested' => 'ಸೂಚಿಸಲಾಗಿದೆ',
'planned' => 'ಯೋಜಿತ',
'in_progress' => 'ಪ್ರಗತಿಯಲ್ಲಿದೆ',
'done' => 'ನೆರವೇರಿತು',
'cancelled' => 'ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ',
2025-02-11 01:02:14 +00:00
);