| Language code | sl | 
        
          
            
            | Aliased language codes | sl_sl, slv | 
          
        
        
        | Text direction | Left to right | 
        
          
            | Plural: Default plural
              2 translations | 
          
            | Number of plurals | 4 | 
          
            | Plural type | One/two/few/other | 
          
          | Plurals | One | 1, 101, 201, 301, 401, 501, 601, 701, 801, 901 | 
            
              
              Two | 2, 102, 202, 302, 402, 502, 602, 702, 802, 902 | 
              
              | Few | 3, 4, 103, 104, 203, 204, 303, 304, 403, 404 | 
            
              
                
              
              | Other | 0, 5, 6, 7, 8, 9, 10, 11, 12, 13 | 
            
          
          
            | Plural formula | n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3 | 
        
          
            | Plural: gettext plural formula
              0 translations | 
          
            | Number of plurals | 4 | 
          
            | Plural type | Other/one/two/few | 
          
          | Plurals | Other | 0, 5, 6, 7, 8, 9, 10, 11, 12, 13 | 
            
              
              One | 1, 101, 201, 301, 401, 501, 601, 701, 801, 901 | 
              
              | Two | 2, 102, 202, 302, 402, 502, 602, 702, 802, 902 | 
            
              
                
              
              | Few | 3, 4, 103, 104, 203, 204, 303, 304, 403, 404 | 
            
          
          
            | Plural formula | (n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0) |