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

Message Preview when opening the non coding file #102

Merged
merged 15 commits into from
Mar 19, 2022
Merged
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
2 changes: 1 addition & 1 deletion CodeEdit/Localization/af.lproj/Localizable.strings
Original file line number Diff line number Diff line change
@@ -41,4 +41,4 @@
"Show this window when CodeEdit launches"="Wys hierdie venster wanneer CodeEdit begin";

//Editor Screen
"CodeEditor cannot open this file type." = "CodeEditor kan nie hierdie lêertipe oopmaak nie.";
"CodeEdit cannot open this file because its file type is not supported." = "CodeEdit kan nie hierdie lêer oopmaak nie omdat die lêertipe nie ondersteun word nie.";
2 changes: 1 addition & 1 deletion CodeEdit/Localization/be.lproj/Localizable.strings
Original file line number Diff line number Diff line change
@@ -41,4 +41,4 @@
"Open an existing project or file on your Mac"="Адкрыйце існуючы праект або файл на вашым Mac";

//Editor Screen
"CodeEditor cannot open this file type." = "CodeEditor не можа адкрыць файл гэтага тыпу.";
"CodeEdit cannot open this file because its file type is not supported." = "CodeEdit не можа адчыніць гэты файл, таму што яго тып не падтрымліваецца ";
2 changes: 1 addition & 1 deletion CodeEdit/Localization/de.lproj/Localizable.strings
Original file line number Diff line number Diff line change
@@ -41,4 +41,4 @@
"Show this window when CodeEdit launches"="Zeigen wenn CodeEdit geöffnet wird";

//Editor Screen
"CodeEditor cannot open this file type." = "CodeEditor kann diesen Dateityp nicht öffnen.";
"CodeEdit cannot open this file because its file type is not supported." = "CodeEdit kann diese Datei nicht öffnen, da ihr Dateityp nicht unterstützt wird.";
2 changes: 1 addition & 1 deletion CodeEdit/Localization/en.lproj/Localizable.strings
Original file line number Diff line number Diff line change
@@ -41,4 +41,4 @@
"Show this window when CodeEdit launches"="Show this window when CodeEdit launches";

//Editor Screen
"CodeEditor cannot open this file type." = "CodeEditor cannot open this file type.";
"CodeEdit cannot open this file because its file type is not supported." = "CodeEdit cannot open this file because its file type is not supported.";
2 changes: 1 addition & 1 deletion CodeEdit/Localization/ru.lproj/Localizable.strings
Original file line number Diff line number Diff line change
@@ -41,4 +41,4 @@
"Open an existing project or file on your Mac"="Откройте существующий проект или файл на вашем Mac";

//Editor Screen
"CodeEditor cannot open this file type." = "CodeEditor не может открыть этот тип файла.";
"CodeEdit cannot open this file because its file type is not supported." = "CodeEdit не может открыть этот файл, потому что его тип не поддерживается";
2 changes: 1 addition & 1 deletion CodeEdit/SideBar/SideBarItem.swift
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ struct SideBarItem: View {
}
}
} else {
Text("CodeEditor cannot open this file type.")
Text("CodeEdit cannot open this file because its file type is not supported.")
}
}
.onAppear { workspace.openFile(item: item) }