Return the Transifex resource slug for the given name.
(name)
| 176 | |
| 177 | |
| 178 | def _tx_resource_slug_for_name(name): |
| 179 | """Return the Transifex resource slug for the given name.""" |
| 180 | if name != "core": |
| 181 | name = f"contrib-{name}" |
| 182 | return name |
| 183 | |
| 184 | |
| 185 | def _tx_resource_for_name(name): |
no outgoing calls
no test coverage detected