Skip to content

Commit a426e62

Browse files
committed
feat(i18n): add template translation files for German, French, and Spanish
1 parent 2fd1ee6 commit a426e62

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+4884
-0
lines changed

localizations/de/awk.json

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
{
2+
"awk_title": "AWK Cheat Sheet",
3+
"awk_basic_syntax": "Basic Syntax",
4+
"awk_pattern_matching": "Pattern Matching",
5+
"awk_variables_calculations": "Variables & Calculations",
6+
"awk_conditional_statements": "Conditional Statements",
7+
"awk_loops_arrays": "Loops & Arrays",
8+
"awk_string_functions": "String Functions",
9+
"awk_begin_end_blocks": "BEGIN & END Blocks",
10+
"awk_built_in_variables": "Built-in Variables",
11+
"awk_advanced_examples": "Advanced Examples",
12+
"awk_print_field_description": "Print first field of each line",
13+
"awk_print_line_description": "Print entire line",
14+
"awk_print_multiple_fields_description": "Print first and third fields",
15+
"awk_print_field_count_description": "Print number of fields in each line",
16+
"awk_print_line_number_description": "Print line number",
17+
"awk_print_last_field_description": "Print last field of each line",
18+
"awk_pattern_match_description": "Print lines matching pattern",
19+
"awk_pattern_not_match_description": "Print lines not matching pattern",
20+
"awk_field_equals_description": "Print lines where first field equals value",
21+
"awk_field_not_equals_description": "Print lines where first field doesn't equal value",
22+
"awk_field_regex_description": "Print lines where first field matches regex",
23+
"awk_field_not_regex_description": "Print lines where first field doesn't match regex",
24+
"awk_field_greater_description": "Print lines where first field is greater than 100",
25+
"awk_field_greater_equal_description": "Print lines where first field is greater than or equal to 100",
26+
"awk_field_less_description": "Print lines where first field is less than 100",
27+
"awk_field_less_equal_description": "Print lines where first field is less than or equal to 100",
28+
"awk_sum_calculation_description": "Calculate sum of first field",
29+
"awk_count_lines_description": "Count total number of lines",
30+
"awk_average_calculation_description": "Calculate average of first field",
31+
"awk_max_value_description": "Find maximum value in first field",
32+
"awk_min_value_description": "Find minimum value in first field",
33+
"awk_multiply_description": "Multiply first field by 2",
34+
"awk_divide_description": "Divide first field by 2",
35+
"awk_add_fields_description": "Add first and second fields",
36+
"awk_subtract_fields_description": "Subtract second field from first field",
37+
"awk_if_statement_description": "Print lines where first field is greater than 10",
38+
"awk_if_else_description": "Print 'high' or 'low' based on first field value",
39+
"awk_ternary_operator_description": "Use ternary operator to print 'high' or 'low'",
40+
"awk_and_operator_description": "Print lines where first field > 10 AND second field < 5",
41+
"awk_or_operator_description": "Print lines where first field > 10 OR second field < 5",
42+
"awk_not_operator_description": "Print lines where first field is not equal to 0",
43+
"awk_for_loop_fields_description": "Print each field on separate line",
44+
"awk_for_loop_reverse_description": "Print fields in reverse order",
45+
"awk_array_count_description": "Count occurrences of each value in first field",
46+
"awk_array_sum_description": "Sum values in second field grouped by first field",
47+
"awk_array_unique_description": "Identify duplicate and unique values in first field",
48+
"awk_length_function_description": "Print length of first field",
49+
"awk_substr_function_description": "Print substring of first field (characters 1-3)",
50+
"awk_toupper_function_description": "Convert first field to uppercase",
51+
"awk_tolower_function_description": "Convert first field to lowercase",
52+
"awk_gsub_function_description": "Replace all occurrences of 'old' with 'new' in first field",
53+
"awk_sub_function_description": "Replace first occurrence of 'old' with 'new' in first field",
54+
"awk_index_function_description": "Print position of 'search' in first field",
55+
"awk_split_function_description": "Split first field by comma and print each part",
56+
"awk_begin_end_description": "Print message before and after processing",
57+
"awk_begin_field_separator_description": "Set comma as field separator",
58+
"awk_begin_output_separator_description": "Set tab as output field separator",
59+
"awk_begin_end_sum_description": "Initialize sum variable and calculate total",
60+
"awk_filename_variable_description": "Print current filename",
61+
"awk_fnr_variable_description": "Print line number within current file",
62+
"awk_fs_variable_description": "Print current field separator",
63+
"awk_ofs_variable_description": "Print current output field separator",
64+
"awk_rs_variable_description": "Print current record separator",
65+
"awk_ors_variable_description": "Print current output record separator",
66+
"awk_header_data_description": "Print header for first line, data for others",
67+
"awk_numbered_lines_description": "Print line numbers with content",
68+
"awk_formatted_output_description": "Format output with fixed-width columns",
69+
"awk_sprintf_description": "Format number with 2 decimal places",
70+
"awk_long_lines_description": "Print lines longer than 50 characters",
71+
"awk_numeric_first_field_description": "Print lines where first field is numeric",
72+
"awk_minimum_fields_description": "Print lines with at least 3 fields",
73+
"awk_conditional_formatting_description": "Print first field with conditional formatting"
74+
}

