Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Latin (0.01 sec)

  1. docs/en/docs/contributing.md

    #### Request a New Language
    
    Let's say that you want to request translations for a language that is not yet translated, not even some pages. For example, Latin.
    
    If there is no discussion for that language, you can start by requesting the new language. For that, you can follow these steps:
    
    * Create a new discussion following the template.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Jul 26 11:35:42 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  2. src/bufio/scan.go

    // We avoid dependency on the unicode package, but check validity of the implementation
    // in the tests.
    func isSpace(r rune) bool {
    	if r <= '\u00FF' {
    		// Obvious ASCII ones: \t through \r plus space. Plus two Latin-1 oddballs.
    		switch r {
    		case ' ', '\t', '\n', '\v', '\f', '\r':
    			return true
    		case '\u0085', '\u00A0':
    			return true
    		}
    		return false
    	}
    	// High-valued ones.
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed May 21 18:05:26 UTC 2025
    - 14.2K bytes
    - Viewed (0)
Back to top