fix(release-notes-assistant): add the Localization category
The Localization category groups translations updates towards the end of the release notes.
This commit is contained in:
		
					parent
					
						
							
								1a2c611c42
							
						
					
				
			
			
				commit
				
					
						54e364b7bc
					
				
			
		
					 1 changed files with 10 additions and 0 deletions
				
			
		| 
						 | 
					@ -7,6 +7,7 @@ label_bug=bug
 | 
				
			||||||
label_feature=feature
 | 
					label_feature=feature
 | 
				
			||||||
label_ui=forgejo/ui
 | 
					label_ui=forgejo/ui
 | 
				
			||||||
label_breaking=breaking
 | 
					label_breaking=breaking
 | 
				
			||||||
 | 
					label_localization=internationalization
 | 
				
			||||||
 | 
					
 | 
				
			||||||
payload=$(mktemp)
 | 
					payload=$(mktemp)
 | 
				
			||||||
pr=$(mktemp)
 | 
					pr=$(mktemp)
 | 
				
			||||||
| 
						 | 
					@ -40,6 +41,9 @@ function test_main() {
 | 
				
			||||||
  test_payload_labels $label_worth $label_bug
 | 
					  test_payload_labels $label_worth $label_bug
 | 
				
			||||||
  test "$(categorize)" = 'CB Bug fixes'
 | 
					  test "$(categorize)" = 'CB Bug fixes'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  test_payload_labels $label_worth $label_localization
 | 
				
			||||||
 | 
					  test "$(categorize)" = 'DA Localization'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  test_payload_labels $label_worth
 | 
					  test_payload_labels $label_worth
 | 
				
			||||||
  test "$(categorize)" = 'ZE Other changes without a feature or bug label'
 | 
					  test "$(categorize)" = 'ZE Other changes without a feature or bug label'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -103,6 +107,7 @@ function categorize() {
 | 
				
			||||||
  is_ui=false
 | 
					  is_ui=false
 | 
				
			||||||
  is_bug=false
 | 
					  is_bug=false
 | 
				
			||||||
  is_feature=false
 | 
					  is_feature=false
 | 
				
			||||||
 | 
					  is_localization=false
 | 
				
			||||||
  is_breaking=false
 | 
					  is_breaking=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  #
 | 
					  #
 | 
				
			||||||
| 
						 | 
					@ -115,6 +120,9 @@ function categorize() {
 | 
				
			||||||
  *$label_feature*)
 | 
					  *$label_feature*)
 | 
				
			||||||
    is_feature=true
 | 
					    is_feature=true
 | 
				
			||||||
    ;;
 | 
					    ;;
 | 
				
			||||||
 | 
					  *$label_localization*)
 | 
				
			||||||
 | 
					    is_localization=true
 | 
				
			||||||
 | 
					    ;;
 | 
				
			||||||
  esac
 | 
					  esac
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  case "$labels" in
 | 
					  case "$labels" in
 | 
				
			||||||
| 
						 | 
					@ -179,6 +187,8 @@ function categorize() {
 | 
				
			||||||
    else
 | 
					    else
 | 
				
			||||||
      echo -n ZD User Interface changes without a feature or bug label
 | 
					      echo -n ZD User Interface changes without a feature or bug label
 | 
				
			||||||
    fi
 | 
					    fi
 | 
				
			||||||
 | 
					  elif $is_localization; then
 | 
				
			||||||
 | 
					    echo -n DA Localization
 | 
				
			||||||
  else
 | 
					  else
 | 
				
			||||||
    if $is_feature; then
 | 
					    if $is_feature; then
 | 
				
			||||||
      echo -n CA Features
 | 
					      echo -n CA Features
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue