Skip to content

Commit

Permalink
Merge branch 'feature/new-search' into milestone/12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
felix-schwarz committed Dec 12, 2022
2 parents 0a80962 + bfbecba commit cfa9100
Show file tree
Hide file tree
Showing 45 changed files with 4,468 additions and 879 deletions.
2 changes: 1 addition & 1 deletion .swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ disabled_rules:
- function_parameter_count
- comment_spacing
- unused_closure_parameter
# - unneeded_notification_center_removal
- nesting
custom_rules:
empty_line_after_guard_statement:
included: ".*\\.swift"
Expand Down
150 changes: 140 additions & 10 deletions ownCloud.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

13 changes: 11 additions & 2 deletions ownCloud.xcworkspace/xcshareddata/swiftpm/Package.resolved
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
{
"pins" : [
{
"identity" : "down",
"kind" : "remoteSourceControl",
"location" : "https://github.com/johnxnguyen/Down",
"state" : {
"branch" : "master",
"revision" : "e754ab1c80920dd51a8e08290c912ac1c2ac8b58"
}
},
{
"identity" : "openssl",
"kind" : "remoteSourceControl",
Expand All @@ -14,8 +23,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/microsoft/plcrashreporter.git",
"state" : {
"revision" : "4637a7854de2cc5c354d46fb931d74bdbc2c043e",
"version" : "1.7.0"
"revision" : "81cdec2b3827feb03286cb297f4c501a8eb98df1",
"version" : "1.10.2"
}
},
{
Expand Down
8 changes: 8 additions & 0 deletions ownCloud/Resources/en.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,13 @@
"size" = "size";
"date" = "date";
"Search folder" = "Search folder";
"Search tree" = "Search tree";
"Search from {{folder.name}}" = "Search from {{folder.name}}";
"Search space" = "Search space";
"Search {{space.name}}" = "Search {{space.name}}";
"Search account" = "Search account";
"Save search" = "Save search";

"Pending" = "Pending";
"Show parent paths" = "Show parent paths";
"Reveal in folder" = "Reveal in folder";
Expand Down Expand Up @@ -142,6 +148,7 @@

/* Client Messages */
"Empty folder" = "Empty folder";
"No contents" = "No contents";
"This folder contains no files or folders." = "This folder contains no files or folders.";
"This folder is empty. Fill it with content:" = "This folder is empty. Fill it with content:";

Expand All @@ -160,6 +167,7 @@
"Upload files" = "Upload files";

"No matches" = "No matches";
"The search term you entered did not match any item in the selected scope." = "The search term you entered did not match any item in the selected scope.";
"There are no results for this search term" = "There are no results for this search term";
"Status" = "Status";

Expand Down
68 changes: 68 additions & 0 deletions ownCloudAppFramework/Resources/en.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@
"keyword_folder" = "folder";
"keyword_image" = "image";
"keyword_video" = "video";
"keyword_audio" = "audio";
"keyword_document" = "document";
"keyword_spreadsheet" = "spreadsheet";
"keyword_presentation" = "presentation";
"keyword_pdf" = "pdf";
"keyword_today" = "today";
"keyword_week" = "week";
"keyword_month" = "month";
Expand All @@ -64,3 +69,66 @@
"keyword_w" = "w"; /* short-form for "week" */
"keyword_m" = "m"; /* short-form for "month" */
"keyword_y" = "y"; /* short-form for "year" */

/* Search token labels */
"No folder" = "No folder";
"Folder" = "Folder";

"No file" = "No file";
"File" = "File";

"No image" = "No image";
"Image" = "Image";

"No video" = "No video";
"Video" = "Video";

"No audio" = "No audio";
"Audio" = "Audio";

"Document" = "Document";
"No Document" = "No Document";

"Spreadsheet" = "Spreadsheet";
"No spreadsheet" = "No spreadsheet";

"Presentation" = "Presentation";
"No presentation" = "No presentation";

"PDF" = "PDF";
"No PDF" = "No PDF";

"Before" = "Before";
"After" = "After";

"Not on" = "Not on";
"On" = "On";
"Not" = "Not";

"Before today" = "Before today";
"Before yesterday" = "Before yesterday";
">%d days ago" = ">%d days ago";
"Today" = "Today";
"Since yesterday" = "Since yesterday";
"Last %d days" = "Last %d days";

"Before this week" = "Before this week";
"Before last week" = "Before last week";
">%d weeks ago" = ">%d weeks ago";
"This week" = "This week";
"Since last week" = "Since last week";
"Last %d weeks" = "Last %d weeks";

"Before this month" = "Before this month";
"Before last month" = "Before last month";
"> %d months ago" = "> %d months ago";
"This month" = "This month";
"Since last month" = "Since last month";
"Last %d months" = "Last %d months";

"Before this year" = "Before this year";
"Before last year" = "Before last year";
"> %d years ago" = "> %d years ago";
"This year" = "This year";
"Since last year" = "Since last year";
"Last %d years" = "Last %d years";

This file was deleted.

Loading

0 comments on commit cfa9100

Please sign in to comment.