localizations/de/bash.json

Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
{
2+
"bash_title": "Bash Cheat Sheet",
3+
"bash_file_system": "File System",
4+
"bash_file_viewing": "File Viewing",
5+
"bash_search_filtering": "Search and Filtering",
6+
"bash_processes": "Processes",
7+
"bash_system_info": "System Information",
8+
"bash_network": "Network",
9+
"bash_archives_compression": "Archives and Compression",
10+
"bash_file_permissions": "File Permissions",
11+
"bash_environment_variables": "Environment Variables",
12+
"bash_io_redirection": "I/O Redirection",
13+
"bash_history_completion": "History and Completion",
14+
"bash_text_utilities": "Text Utilities",
15+
"bash_monitoring_logs": "Monitoring and Logs",
16+
"bash_system_administration": "System Administration",
17+
"bash_useful_aliases": "Useful Aliases",
18+
"bash_functions": "Bash Functions",
19+
"bash_ls_la_description": "List all files (including hidden) in long format",
20+
"bash_ls_lh_description": "List files with human-readable sizes",
21+
"bash_ls_t_description": "Sort files by modification time",
22+
"bash_ls_r_description": "Recursively list directory contents",
23+
"bash_cd_home_description": "Change to home directory",
24+
"bash_cd_previous_description": "Change to previous directory",
25+
"bash_pwd_description": "Print working directory",
26+
"bash_mkdir_p_description": "Create directory and parent directories",
27+
"bash_rm_rf_description": "Recursively remove directory without confirmation",
28+
"bash_cp_r_description": "Recursively copy directory",
29+
"bash_mv_description": "Rename or move file/directory",
30+
"bash_ln_s_description": "Create symbolic link",
31+
"bash_cat_description": "Display file contents",
32+
"bash_less_description": "View file with scrolling",
33+
"bash_head_description": "Display first N lines of file",
34+
"bash_tail_description": "Display last N lines of file",
35+
"bash_tail_f_description": "Follow file in real-time",
36+
"bash_more_description": "View file page by page",
37+
"bash_nano_description": "Edit file in nano",
38+
"bash_vim_description": "Edit file in vim",
39+
"bash_grep_description": "Search for pattern in file",
40+
"bash_grep_i_description": "Case-insensitive search",
41+
"bash_grep_r_description": "Recursive search in directories",
42+
"bash_grep_v_description": "Search for lines NOT containing pattern",
43+
"bash_find_name_description": "Find files by name",
44+
"bash_find_mtime_description": "Find files modified in last N days",
45+
"bash_find_size_description": "Find files larger than specified size",
46+
"bash_locate_description": "Quick file search using database",
47+
"bash_which_description": "Show path to executable",
48+
"bash_whereis_description": "Show location of program",
49+
"bash_ps_aux_description": "Show all processes in detailed format",
50+
"bash_ps_ef_description": "Show all processes in full format",
51+
"bash_top_description": "Interactive process viewer",
52+
"bash_htop_description": "Enhanced interactive process viewer",
53+
"bash_kill_9_description": "Force kill process",
54+
"bash_killall_description": "Kill all processes with specified name",
55+
"bash_pkill_description": "Kill processes by name",
56+
"bash_jobs_description": "Show background jobs",
57+
"bash_fg_description": "Bring job to foreground",
58+
"bash_bg_description": "Send job to background",
59+
"bash_nohup_description": "Run command ignoring hangup signals",
60+
"bash_df_h_description": "Show disk usage in human-readable format",
61+
"bash_du_sh_description": "Show directory size in human-readable format",
62+
"bash_free_h_description": "Show memory usage in human-readable format",
63+
"bash_uname_a_description": "Show system information",
64+
"bash_whoami_description": "Show current user",
65+
"bash_id_description": "Show user and group information",
66+
"bash_uptime_description": "Show system uptime",
67+
"bash_date_description": "Show current date and time",
68+
"bash_cal_description": "Show calendar",
69+
"bash_ping_description": "Test host connectivity",
70+
"bash_netstat_tuln_description": "Show active network connections",
71+
"bash_ss_tuln_description": "Modern replacement for netstat",
72+
"bash_ifconfig_description": "Show network interfaces",
73+
"bash_ip_addr_description": "Modern replacement for ifconfig",
74+
"bash_wget_description": "Download file from web server",
75+
"bash_curl_description": "Transfer data to/from server",
76+
"bash_ssh_description": "Connect to remote host",
77+
"bash_scp_description": "Securely copy file",
78+
"bash_tar_czf_description": "Create compressed archive",
79+
"bash_tar_xzf_description": "Extract compressed archive",
80+
"bash_zip_r_description": "Create ZIP archive recursively",
81+
"bash_unzip_description": "Extract ZIP archive",
82+
"bash_gzip_description": "Compress file",
83+
"bash_gunzip_description": "Decompress file",
84+
"bash_chmod_755_description": "Set file permissions (rwxr-xr-x)",
85+
"bash_chmod_x_description": "Add execute permission",
86+
"bash_chown_description": "Change file owner and group",
87+
"bash_chgrp_description": "Change file group",
88+
"bash_umask_description": "Set default permission mask",
89+
"bash_echo_path_description": "Show PATH variable",
90+
"bash_export_description": "Export variable to environment",
91+
"bash_env_description": "Show all environment variables",
92+
"bash_set_description": "Show all shell variables",
93+
"bash_unset_description": "Unset variable",
94+
"bash_redirect_output_description": "Redirect output to file",
95+
"bash_redirect_append_description": "Append output to file",
96+
"bash_redirect_input_description": "Redirect input from file",
97+
"bash_redirect_error_description": "Redirect errors to file",
98+
"bash_pipe_description": "Pipe output of one command to input of another",
99+
"bash_and_description": "Execute second command only if first succeeds",
100+
"bash_or_description": "Execute second command only if first fails",
101+
"bash_history_description": "Show command history",
102+
"bash_history_n_description": "Execute command from history by number",
103+
"bash_history_last_description": "Repeat last command",
104+
"bash_history_string_description": "Execute last command starting with string",
105+
"bash_ctrl_r_description": "Interactive search in command history",
106+
"bash_tab_description": "Auto-complete commands and files",
107+
"bash_sort_description": "Sort lines of file",
108+
"bash_uniq_description": "Remove duplicate lines",
109+
"bash_wc_l_description": "Count number of lines",
110+
"bash_cut_description": "Cut fields from lines",
111+
"bash_awk_description": "Process text line by line",
112+
"bash_sed_description": "Stream editor for text",
113+
"bash_tr_description": "Replace or delete characters",
114+
"bash_xargs_description": "Build and execute commands from stdin",
115+
"bash_dmesg_description": "Show kernel messages",
116+
"bash_journalctl_f_description": "Follow system logs in real-time",
117+
"bash_tail_syslog_description": "Follow system log in real-time",
118+
"bash_watch_description": "Execute command periodically",
119+
"bash_strace_description": "Trace system calls of program",
120+
"bash_lsof_description": "Show open files",
121+
"bash_sudo_description": "Execute command as superuser",
122+
"bash_su_description": "Switch to another user",
123+
"bash_passwd_description": "Change password",
124+
"bash_useradd_description": "Add new user",
125+
"bash_usermod_description": "Add user to group",
126+
"bash_systemctl_start_description": "Start system service",
127+
"bash_systemctl_status_description": "Show system service status",
128+
"bash_alias_ll_description": "Create alias for detailed file listing",
129+
"bash_alias_la_description": "Create alias for showing all files",
130+
"bash_alias_cd_description": "Create alias for going up one level",
131+
"bash_alias_grep_description": "Create alias for colored grep",
132+
"bash_alias_df_description": "Create alias for human-readable df",
133+
"bash_alias_du_description": "Create alias for human-readable du",
134+
"bash_function_description": "Define bash function",
135+
"bash_source_description": "Execute file in current shell",
136+
"bash_dot_source_description": "Short form of source",
137+
"bash_debug_description": "Run script in debug mode",
138+
"bash_set_e_description": "Exit script on error",
139+
"bash_set_u_description": "Exit script on undefined variable",
140+
"bash_set_pipefail_description": "Return status of last failed command in pipe"
141+
}

localizations/de/cron.json

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
"cron_title": "Cron Cheat Sheet",
3+
"cron_basic_commands": "Basic Commands",
4+
"cron_format": "Cron Format",
5+
"cron_special_symbols": "Special Symbols",
6+
"cron_schedule_examples": "Schedule Examples",
7+
"cron_environment_variables": "Environment Variables",
8+
"cron_logging": "Logging",
9+
"cron_system_files": "System Cron Files",
10+
"cron_debugging": "Debugging and Monitoring",
11+
"cron_security": "Security",
12+
"cron_useful_examples": "Useful Examples",
13+
"cron_crontab_l_description": "List current user's cron jobs",
14+
"cron_crontab_e_description": "Edit current user's cron jobs",
15+
"cron_crontab_r_description": "Remove all cron jobs for current user",
16+
"cron_crontab_u_description": "List cron jobs for specific user",
17+
"cron_crontab_file_description": "Install cron jobs from file",
18+
"cron_format_description": "Cron format: minute hour day month weekday command",
19+
"cron_example_daily_description": "Run script daily at 2:00 AM",
20+
"cron_example_15min_description": "Run script every 15 minutes",
21+
"cron_example_weekly_description": "Run backup script weekly on Sunday at midnight",
22+
"cron_example_monthly_description": "Run script monthly on 1st day at midnight",
23+
"cron_yearly_description": "Run command once a year (0 0 1 1 *)",
24+
"cron_annually_description": "Same as @yearly - run once a year",
25+
"cron_monthly_description": "Run command once a month (0 0 1 * *)",
26+
"cron_weekly_description": "Run command once a week (0 0 * * 0)",
27+
"cron_daily_description": "Run command once a day (0 0 * * *)",
28+
"cron_hourly_description": "Run command once an hour (0 * * * *)",
29+
"cron_reboot_description": "Run command at system reboot",
30+
"cron_example_noon_description": "Print message daily at 12:00 PM",
31+
"cron_example_backup_description": "Run backup script daily at 2:30 AM",
32+
"cron_example_6hour_description": "Run check script every 6 hours",
33+
"cron_example_newyear_description": "Run script on New Year's Day at midnight",
34+
"cron_example_nye_description": "Run script on New Year's Eve at 11:59 PM",
35+
"cron_shell_description": "Set shell for cron jobs",
36+
"cron_path_description": "Set PATH for cron jobs",
37+
"cron_mailto_description": "Send cron output to email address",
38+
"cron_home_description": "Set HOME directory for cron jobs",
39+
"cron_logging_description": "Run script and log output to file",
40+
"cron_no_output_description": "Run script and suppress all output",
41+
"cron_logger_description": "Run script and send output to system log",
42+
"cron_system_crontab_description": "System-wide cron configuration file",
43+
"cron_system_d_description": "Directory for system cron job files",
44+
"cron_system_daily_description": "Directory for daily system cron jobs",
45+
"cron_system_hourly_description": "Directory for hourly system cron jobs",
46+
"cron_system_monthly_description": "Directory for monthly system cron jobs",
47+
"cron_system_weekly_description": "Directory for weekly system cron jobs",
48+
"cron_status_description": "Check cron service status",
49+
"cron_journal_description": "View cron service logs",
50+
"cron_syslog_description": "Search for cron entries in system log",
51+
"cron_tail_log_description": "Monitor cron log file in real-time",
52+
"cron_list_no_comments_description": "List cron jobs without comments",
53+
"cron_secure_file_description": "Set secure permissions for cron file",
54+
"cron_root_crontab_description": "List root user's cron jobs",
55+
"cron_cleanup_tmp_description": "Clean up files older than 7 days in /tmp",
56+
"cron_check_disk_description": "Check disk space every 5 minutes",
57+
"cron_backup_db_description": "Backup database daily at 1:00 AM",
58+
"cron_update_system_description": "Update system weekly on Sunday",
59+
"cron_workday_report_description": "Send report on weekdays at 9:30 AM"
60+
}

0 commit comments

Comments
 (0)